2024-09-06T14:44:17.593 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-06T14:44:17.610 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-06T14:44:17.692 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408 branch: wip-athakkar-testing-2024-09-04-1837 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: adking@redhat.com first_in_suite: false job_id: '7892408' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-athakkar-testing-2024-09-04-1837 ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 workunit: branch: wip-athakkar-testing-2024-09-04-1837 sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 owner: scheduled_adking@teuthology priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 9103 sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 sleep_before_teardown: 0 subset: 1/20 suite: orch:cephadm suite_branch: wip-athakkar-testing-2024-09-04-1837 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 targets: smithi003.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOAneZ/xesivbXNgmzNmJJBiKeaasXrp7V61QYY0t8E8TzcpBv1o0dZPRWJuC650WUJHetl8Jvw0Q8SsKbt/Iy8= smithi120.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIr9wITfg7XHSNqyiFUN8MLez7Ub3JczYqIy6C/o192FwtPt1EstIbCWn1hjOy97B3WYJQXkW3NW6HKmxZkleAM= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-06_13:43:09 tube: smithi user: adking verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-06T14:44:17.692 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa; will attempt to use it 2024-09-06T14:44:17.693 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks 2024-09-06T14:44:17.693 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-06T14:44:17.695 INFO:teuthology.task.internal:Checking packages... 2024-09-06T14:44:17.717 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '8b38c33cecf4b0b7a9b3116eb9089e21e444ac73' 2024-09-06T14:44:17.717 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-06T14:44:17.718 INFO:teuthology.packaging:ref: None 2024-09-06T14:44:17.718 INFO:teuthology.packaging:tag: None 2024-09-06T14:44:17.718 INFO:teuthology.packaging:branch: wip-athakkar-testing-2024-09-04-1837 2024-09-06T14:44:17.718 INFO:teuthology.packaging:sha1: 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:44:17.718 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-athakkar-testing-2024-09-04-1837 2024-09-06T14:44:17.868 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4704-g8b38c33c-1jammy 2024-09-06T14:44:17.871 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-06T14:44:17.877 INFO:teuthology.task.internal:no buildpackages task found 2024-09-06T14:44:17.877 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-06T14:44:17.923 INFO:teuthology.task.internal:Saving configuration 2024-09-06T14:44:17.947 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-06T14:44:17.953 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-06T14:44:17.978 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi003.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-06 14:38:43.055905', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBdLCBhHfwzDMamamrhvtrkNi4IHgLDKCa4vhiNzRaXO'} 2024-09-06T14:44:18.003 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi120.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-06 14:38:43.057832', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ0AzDYvh2885yLEUhG81JqMgCHozBdPsrnkueg6Utfm'} 2024-09-06T14:44:18.003 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-06T14:44:18.010 INFO:teuthology.task.internal:roles: ubuntu@smithi003.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-06T14:44:18.010 INFO:teuthology.task.internal:roles: ubuntu@smithi120.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-06T14:44:18.010 INFO:teuthology.run_tasks:Running task console_log... 2024-09-06T14:44:18.100 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f2613993ac0>, signals=[15]) 2024-09-06T14:44:18.100 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-06T14:44:18.106 INFO:teuthology.task.internal:Opening connections... 2024-09-06T14:44:18.106 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi003.front.sepia.ceph.com 2024-09-06T14:44:18.108 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:44:18.202 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi120.front.sepia.ceph.com 2024-09-06T14:44:18.203 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:44:18.288 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-06T14:44:18.295 DEBUG:teuthology.orchestra.run.smithi003:> uname -m 2024-09-06T14:44:18.301 INFO:teuthology.orchestra.run.smithi003.stdout:x86_64 2024-09-06T14:44:18.301 DEBUG:teuthology.orchestra.run.smithi003:> cat /etc/os-release 2024-09-06T14:44:18.351 INFO:teuthology.orchestra.run.smithi003.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-06T14:44:18.351 INFO:teuthology.orchestra.run.smithi003.stdout:NAME="Ubuntu" 2024-09-06T14:44:18.351 INFO:teuthology.orchestra.run.smithi003.stdout:VERSION_ID="22.04" 2024-09-06T14:44:18.351 INFO:teuthology.orchestra.run.smithi003.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-06T14:44:18.352 INFO:teuthology.orchestra.run.smithi003.stdout:VERSION_CODENAME=jammy 2024-09-06T14:44:18.352 INFO:teuthology.orchestra.run.smithi003.stdout:ID=ubuntu 2024-09-06T14:44:18.352 INFO:teuthology.orchestra.run.smithi003.stdout:ID_LIKE=debian 2024-09-06T14:44:18.352 INFO:teuthology.orchestra.run.smithi003.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-06T14:44:18.352 INFO:teuthology.orchestra.run.smithi003.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-06T14:44:18.352 INFO:teuthology.orchestra.run.smithi003.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-06T14:44:18.352 INFO:teuthology.orchestra.run.smithi003.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-06T14:44:18.352 INFO:teuthology.orchestra.run.smithi003.stdout:UBUNTU_CODENAME=jammy 2024-09-06T14:44:18.353 INFO:teuthology.lock.ops:Updating smithi003.front.sepia.ceph.com on lock server 2024-09-06T14:44:18.375 DEBUG:teuthology.orchestra.run.smithi120:> uname -m 2024-09-06T14:44:18.380 INFO:teuthology.orchestra.run.smithi120.stdout:x86_64 2024-09-06T14:44:18.380 DEBUG:teuthology.orchestra.run.smithi120:> cat /etc/os-release 2024-09-06T14:44:18.426 INFO:teuthology.orchestra.run.smithi120.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-06T14:44:18.426 INFO:teuthology.orchestra.run.smithi120.stdout:NAME="Ubuntu" 2024-09-06T14:44:18.426 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION_ID="22.04" 2024-09-06T14:44:18.426 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-06T14:44:18.427 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION_CODENAME=jammy 2024-09-06T14:44:18.427 INFO:teuthology.orchestra.run.smithi120.stdout:ID=ubuntu 2024-09-06T14:44:18.427 INFO:teuthology.orchestra.run.smithi120.stdout:ID_LIKE=debian 2024-09-06T14:44:18.427 INFO:teuthology.orchestra.run.smithi120.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-06T14:44:18.427 INFO:teuthology.orchestra.run.smithi120.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-06T14:44:18.427 INFO:teuthology.orchestra.run.smithi120.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-06T14:44:18.427 INFO:teuthology.orchestra.run.smithi120.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-06T14:44:18.427 INFO:teuthology.orchestra.run.smithi120.stdout:UBUNTU_CODENAME=jammy 2024-09-06T14:44:18.427 INFO:teuthology.lock.ops:Updating smithi120.front.sepia.ceph.com on lock server 2024-09-06T14:44:18.450 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-06T14:44:18.458 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-06T14:44:18.483 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-06T14:44:18.483 DEBUG:teuthology.orchestra.run.smithi003:> test '!' -e /home/ubuntu/cephtest 2024-09-06T14:44:18.486 DEBUG:teuthology.orchestra.run.smithi120:> test '!' -e /home/ubuntu/cephtest 2024-09-06T14:44:18.491 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-06T14:44:18.505 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-06T14:44:18.506 DEBUG:teuthology.orchestra.run.smithi003:> test -z $(ls -A /var/lib/ceph) 2024-09-06T14:44:18.533 DEBUG:teuthology.orchestra.run.smithi120:> test -z $(ls -A /var/lib/ceph) 2024-09-06T14:44:18.544 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-06T14:44:18.690 INFO:teuthology.run_tasks:Running task kernel... 2024-09-06T14:44:18.706 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-06T14:44:18.706 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-06T14:44:18.706 DEBUG:teuthology.orchestra.run.smithi003:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-06T14:44:18.707 DEBUG:teuthology.orchestra.run.smithi120:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-06T14:44:18.711 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:44:18.711 DEBUG:teuthology.orchestra.run.smithi003:> uname -r 2024-09-06T14:44:18.712 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T14:44:18.712 DEBUG:teuthology.orchestra.run.smithi120:> uname -r 2024-09-06T14:44:18.759 INFO:teuthology.orchestra.run.smithi120.stdout:5.15.0-56-generic 2024-09-06T14:44:18.759 INFO:teuthology.task.kernel:Running kernel on smithi120: 5.15.0-56-generic 2024-09-06T14:44:18.760 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get clean 2024-09-06T14:44:18.761 INFO:teuthology.orchestra.run.smithi003.stdout:5.15.0-56-generic 2024-09-06T14:44:18.761 INFO:teuthology.task.kernel:Running kernel on smithi003: 5.15.0-56-generic 2024-09-06T14:44:18.761 DEBUG:teuthology.orchestra.run.smithi003:> sudo apt-get clean 2024-09-06T14:44:18.893 DEBUG:teuthology.orchestra.run.smithi003:> sudo apt-get update 2024-09-06T14:44:18.894 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get update 2024-09-06T14:44:19.161 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-06T14:44:19.164 INFO:teuthology.orchestra.run.smithi003.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-06T14:44:19.171 INFO:teuthology.orchestra.run.smithi120.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-06T14:44:19.171 INFO:teuthology.orchestra.run.smithi003.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-06T14:44:19.221 INFO:teuthology.orchestra.run.smithi120.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-06T14:44:19.224 INFO:teuthology.orchestra.run.smithi003.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-06T14:44:19.577 INFO:teuthology.orchestra.run.smithi120.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-06T14:44:19.580 INFO:teuthology.orchestra.run.smithi003.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-06T14:44:19.603 INFO:teuthology.orchestra.run.smithi120.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,771 kB] 2024-09-06T14:44:19.611 INFO:teuthology.orchestra.run.smithi003.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [533 kB] 2024-09-06T14:44:19.716 INFO:teuthology.orchestra.run.smithi120.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,988 kB] 2024-09-06T14:44:19.719 INFO:teuthology.orchestra.run.smithi003.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [690 kB] 2024-09-06T14:44:19.913 INFO:teuthology.orchestra.run.smithi003.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,771 kB] 2024-09-06T14:44:19.914 INFO:teuthology.orchestra.run.smithi003.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,988 kB] 2024-09-06T14:44:20.032 INFO:teuthology.orchestra.run.smithi120.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [690 kB] 2024-09-06T14:44:20.036 INFO:teuthology.orchestra.run.smithi120.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [533 kB] 2024-09-06T14:44:20.053 INFO:teuthology.orchestra.run.smithi120.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [291 kB] 2024-09-06T14:44:20.061 INFO:teuthology.orchestra.run.smithi120.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-06T14:44:20.062 INFO:teuthology.orchestra.run.smithi120.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-06T14:44:20.063 INFO:teuthology.orchestra.run.smithi120.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,327 kB] 2024-09-06T14:44:20.067 INFO:teuthology.orchestra.run.smithi120.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [349 kB] 2024-09-06T14:44:20.071 INFO:teuthology.orchestra.run.smithi003.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [349 kB] 2024-09-06T14:44:20.082 INFO:teuthology.orchestra.run.smithi120.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-06T14:44:20.082 INFO:teuthology.orchestra.run.smithi120.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,386 kB] 2024-09-06T14:44:20.084 INFO:teuthology.orchestra.run.smithi003.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [291 kB] 2024-09-06T14:44:20.085 INFO:teuthology.orchestra.run.smithi003.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-06T14:44:20.086 INFO:teuthology.orchestra.run.smithi003.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-06T14:44:20.087 INFO:teuthology.orchestra.run.smithi003.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,386 kB] 2024-09-06T14:44:20.097 INFO:teuthology.orchestra.run.smithi003.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-06T14:44:20.098 INFO:teuthology.orchestra.run.smithi003.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-06T14:44:20.099 INFO:teuthology.orchestra.run.smithi003.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,327 kB] 2024-09-06T14:44:20.149 INFO:teuthology.orchestra.run.smithi120.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-06T14:44:20.151 INFO:teuthology.orchestra.run.smithi120.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [410 kB] 2024-09-06T14:44:20.156 INFO:teuthology.orchestra.run.smithi003.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [410 kB] 2024-09-06T14:44:20.168 INFO:teuthology.orchestra.run.smithi003.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-06T14:44:20.191 INFO:teuthology.orchestra.run.smithi120.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [400 kB] 2024-09-06T14:44:20.191 INFO:teuthology.orchestra.run.smithi120.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-06T14:44:20.191 INFO:teuthology.orchestra.run.smithi120.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,123 kB] 2024-09-06T14:44:20.199 INFO:teuthology.orchestra.run.smithi120.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-06T14:44:20.199 INFO:teuthology.orchestra.run.smithi120.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-06T14:44:20.210 INFO:teuthology.orchestra.run.smithi120.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [901 kB] 2024-09-06T14:44:20.211 INFO:teuthology.orchestra.run.smithi120.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [731 kB] 2024-09-06T14:44:20.211 INFO:teuthology.orchestra.run.smithi003.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,123 kB] 2024-09-06T14:44:20.211 INFO:teuthology.orchestra.run.smithi003.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [400 kB] 2024-09-06T14:44:20.219 INFO:teuthology.orchestra.run.smithi003.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-06T14:44:20.219 INFO:teuthology.orchestra.run.smithi003.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [901 kB] 2024-09-06T14:44:20.223 INFO:teuthology.orchestra.run.smithi120.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-06T14:44:20.225 INFO:teuthology.orchestra.run.smithi120.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-06T14:44:20.227 INFO:teuthology.orchestra.run.smithi120.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-06T14:44:20.228 INFO:teuthology.orchestra.run.smithi120.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-06T14:44:20.228 INFO:teuthology.orchestra.run.smithi120.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-06T14:44:20.229 INFO:teuthology.orchestra.run.smithi120.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-06T14:44:20.229 INFO:teuthology.orchestra.run.smithi120.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-06T14:44:20.229 INFO:teuthology.orchestra.run.smithi120.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-06T14:44:20.229 INFO:teuthology.orchestra.run.smithi120.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-06T14:44:20.232 INFO:teuthology.orchestra.run.smithi003.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [731 kB] 2024-09-06T14:44:20.236 INFO:teuthology.orchestra.run.smithi003.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [627 kB] 2024-09-06T14:44:20.244 INFO:teuthology.orchestra.run.smithi003.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-06T14:44:20.245 INFO:teuthology.orchestra.run.smithi003.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-06T14:44:20.248 INFO:teuthology.orchestra.run.smithi003.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-06T14:44:20.249 INFO:teuthology.orchestra.run.smithi003.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-06T14:44:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-06T14:44:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-06T14:44:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-06T14:44:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-06T14:44:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-06T14:44:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-06T14:44:20.279 INFO:teuthology.orchestra.run.smithi120.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-06T14:44:20.279 INFO:teuthology.orchestra.run.smithi120.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-06T14:44:20.279 INFO:teuthology.orchestra.run.smithi120.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-06T14:44:20.281 INFO:teuthology.orchestra.run.smithi120.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-06T14:44:20.299 INFO:teuthology.orchestra.run.smithi120.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-06T14:44:20.312 INFO:teuthology.orchestra.run.smithi120.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-06T14:44:20.312 INFO:teuthology.orchestra.run.smithi120.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-06T14:44:20.313 INFO:teuthology.orchestra.run.smithi120.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-06T14:44:20.313 INFO:teuthology.orchestra.run.smithi120.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-06T14:44:20.313 INFO:teuthology.orchestra.run.smithi120.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-06T14:44:20.317 INFO:teuthology.orchestra.run.smithi003.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-06T14:44:20.317 INFO:teuthology.orchestra.run.smithi003.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-06T14:44:20.319 INFO:teuthology.orchestra.run.smithi003.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-06T14:44:20.330 INFO:teuthology.orchestra.run.smithi003.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-06T14:44:20.333 INFO:teuthology.orchestra.run.smithi003.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-06T14:44:20.334 INFO:teuthology.orchestra.run.smithi003.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-06T14:44:20.334 INFO:teuthology.orchestra.run.smithi003.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-06T14:44:20.335 INFO:teuthology.orchestra.run.smithi003.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-06T14:44:20.335 INFO:teuthology.orchestra.run.smithi003.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-06T14:44:20.360 INFO:teuthology.orchestra.run.smithi120.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-06T14:44:20.398 INFO:teuthology.orchestra.run.smithi003.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-06T14:44:26.235 INFO:teuthology.orchestra.run.smithi120.stdout:Fetched 15.8 MB in 3s (5,692 kB/s) 2024-09-06T14:44:26.637 INFO:teuthology.orchestra.run.smithi003.stdout:Fetched 15.8 MB in 3s (5,642 kB/s) 2024-09-06T14:44:27.703 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-06T14:44:27.721 DEBUG:teuthology.orchestra.run.smithi120:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-06T14:44:27.785 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-06T14:44:27.974 INFO:teuthology.orchestra.run.smithi120.stdout:Building dependency tree... 2024-09-06T14:44:27.974 INFO:teuthology.orchestra.run.smithi120.stdout:Reading state information... 2024-09-06T14:44:28.082 INFO:teuthology.orchestra.run.smithi003.stdout:Reading package lists... 2024-09-06T14:44:28.100 DEBUG:teuthology.orchestra.run.smithi003:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-06T14:44:28.139 INFO:teuthology.orchestra.run.smithi120.stdout:The following packages were automatically installed and are no longer required: 2024-09-06T14:44:28.139 INFO:teuthology.orchestra.run.smithi120.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-06T14:44:28.139 INFO:teuthology.orchestra.run.smithi120.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-06T14:44:28.140 INFO:teuthology.orchestra.run.smithi120.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-06T14:44:28.140 INFO:teuthology.orchestra.run.smithi120.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-06T14:44:28.140 INFO:teuthology.orchestra.run.smithi120.stdout: python2.7-minimal 2024-09-06T14:44:28.140 INFO:teuthology.orchestra.run.smithi120.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-06T14:44:28.141 INFO:teuthology.orchestra.run.smithi120.stdout:The following additional packages will be installed: 2024-09-06T14:44:28.141 INFO:teuthology.orchestra.run.smithi120.stdout: linux-generic linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-06T14:44:28.141 INFO:teuthology.orchestra.run.smithi120.stdout: linux-headers-generic linux-image-5.15.0-119-generic 2024-09-06T14:44:28.141 INFO:teuthology.orchestra.run.smithi120.stdout: linux-modules-5.15.0-119-generic linux-modules-extra-5.15.0-119-generic 2024-09-06T14:44:28.143 INFO:teuthology.orchestra.run.smithi120.stdout:Suggested packages: 2024-09-06T14:44:28.143 INFO:teuthology.orchestra.run.smithi120.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-06T14:44:28.143 INFO:teuthology.orchestra.run.smithi120.stdout:Recommended packages: 2024-09-06T14:44:28.143 INFO:teuthology.orchestra.run.smithi120.stdout: thermald 2024-09-06T14:44:28.166 INFO:teuthology.orchestra.run.smithi003.stdout:Reading package lists... 2024-09-06T14:44:28.192 INFO:teuthology.orchestra.run.smithi120.stdout:The following NEW packages will be installed: 2024-09-06T14:44:28.192 INFO:teuthology.orchestra.run.smithi120.stdout: linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-06T14:44:28.192 INFO:teuthology.orchestra.run.smithi120.stdout: linux-image-5.15.0-119-generic linux-modules-5.15.0-119-generic 2024-09-06T14:44:28.192 INFO:teuthology.orchestra.run.smithi120.stdout: linux-modules-extra-5.15.0-119-generic 2024-09-06T14:44:28.194 INFO:teuthology.orchestra.run.smithi120.stdout:The following packages will be upgraded: 2024-09-06T14:44:28.194 INFO:teuthology.orchestra.run.smithi120.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-06T14:44:28.244 INFO:teuthology.orchestra.run.smithi120.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-06T14:44:28.245 INFO:teuthology.orchestra.run.smithi120.stdout:Need to get 113 MB of archives. 2024-09-06T14:44:28.245 INFO:teuthology.orchestra.run.smithi120.stdout:After this operation, 583 MB of additional disk space will be used. 2024-09-06T14:44:28.245 INFO:teuthology.orchestra.run.smithi120.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-119-generic amd64 5.15.0-119.129 [22.6 MB] 2024-09-06T14:44:28.387 INFO:teuthology.orchestra.run.smithi003.stdout:Building dependency tree... 2024-09-06T14:44:28.388 INFO:teuthology.orchestra.run.smithi003.stdout:Reading state information... 2024-09-06T14:44:28.588 INFO:teuthology.orchestra.run.smithi003.stdout:The following packages were automatically installed and are no longer required: 2024-09-06T14:44:28.588 INFO:teuthology.orchestra.run.smithi003.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-06T14:44:28.588 INFO:teuthology.orchestra.run.smithi003.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-06T14:44:28.589 INFO:teuthology.orchestra.run.smithi003.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-06T14:44:28.589 INFO:teuthology.orchestra.run.smithi003.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-06T14:44:28.589 INFO:teuthology.orchestra.run.smithi003.stdout: python2.7-minimal 2024-09-06T14:44:28.589 INFO:teuthology.orchestra.run.smithi003.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-06T14:44:28.591 INFO:teuthology.orchestra.run.smithi003.stdout:The following additional packages will be installed: 2024-09-06T14:44:28.591 INFO:teuthology.orchestra.run.smithi003.stdout: linux-generic linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-06T14:44:28.591 INFO:teuthology.orchestra.run.smithi003.stdout: linux-headers-generic linux-image-5.15.0-119-generic 2024-09-06T14:44:28.592 INFO:teuthology.orchestra.run.smithi003.stdout: linux-modules-5.15.0-119-generic linux-modules-extra-5.15.0-119-generic 2024-09-06T14:44:28.593 INFO:teuthology.orchestra.run.smithi003.stdout:Suggested packages: 2024-09-06T14:44:28.593 INFO:teuthology.orchestra.run.smithi003.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-06T14:44:28.593 INFO:teuthology.orchestra.run.smithi003.stdout:Recommended packages: 2024-09-06T14:44:28.593 INFO:teuthology.orchestra.run.smithi003.stdout: thermald 2024-09-06T14:44:28.642 INFO:teuthology.orchestra.run.smithi003.stdout:The following NEW packages will be installed: 2024-09-06T14:44:28.642 INFO:teuthology.orchestra.run.smithi003.stdout: linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-06T14:44:28.642 INFO:teuthology.orchestra.run.smithi003.stdout: linux-image-5.15.0-119-generic linux-modules-5.15.0-119-generic 2024-09-06T14:44:28.642 INFO:teuthology.orchestra.run.smithi003.stdout: linux-modules-extra-5.15.0-119-generic 2024-09-06T14:44:28.644 INFO:teuthology.orchestra.run.smithi003.stdout:The following packages will be upgraded: 2024-09-06T14:44:28.645 INFO:teuthology.orchestra.run.smithi003.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-06T14:44:28.688 INFO:teuthology.orchestra.run.smithi120.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-119-generic amd64 5.15.0-119.129 [11.5 MB] 2024-09-06T14:44:28.698 INFO:teuthology.orchestra.run.smithi003.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-06T14:44:28.698 INFO:teuthology.orchestra.run.smithi003.stdout:Need to get 113 MB of archives. 2024-09-06T14:44:28.698 INFO:teuthology.orchestra.run.smithi003.stdout:After this operation, 583 MB of additional disk space will be used. 2024-09-06T14:44:28.698 INFO:teuthology.orchestra.run.smithi003.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-119-generic amd64 5.15.0-119.129 [22.6 MB] 2024-09-06T14:44:28.778 INFO:teuthology.orchestra.run.smithi120.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-119-generic amd64 5.15.0-119.129 [63.9 MB] 2024-09-06T14:44:29.115 INFO:teuthology.orchestra.run.smithi003.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-119-generic amd64 5.15.0-119.129 [11.5 MB] 2024-09-06T14:44:29.212 INFO:teuthology.orchestra.run.smithi003.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-119-generic amd64 5.15.0-119.129 [63.9 MB] 2024-09-06T14:44:29.572 INFO:teuthology.orchestra.run.smithi120.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.119.119 [1,694 B] 2024-09-06T14:44:29.572 INFO:teuthology.orchestra.run.smithi120.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.119.119 [2,502 B] 2024-09-06T14:44:29.572 INFO:teuthology.orchestra.run.smithi120.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-119 all 5.15.0-119.129 [12.3 MB] 2024-09-06T14:44:29.689 INFO:teuthology.orchestra.run.smithi120.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-119-generic amd64 5.15.0-119.129 [2,879 kB] 2024-09-06T14:44:29.711 INFO:teuthology.orchestra.run.smithi120.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.119.119 [2,350 B] 2024-09-06T14:44:30.075 INFO:teuthology.orchestra.run.smithi003.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.119.119 [1,694 B] 2024-09-06T14:44:30.075 INFO:teuthology.orchestra.run.smithi003.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.119.119 [2,502 B] 2024-09-06T14:44:30.075 INFO:teuthology.orchestra.run.smithi003.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-119 all 5.15.0-119.129 [12.3 MB] 2024-09-06T14:44:30.106 INFO:teuthology.orchestra.run.smithi120.stdout:Fetched 113 MB in 2s (75.1 MB/s) 2024-09-06T14:44:30.223 INFO:teuthology.orchestra.run.smithi003.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-119-generic amd64 5.15.0-119.129 [2,879 kB] 2024-09-06T14:44:30.246 INFO:teuthology.orchestra.run.smithi003.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.119.119 [2,350 B] 2024-09-06T14:44:30.287 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-modules-5.15.0-119-generic. 2024-09-06T14:44:30.657 INFO:teuthology.orchestra.run.smithi003.stdout:Fetched 113 MB in 2s (71.1 MB/s) 2024-09-06T14:44:30.832 INFO:teuthology.orchestra.run.smithi003.stdout:Selecting previously unselected package linux-modules-5.15.0-119-generic. 2024-09-06T14:44:32.332 INFO:teuthology.orchestra.run.smithi120.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-06T14:44:32.336 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../0-linux-modules-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T14:44:32.484 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:32.799 INFO:teuthology.orchestra.run.smithi003.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-06T14:44:32.803 INFO:teuthology.orchestra.run.smithi003.stdout:Preparing to unpack .../0-linux-modules-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T14:44:32.889 INFO:teuthology.orchestra.run.smithi003.stdout:Unpacking linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:34.501 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-image-5.15.0-119-generic. 2024-09-06T14:44:34.523 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../1-linux-image-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T14:44:34.623 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:34.940 INFO:teuthology.orchestra.run.smithi003.stdout:Selecting previously unselected package linux-image-5.15.0-119-generic. 2024-09-06T14:44:34.961 INFO:teuthology.orchestra.run.smithi003.stdout:Preparing to unpack .../1-linux-image-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T14:44:35.029 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-119-generic. 2024-09-06T14:44:35.049 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T14:44:35.057 INFO:teuthology.orchestra.run.smithi003.stdout:Unpacking linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:35.087 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:35.459 INFO:teuthology.orchestra.run.smithi003.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-119-generic. 2024-09-06T14:44:35.480 INFO:teuthology.orchestra.run.smithi003.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T14:44:35.509 INFO:teuthology.orchestra.run.smithi003.stdout:Unpacking linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:41.582 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../3-linux-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T14:44:41.708 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T14:44:42.023 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T14:44:42.145 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-image-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T14:44:42.316 INFO:teuthology.orchestra.run.smithi003.stdout:Preparing to unpack .../3-linux-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T14:44:42.417 INFO:teuthology.orchestra.run.smithi003.stdout:Unpacking linux-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T14:44:42.431 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-headers-5.15.0-119. 2024-09-06T14:44:42.444 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../5-linux-headers-5.15.0-119_5.15.0-119.129_all.deb ... 2024-09-06T14:44:42.481 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-06T14:44:42.734 INFO:teuthology.orchestra.run.smithi003.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T14:44:42.862 INFO:teuthology.orchestra.run.smithi003.stdout:Unpacking linux-image-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T14:44:43.173 INFO:teuthology.orchestra.run.smithi003.stdout:Selecting previously unselected package linux-headers-5.15.0-119. 2024-09-06T14:44:43.196 INFO:teuthology.orchestra.run.smithi003.stdout:Preparing to unpack .../5-linux-headers-5.15.0-119_5.15.0-119.129_all.deb ... 2024-09-06T14:44:43.240 INFO:teuthology.orchestra.run.smithi003.stdout:Unpacking linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-06T14:44:48.500 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-headers-5.15.0-119-generic. 2024-09-06T14:44:48.536 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../6-linux-headers-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T14:44:48.574 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:48.908 INFO:teuthology.orchestra.run.smithi003.stdout:Selecting previously unselected package linux-headers-5.15.0-119-generic. 2024-09-06T14:44:48.945 INFO:teuthology.orchestra.run.smithi003.stdout:Preparing to unpack .../6-linux-headers-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-06T14:44:48.975 INFO:teuthology.orchestra.run.smithi003.stdout:Unpacking linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:51.210 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T14:44:51.333 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-headers-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T14:44:51.564 INFO:teuthology.orchestra.run.smithi003.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.119.119_amd64.deb ... 2024-09-06T14:44:51.666 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-06T14:44:51.684 INFO:teuthology.orchestra.run.smithi003.stdout:Unpacking linux-headers-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-06T14:44:51.788 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:51.914 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-headers-generic (5.15.0.119.119) ... 2024-09-06T14:44:52.010 INFO:teuthology.orchestra.run.smithi003.stdout:Setting up linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-06T14:44:52.043 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:52.106 INFO:teuthology.orchestra.run.smithi003.stdout:Setting up linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:52.232 INFO:teuthology.orchestra.run.smithi003.stdout:Setting up linux-headers-generic (5.15.0.119.119) ... 2024-09-06T14:44:52.361 INFO:teuthology.orchestra.run.smithi003.stdout:Setting up linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:53.370 INFO:teuthology.orchestra.run.smithi120.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-06T14:44:53.370 INFO:teuthology.orchestra.run.smithi120.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-06T14:44:53.370 INFO:teuthology.orchestra.run.smithi120.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-119-generic 2024-09-06T14:44:53.370 INFO:teuthology.orchestra.run.smithi120.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-119-generic 2024-09-06T14:44:53.521 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:53.728 INFO:teuthology.orchestra.run.smithi003.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-06T14:44:53.729 INFO:teuthology.orchestra.run.smithi003.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-06T14:44:53.729 INFO:teuthology.orchestra.run.smithi003.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-119-generic 2024-09-06T14:44:53.729 INFO:teuthology.orchestra.run.smithi003.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-119-generic 2024-09-06T14:44:53.895 INFO:teuthology.orchestra.run.smithi003.stdout:Setting up linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:55.298 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:55.763 INFO:teuthology.orchestra.run.smithi003.stdout:Setting up linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:56.683 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-image-generic (5.15.0.119.119) ... 2024-09-06T14:44:56.808 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-generic (5.15.0.119.119) ... 2024-09-06T14:44:56.935 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:56.992 INFO:teuthology.orchestra.run.smithi120.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-06T14:44:56.992 INFO:teuthology.orchestra.run.smithi120.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-119-generic 2024-09-06T14:44:57.173 INFO:teuthology.orchestra.run.smithi003.stdout:Setting up linux-image-generic (5.15.0.119.119) ... 2024-09-06T14:44:57.299 INFO:teuthology.orchestra.run.smithi003.stdout:Setting up linux-generic (5.15.0.119.119) ... 2024-09-06T14:44:57.425 INFO:teuthology.orchestra.run.smithi003.stdout:Processing triggers for linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-06T14:44:57.490 INFO:teuthology.orchestra.run.smithi003.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-06T14:44:57.491 INFO:teuthology.orchestra.run.smithi003.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-119-generic 2024-09-06T14:45:11.787 INFO:teuthology.orchestra.run.smithi120.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-06T14:45:11.787 INFO:teuthology.orchestra.run.smithi120.stdout:Sourcing file `/etc/default/grub' 2024-09-06T14:45:11.811 INFO:teuthology.orchestra.run.smithi120.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-06T14:45:11.828 INFO:teuthology.orchestra.run.smithi120.stdout:Generating grub configuration file ... 2024-09-06T14:45:12.082 INFO:teuthology.orchestra.run.smithi120.stdout:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-06T14:45:12.095 INFO:teuthology.orchestra.run.smithi003.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-06T14:45:12.095 INFO:teuthology.orchestra.run.smithi003.stdout:Sourcing file `/etc/default/grub' 2024-09-06T14:45:12.099 INFO:teuthology.orchestra.run.smithi003.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-06T14:45:12.102 INFO:teuthology.orchestra.run.smithi120.stdout:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-06T14:45:12.126 INFO:teuthology.orchestra.run.smithi003.stdout:Generating grub configuration file ... 2024-09-06T14:45:12.380 INFO:teuthology.orchestra.run.smithi003.stdout:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-06T14:45:12.393 INFO:teuthology.orchestra.run.smithi003.stdout:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-06T14:45:12.410 INFO:teuthology.orchestra.run.smithi120.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-06T14:45:12.417 INFO:teuthology.orchestra.run.smithi120.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-06T14:45:12.482 INFO:teuthology.orchestra.run.smithi120.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-06T14:45:12.487 INFO:teuthology.orchestra.run.smithi120.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-06T14:45:12.662 INFO:teuthology.orchestra.run.smithi120.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-06T14:45:12.662 INFO:teuthology.orchestra.run.smithi120.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-06T14:45:12.662 INFO:teuthology.orchestra.run.smithi120.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-06T14:45:12.702 INFO:teuthology.orchestra.run.smithi120.stdout:done 2024-09-06T14:45:12.714 INFO:teuthology.orchestra.run.smithi003.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-06T14:45:12.720 INFO:teuthology.orchestra.run.smithi003.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-06T14:45:12.786 INFO:teuthology.orchestra.run.smithi003.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-06T14:45:12.793 INFO:teuthology.orchestra.run.smithi003.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-06T14:45:12.961 INFO:teuthology.orchestra.run.smithi003.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-06T14:45:12.961 INFO:teuthology.orchestra.run.smithi003.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-06T14:45:12.961 INFO:teuthology.orchestra.run.smithi003.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-06T14:45:12.998 INFO:teuthology.orchestra.run.smithi003.stdout:done 2024-09-06T14:45:13.191 DEBUG:teuthology.orchestra.run.smithi120:> dpkg -s linux-image-generic 2024-09-06T14:45:13.209 INFO:teuthology.orchestra.run.smithi120.stdout:Package: linux-image-generic 2024-09-06T14:45:13.209 INFO:teuthology.orchestra.run.smithi120.stdout:Status: install ok installed 2024-09-06T14:45:13.209 INFO:teuthology.orchestra.run.smithi120.stdout:Priority: optional 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Section: kernel 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Installed-Size: 21 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Maintainer: Ubuntu Kernel Team 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Architecture: amd64 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Source: linux-meta 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Version: 5.15.0.119.119 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-119), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Depends: linux-image-5.15.0-119-generic, linux-modules-extra-5.15.0-119-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Recommends: thermald 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout:Description: Generic Linux kernel image 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout: This package will always depend on the latest generic kernel image 2024-09-06T14:45:13.210 INFO:teuthology.orchestra.run.smithi120.stdout: available. 2024-09-06T14:45:13.211 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-119-generic 2024-09-06T14:45:13.211 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-06T14:45:13.211 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-06T14:45:13.211 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-06T14:45:13.211 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi120.front.sepia.ceph.com, path=None, version=distro) 2024-09-06T14:45:13.211 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get clean 2024-09-06T14:45:13.411 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get update 2024-09-06T14:45:13.527 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-06T14:45:13.534 DEBUG:teuthology.orchestra.run.smithi003:> dpkg -s linux-image-generic 2024-09-06T14:45:13.537 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-06T14:45:13.554 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-06T14:45:13.556 INFO:teuthology.orchestra.run.smithi003.stdout:Package: linux-image-generic 2024-09-06T14:45:13.556 INFO:teuthology.orchestra.run.smithi003.stdout:Status: install ok installed 2024-09-06T14:45:13.556 INFO:teuthology.orchestra.run.smithi003.stdout:Priority: optional 2024-09-06T14:45:13.556 INFO:teuthology.orchestra.run.smithi003.stdout:Section: kernel 2024-09-06T14:45:13.556 INFO:teuthology.orchestra.run.smithi003.stdout:Installed-Size: 21 2024-09-06T14:45:13.556 INFO:teuthology.orchestra.run.smithi003.stdout:Maintainer: Ubuntu Kernel Team 2024-09-06T14:45:13.556 INFO:teuthology.orchestra.run.smithi003.stdout:Architecture: amd64 2024-09-06T14:45:13.557 INFO:teuthology.orchestra.run.smithi003.stdout:Source: linux-meta 2024-09-06T14:45:13.557 INFO:teuthology.orchestra.run.smithi003.stdout:Version: 5.15.0.119.119 2024-09-06T14:45:13.557 INFO:teuthology.orchestra.run.smithi003.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-119), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-06T14:45:13.557 INFO:teuthology.orchestra.run.smithi003.stdout:Depends: linux-image-5.15.0-119-generic, linux-modules-extra-5.15.0-119-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-06T14:45:13.557 INFO:teuthology.orchestra.run.smithi003.stdout:Recommends: thermald 2024-09-06T14:45:13.557 INFO:teuthology.orchestra.run.smithi003.stdout:Description: Generic Linux kernel image 2024-09-06T14:45:13.557 INFO:teuthology.orchestra.run.smithi003.stdout: This package will always depend on the latest generic kernel image 2024-09-06T14:45:13.557 INFO:teuthology.orchestra.run.smithi003.stdout: available. 2024-09-06T14:45:13.557 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-119-generic 2024-09-06T14:45:13.558 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-06T14:45:13.558 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-06T14:45:13.558 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-06T14:45:13.558 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi003.front.sepia.ceph.com, path=None, version=distro) 2024-09-06T14:45:13.558 DEBUG:teuthology.orchestra.run.smithi003:> sudo apt-get clean 2024-09-06T14:45:13.649 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-06T14:45:13.747 DEBUG:teuthology.orchestra.run.smithi003:> sudo apt-get update 2024-09-06T14:45:13.862 INFO:teuthology.orchestra.run.smithi003.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-06T14:45:13.984 INFO:teuthology.orchestra.run.smithi003.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-06T14:45:14.077 INFO:teuthology.orchestra.run.smithi003.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-06T14:45:14.146 INFO:teuthology.orchestra.run.smithi003.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-06T14:45:14.937 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-06T14:45:14.956 DEBUG:teuthology.orchestra.run.smithi120:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-06T14:45:15.010 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-06T14:45:15.204 INFO:teuthology.orchestra.run.smithi120.stdout:Building dependency tree... 2024-09-06T14:45:15.205 INFO:teuthology.orchestra.run.smithi120.stdout:Reading state information... 2024-09-06T14:45:15.320 INFO:teuthology.orchestra.run.smithi003.stdout:Reading package lists... 2024-09-06T14:45:15.339 DEBUG:teuthology.orchestra.run.smithi003:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-06T14:45:15.370 INFO:teuthology.orchestra.run.smithi120.stdout:linux-image-generic is already the newest version (5.15.0.119.119). 2024-09-06T14:45:15.370 INFO:teuthology.orchestra.run.smithi120.stdout:The following packages were automatically installed and are no longer required: 2024-09-06T14:45:15.370 INFO:teuthology.orchestra.run.smithi120.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-06T14:45:15.370 INFO:teuthology.orchestra.run.smithi120.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-06T14:45:15.370 INFO:teuthology.orchestra.run.smithi120.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-06T14:45:15.371 INFO:teuthology.orchestra.run.smithi120.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-06T14:45:15.371 INFO:teuthology.orchestra.run.smithi120.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-06T14:45:15.371 INFO:teuthology.orchestra.run.smithi120.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-06T14:45:15.405 INFO:teuthology.orchestra.run.smithi003.stdout:Reading package lists... 2024-09-06T14:45:15.410 INFO:teuthology.orchestra.run.smithi120.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-06T14:45:15.412 DEBUG:teuthology.orchestra.run.smithi120:> dpkg -s linux-image-generic 2024-09-06T14:45:15.468 INFO:teuthology.orchestra.run.smithi120.stdout:Package: linux-image-generic 2024-09-06T14:45:15.468 INFO:teuthology.orchestra.run.smithi120.stdout:Status: install ok installed 2024-09-06T14:45:15.468 INFO:teuthology.orchestra.run.smithi120.stdout:Priority: optional 2024-09-06T14:45:15.468 INFO:teuthology.orchestra.run.smithi120.stdout:Section: kernel 2024-09-06T14:45:15.468 INFO:teuthology.orchestra.run.smithi120.stdout:Installed-Size: 21 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout:Maintainer: Ubuntu Kernel Team 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout:Architecture: amd64 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout:Source: linux-meta 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout:Version: 5.15.0.119.119 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-119), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout:Depends: linux-image-5.15.0-119-generic, linux-modules-extra-5.15.0-119-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout:Recommends: thermald 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout:Description: Generic Linux kernel image 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout: This package will always depend on the latest generic kernel image 2024-09-06T14:45:15.469 INFO:teuthology.orchestra.run.smithi120.stdout: available. 2024-09-06T14:45:15.470 DEBUG:teuthology.orchestra.run.smithi120:> mktemp 2024-09-06T14:45:15.514 INFO:teuthology.orchestra.run.smithi120.stdout:/tmp/tmp.6pHtL13j7V 2024-09-06T14:45:15.514 DEBUG:teuthology.orchestra.run.smithi120:> sudo cp /boot/grub/grub.cfg /tmp/tmp.6pHtL13j7V 2024-09-06T14:45:15.570 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 0666 /tmp/tmp.6pHtL13j7V 2024-09-06T14:45:15.632 INFO:teuthology.orchestra.run.smithi003.stdout:Building dependency tree... 2024-09-06T14:45:15.633 INFO:teuthology.orchestra.run.smithi003.stdout:Reading state information... 2024-09-06T14:45:15.692 DEBUG:teuthology.orchestra.remote:smithi120:/tmp/tmp.6pHtL13j7V is 10KB 2024-09-06T14:45:15.705 DEBUG:teuthology.orchestra.run.smithi120:> rm -fr /tmp/tmp.6pHtL13j7V 2024-09-06T14:45:15.711 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-06T14:45:15.766 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T14:45:15.766 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-06T14:45:15.766 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-06T14:45:15.827 INFO:teuthology.orchestra.run.smithi003.stdout:linux-image-generic is already the newest version (5.15.0.119.119). 2024-09-06T14:45:15.827 INFO:teuthology.orchestra.run.smithi003.stdout:The following packages were automatically installed and are no longer required: 2024-09-06T14:45:15.827 INFO:teuthology.orchestra.run.smithi003.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-06T14:45:15.827 INFO:teuthology.orchestra.run.smithi003.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-06T14:45:15.828 INFO:teuthology.orchestra.run.smithi003.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-06T14:45:15.828 INFO:teuthology.orchestra.run.smithi003.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-06T14:45:15.828 INFO:teuthology.orchestra.run.smithi003.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-06T14:45:15.828 INFO:teuthology.orchestra.run.smithi003.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-06T14:45:15.833 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-119-generic 2024-09-06T14:45:15.833 DEBUG:teuthology.orchestra.run.smithi120:> sudo update-grub 2024-09-06T14:45:15.873 INFO:teuthology.orchestra.run.smithi003.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-06T14:45:15.874 DEBUG:teuthology.orchestra.run.smithi003:> dpkg -s linux-image-generic 2024-09-06T14:45:15.891 INFO:teuthology.orchestra.run.smithi003.stdout:Package: linux-image-generic 2024-09-06T14:45:15.891 INFO:teuthology.orchestra.run.smithi003.stdout:Status: install ok installed 2024-09-06T14:45:15.891 INFO:teuthology.orchestra.run.smithi003.stdout:Priority: optional 2024-09-06T14:45:15.891 INFO:teuthology.orchestra.run.smithi003.stdout:Section: kernel 2024-09-06T14:45:15.891 INFO:teuthology.orchestra.run.smithi003.stdout:Installed-Size: 21 2024-09-06T14:45:15.891 INFO:teuthology.orchestra.run.smithi003.stdout:Maintainer: Ubuntu Kernel Team 2024-09-06T14:45:15.891 INFO:teuthology.orchestra.run.smithi003.stdout:Architecture: amd64 2024-09-06T14:45:15.891 INFO:teuthology.orchestra.run.smithi003.stdout:Source: linux-meta 2024-09-06T14:45:15.892 INFO:teuthology.orchestra.run.smithi003.stdout:Version: 5.15.0.119.119 2024-09-06T14:45:15.892 INFO:teuthology.orchestra.run.smithi003.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-119), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-06T14:45:15.892 INFO:teuthology.orchestra.run.smithi003.stdout:Depends: linux-image-5.15.0-119-generic, linux-modules-extra-5.15.0-119-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-06T14:45:15.892 INFO:teuthology.orchestra.run.smithi003.stdout:Recommends: thermald 2024-09-06T14:45:15.892 INFO:teuthology.orchestra.run.smithi003.stdout:Description: Generic Linux kernel image 2024-09-06T14:45:15.892 INFO:teuthology.orchestra.run.smithi003.stdout: This package will always depend on the latest generic kernel image 2024-09-06T14:45:15.892 INFO:teuthology.orchestra.run.smithi003.stdout: available. 2024-09-06T14:45:15.892 DEBUG:teuthology.orchestra.run.smithi003:> mktemp 2024-09-06T14:45:15.940 INFO:teuthology.orchestra.run.smithi003.stdout:/tmp/tmp.6EE5YgiSjz 2024-09-06T14:45:15.940 DEBUG:teuthology.orchestra.run.smithi003:> sudo cp /boot/grub/grub.cfg /tmp/tmp.6EE5YgiSjz 2024-09-06T14:45:15.996 DEBUG:teuthology.orchestra.run.smithi003:> sudo chmod 0666 /tmp/tmp.6EE5YgiSjz 2024-09-06T14:45:16.122 DEBUG:teuthology.orchestra.remote:smithi003:/tmp/tmp.6EE5YgiSjz is 10KB 2024-09-06T14:45:16.136 DEBUG:teuthology.orchestra.run.smithi003:> rm -fr /tmp/tmp.6EE5YgiSjz 2024-09-06T14:45:16.141 DEBUG:teuthology.orchestra.run.smithi003:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-06T14:45:16.196 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:45:16.197 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-06T14:45:16.197 DEBUG:teuthology.orchestra.run.smithi003:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-06T14:45:16.272 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-119-generic 2024-09-06T14:45:16.272 DEBUG:teuthology.orchestra.run.smithi003:> sudo update-grub 2024-09-06T14:45:16.971 INFO:teuthology.orchestra.run.smithi120.stderr:Sourcing file `/etc/default/grub' 2024-09-06T14:45:16.972 INFO:teuthology.orchestra.run.smithi120.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-06T14:45:16.974 INFO:teuthology.orchestra.run.smithi120.stderr:Generating grub configuration file ... 2024-09-06T14:45:17.158 INFO:teuthology.orchestra.run.smithi120.stderr:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-06T14:45:17.164 INFO:teuthology.orchestra.run.smithi120.stderr:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-06T14:45:17.379 INFO:teuthology.orchestra.run.smithi120.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-06T14:45:17.384 INFO:teuthology.orchestra.run.smithi120.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-06T14:45:17.423 INFO:teuthology.orchestra.run.smithi120.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-06T14:45:17.428 INFO:teuthology.orchestra.run.smithi120.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-06T14:45:17.487 INFO:teuthology.orchestra.run.smithi003.stderr:Sourcing file `/etc/default/grub' 2024-09-06T14:45:17.488 INFO:teuthology.orchestra.run.smithi003.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-06T14:45:17.490 INFO:teuthology.orchestra.run.smithi003.stderr:Generating grub configuration file ... 2024-09-06T14:45:17.568 INFO:teuthology.orchestra.run.smithi120.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-06T14:45:17.569 INFO:teuthology.orchestra.run.smithi120.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-06T14:45:17.569 INFO:teuthology.orchestra.run.smithi120.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-06T14:45:17.581 INFO:teuthology.orchestra.run.smithi120.stderr:done 2024-09-06T14:45:17.592 DEBUG:teuthology.orchestra.run.smithi120:> sudo shutdown -r now 2024-09-06T14:45:17.692 INFO:teuthology.orchestra.run.smithi003.stderr:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-06T14:45:17.698 INFO:teuthology.orchestra.run.smithi003.stderr:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-06T14:45:17.927 INFO:teuthology.orchestra.run.smithi003.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-06T14:45:17.932 INFO:teuthology.orchestra.run.smithi003.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-06T14:45:17.977 INFO:teuthology.orchestra.run.smithi003.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-06T14:45:17.982 INFO:teuthology.orchestra.run.smithi003.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-06T14:45:18.110 INFO:teuthology.orchestra.run.smithi003.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-06T14:45:18.110 INFO:teuthology.orchestra.run.smithi003.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-06T14:45:18.110 INFO:teuthology.orchestra.run.smithi003.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-06T14:45:18.129 INFO:teuthology.orchestra.run.smithi003.stderr:done 2024-09-06T14:45:18.131 DEBUG:teuthology.orchestra.run.smithi003:> sudo shutdown -r now 2024-09-06T14:45:47.621 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-06T14:45:47.622 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-06T14:45:47.623 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:45:48.134 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-06T14:45:48.135 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-06T14:45:48.136 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:46:06.141 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-09-06T14:46:06.657 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.3 2024-09-06T14:46:15.150 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-06T14:46:15.151 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:46:15.658 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-06T14:46:15.659 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:46:18.237 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-09-06T14:46:18.749 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.3 2024-09-06T14:46:30.245 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-06T14:46:30.246 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:46:30.751 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-06T14:46:30.751 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:46:48.641 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-09-06T14:47:02.205 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.3 2024-09-06T14:47:03.644 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-06T14:47:03.645 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:47:03.972 DEBUG:teuthology.orchestra.run.smithi120:> true 2024-09-06T14:47:04.499 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-06T14:47:04.500 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-119-generic"... 2024-09-06T14:47:04.500 DEBUG:teuthology.orchestra.run.smithi120:> uname -r 2024-09-06T14:47:04.546 INFO:teuthology.orchestra.run.smithi120.stdout:5.15.0-119-generic 2024-09-06T14:47:04.547 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-119-generic vs 5.15.0-119-generic 2024-09-06T14:47:04.547 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-06T14:47:04.547 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-06T14:47:05.547 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-06T14:47:05.548 DEBUG:teuthology.orchestra.run.smithi120:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-06T14:47:05.923 INFO:teuthology.orchestra.run.smithi120.stdout:ttyS1 2024-09-06T14:47:05.957 DEBUG:teuthology.parallel:result is None 2024-09-06T14:47:17.206 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-06T14:47:17.207 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:47:17.473 DEBUG:teuthology.orchestra.run.smithi003:> true 2024-09-06T14:47:18.059 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-06T14:47:18.059 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-119-generic"... 2024-09-06T14:47:18.059 DEBUG:teuthology.orchestra.run.smithi003:> uname -r 2024-09-06T14:47:18.104 INFO:teuthology.orchestra.run.smithi003.stdout:5.15.0-119-generic 2024-09-06T14:47:18.105 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-119-generic vs 5.15.0-119-generic 2024-09-06T14:47:18.105 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-06T14:47:18.105 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-06T14:47:19.105 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-06T14:47:19.106 DEBUG:teuthology.orchestra.run.smithi003:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-06T14:47:19.187 INFO:teuthology.orchestra.run.smithi003.stdout:ttyS1 2024-09-06T14:47:19.226 DEBUG:teuthology.parallel:result is None 2024-09-06T14:47:19.226 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-06T14:47:19.237 INFO:teuthology.task.internal:Creating test directory... 2024-09-06T14:47:19.237 DEBUG:teuthology.orchestra.run.smithi003:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-06T14:47:19.239 DEBUG:teuthology.orchestra.run.smithi120:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-06T14:47:19.245 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-06T14:47:19.288 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-06T14:47:19.338 INFO:teuthology.task.internal:Creating archive directory... 2024-09-06T14:47:19.338 DEBUG:teuthology.orchestra.run.smithi003:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-06T14:47:19.341 DEBUG:teuthology.orchestra.run.smithi120:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-06T14:47:19.363 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-06T14:47:19.388 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-06T14:47:19.388 DEBUG:teuthology.orchestra.run.smithi003:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-06T14:47:19.398 DEBUG:teuthology.orchestra.run.smithi120:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-06T14:47:19.414 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-06T14:47:19.416 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-06T14:47:19.423 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-06T14:47:19.424 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-06T14:47:19.427 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-06T14:47:19.446 INFO:teuthology.task.internal:Configuring sudo... 2024-09-06T14:47:19.447 DEBUG:teuthology.orchestra.run.smithi003:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-06T14:47:19.469 DEBUG:teuthology.orchestra.run.smithi120:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-06T14:47:19.489 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-06T14:47:19.498 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-06T14:47:19.498 DEBUG:teuthology.orchestra.run.smithi003:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-06T14:47:19.525 DEBUG:teuthology.orchestra.run.smithi120:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-06T14:47:19.539 DEBUG:teuthology.orchestra.run.smithi003:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-06T14:47:19.577 DEBUG:teuthology.orchestra.run.smithi003:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-06T14:47:19.624 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:47:19.625 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-06T14:47:19.685 DEBUG:teuthology.orchestra.run.smithi120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-06T14:47:19.690 DEBUG:teuthology.orchestra.run.smithi120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-06T14:47:19.739 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T14:47:19.739 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-06T14:47:19.802 DEBUG:teuthology.orchestra.run.smithi003:> sudo service rsyslog restart 2024-09-06T14:47:19.805 DEBUG:teuthology.orchestra.run.smithi120:> sudo service rsyslog restart 2024-09-06T14:47:19.878 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-06T14:47:19.886 INFO:teuthology.task.internal:Starting timer... 2024-09-06T14:47:19.886 INFO:teuthology.run_tasks:Running task pcp... 2024-09-06T14:47:19.917 INFO:teuthology.run_tasks:Running task selinux... 2024-09-06T14:47:19.965 DEBUG:teuthology.task.selinux:Excluding smithi003: OS 'ubuntu' does not support SELinux 2024-09-06T14:47:19.965 DEBUG:teuthology.task.selinux:Excluding smithi120: OS 'ubuntu' does not support SELinux 2024-09-06T14:47:19.965 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-06T14:47:19.966 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-06T14:47:19.966 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-06T14:47:19.966 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-06T14:47:20.016 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-06T14:47:20.027 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-06T14:47:20.028 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi003.front.sepia.ceph.com,smithi120.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-06T14:55:18.686 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi003.front.sepia.ceph.com'), Remote(name='ubuntu@smithi120.front.sepia.ceph.com')] 2024-09-06T14:55:18.712 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-06T14:55:18.713 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi003.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:55:18.806 DEBUG:teuthology.orchestra.run.smithi003:> true 2024-09-06T14:55:18.885 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi003.front.sepia.ceph.com' 2024-09-06T14:55:18.886 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-06T14:55:18.886 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-06T14:55:18.992 DEBUG:teuthology.orchestra.run.smithi120:> true 2024-09-06T14:55:19.069 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-06T14:55:19.069 INFO:teuthology.run_tasks:Running task clock... 2024-09-06T14:55:19.080 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-06T14:55:19.080 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-06T14:55:19.080 DEBUG:teuthology.orchestra.run.smithi003:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-06T14:55:19.085 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-06T14:55:19.086 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-06T14:55:19.114 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-06T14:55:19.114 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Command line: ntpd -gq 2024-09-06T14:55:19.114 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: ---------------------------------------------------- 2024-09-06T14:55:19.114 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: ntp-4 is maintained by Network Time Foundation, 2024-09-06T14:55:19.114 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-06T14:55:19.114 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: corporation. Support and training for ntp-4 are 2024-09-06T14:55:19.114 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: available at https://www.nwtime.org/support 2024-09-06T14:55:19.114 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: ---------------------------------------------------- 2024-09-06T14:55:19.115 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: proto: precision = 0.045 usec (-24) 2024-09-06T14:55:19.115 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: basedate set to 2022-02-04 2024-09-06T14:55:19.115 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: gps base set to 2022-02-06 (week 2196) 2024-09-06T14:55:19.115 INFO:teuthology.orchestra.run.smithi003.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-06T14:55:19.116 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-06T14:55:19.116 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: restrict ::: KOD does nothing without LIMITED. 2024-09-06T14:55:19.116 INFO:teuthology.orchestra.run.smithi003.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-06T14:55:19.117 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Listen and drop on 0 v6wildcard [::]:123 2024-09-06T14:55:19.117 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-06T14:55:19.117 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Listen normally on 2 lo 127.0.0.1:123 2024-09-06T14:55:19.117 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Listen normally on 3 ens1f0 172.21.15.3:123 2024-09-06T14:55:19.117 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Listen normally on 4 lo [::1]:123 2024-09-06T14:55:19.117 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:15dc%4]:123 2024-09-06T14:55:19.117 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:19 ntpd[18339]: Listening on routing socket on fd #22 for interface updates 2024-09-06T14:55:19.140 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-06T14:55:19.140 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Command line: ntpd -gq 2024-09-06T14:55:19.140 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: ---------------------------------------------------- 2024-09-06T14:55:19.140 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: ntp-4 is maintained by Network Time Foundation, 2024-09-06T14:55:19.140 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-06T14:55:19.140 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: corporation. Support and training for ntp-4 are 2024-09-06T14:55:19.140 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: available at https://www.nwtime.org/support 2024-09-06T14:55:19.141 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: ---------------------------------------------------- 2024-09-06T14:55:19.141 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: proto: precision = 0.044 usec (-24) 2024-09-06T14:55:19.141 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: basedate set to 2022-02-04 2024-09-06T14:55:19.141 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: gps base set to 2022-02-06 (week 2196) 2024-09-06T14:55:19.142 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-06T14:55:19.142 INFO:teuthology.orchestra.run.smithi120.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-06T14:55:19.142 INFO:teuthology.orchestra.run.smithi120.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-06T14:55:19.143 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: restrict ::: KOD does nothing without LIMITED. 2024-09-06T14:55:19.143 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Listen and drop on 0 v6wildcard [::]:123 2024-09-06T14:55:19.143 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-06T14:55:19.143 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Listen normally on 2 lo 127.0.0.1:123 2024-09-06T14:55:19.143 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Listen normally on 3 enp3s0f1 172.21.15.120:123 2024-09-06T14:55:19.143 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Listen normally on 4 lo [::1]:123 2024-09-06T14:55:19.143 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:478f%5]:123 2024-09-06T14:55:19.143 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:19 ntpd[18482]: Listening on routing socket on fd #22 for interface updates 2024-09-06T14:55:20.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:20.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:20.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:20.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:20.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:20.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:20.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:20.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:20 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:21.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:21 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:21.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:21 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:21.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:21 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:21.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:21 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:21.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:21 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:21.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:21 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:21.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:21 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:21.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:21 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:22.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:22.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:22.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:22.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:22.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:22.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:22.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:22.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:22 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:22.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:22 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:22.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:22 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:22.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:22 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:22.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:22 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:22.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:22 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:22.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:22 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:23.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:23 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:23.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:23 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:23.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:23 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:23.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:23 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:23.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:23 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:23.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:23 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:24.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:24.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:24.118 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.118 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.118 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:24.118 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:24 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:24.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:24.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:24 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:25.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:25 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:25.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:25 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:25.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:25 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:25.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:25 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:25.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:25 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:25.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:25 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:26.115 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:26.115 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:26.115 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:26.115 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:26.115 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:26.115 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:26.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:26.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:26.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:26.116 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:26.116 INFO:teuthology.orchestra.run.smithi003.stdout: 6 Sep 14:55:26 ntpd[18339]: ntpd: time slew +0.000038 s 2024-09-06T14:55:26.116 INFO:teuthology.orchestra.run.smithi003.stdout:ntpd: time slew +0.000038s 2024-09-06T14:55:26.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-06T14:55:26.117 INFO:teuthology.orchestra.run.smithi003.stderr: 6 Sep 14:55:26 ntpd[18339]: can't open /var/log/ntpstats/loopstats.20240906: Permission denied 2024-09-06T14:55:26.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:26.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:26.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:26.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:26.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:26.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:26.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:26.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:26.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:26.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:26.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:26.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:26 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:26.164 INFO:teuthology.orchestra.run.smithi003.stdout: remote refid st t when poll reach delay offset jitter 2024-09-06T14:55:26.164 INFO:teuthology.orchestra.run.smithi003.stdout:============================================================================== 2024-09-06T14:55:26.164 INFO:teuthology.orchestra.run.smithi003.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:55:26.164 INFO:teuthology.orchestra.run.smithi003.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:55:26.164 INFO:teuthology.orchestra.run.smithi003.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:55:26.165 INFO:teuthology.orchestra.run.smithi003.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:55:27.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:27 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:27.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:27 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:27.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:27 ntpd[18482]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-06T14:55:27.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:27 ntpd[18482]: can't open /var/log/ntpstats/rawstats.20240906: Permission denied 2024-09-06T14:55:27.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:27 ntpd[18482]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-06T14:55:27.141 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:27 ntpd[18482]: can't open /var/log/ntpstats/peerstats.20240906: Permission denied 2024-09-06T14:55:27.142 INFO:teuthology.orchestra.run.smithi120.stdout: 6 Sep 14:55:27 ntpd[18482]: ntpd: time slew +0.000131 s 2024-09-06T14:55:27.142 INFO:teuthology.orchestra.run.smithi120.stdout:ntpd: time slew +0.000131s 2024-09-06T14:55:27.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:27 ntpd[18482]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-06T14:55:27.142 INFO:teuthology.orchestra.run.smithi120.stderr: 6 Sep 14:55:27 ntpd[18482]: can't open /var/log/ntpstats/loopstats.20240906: Permission denied 2024-09-06T14:55:27.201 INFO:teuthology.orchestra.run.smithi120.stdout: remote refid st t when poll reach delay offset jitter 2024-09-06T14:55:27.201 INFO:teuthology.orchestra.run.smithi120.stdout:============================================================================== 2024-09-06T14:55:27.201 INFO:teuthology.orchestra.run.smithi120.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:55:27.201 INFO:teuthology.orchestra.run.smithi120.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:55:27.201 INFO:teuthology.orchestra.run.smithi120.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:55:27.202 INFO:teuthology.orchestra.run.smithi120.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-06T14:55:27.202 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-06T14:55:27.213 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-06T14:55:27.214 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:55:27.214 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:55:27.220 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-06T14:55:27.220 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/vg_nvme/lv_1 2024-09-06T14:55:27.266 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-06T14:55:27.266 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:55:27.266 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 883 Links: 1 2024-09-06T14:55:27.266 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:55:27.266 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-06 14:51:44.182055420 +0000 2024-09-06T14:55:27.267 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-06 14:51:43.922057743 +0000 2024-09-06T14:55:27.267 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-06 14:51:43.922057743 +0000 2024-09-06T14:55:27.267 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: - 2024-09-06T14:55:27.267 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-06T14:55:27.321 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-06T14:55:27.321 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-06T14:55:27.321 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.00045932 s, 1.1 MB/s 2024-09-06T14:55:27.323 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-06T14:55:27.371 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/vg_nvme/lv_2 2024-09-06T14:55:27.418 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-06T14:55:27.418 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:55:27.418 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 895 Links: 1 2024-09-06T14:55:27.418 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:55:27.418 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-06 14:51:44.674051025 +0000 2024-09-06T14:55:27.418 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-06 14:51:44.410053383 +0000 2024-09-06T14:55:27.418 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-06 14:51:44.410053383 +0000 2024-09-06T14:55:27.418 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: - 2024-09-06T14:55:27.419 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-06T14:55:27.472 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-06T14:55:27.473 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-06T14:55:27.473 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000437154 s, 1.2 MB/s 2024-09-06T14:55:27.474 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-06T14:55:27.523 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/vg_nvme/lv_3 2024-09-06T14:55:27.570 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-06T14:55:27.570 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:55:27.570 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 913 Links: 1 2024-09-06T14:55:27.570 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:55:27.570 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-06 14:51:45.194046381 +0000 2024-09-06T14:55:27.570 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-06 14:51:44.918048846 +0000 2024-09-06T14:55:27.571 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-06 14:51:44.918048846 +0000 2024-09-06T14:55:27.571 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: - 2024-09-06T14:55:27.571 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-06T14:55:27.624 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-06T14:55:27.624 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-06T14:55:27.624 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000400455 s, 1.3 MB/s 2024-09-06T14:55:27.626 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-06T14:55:27.675 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/vg_nvme/lv_4 2024-09-06T14:55:27.722 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-06T14:55:27.722 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:55:27.722 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 934 Links: 1 2024-09-06T14:55:27.722 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:55:27.722 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-06 14:51:45.718041700 +0000 2024-09-06T14:55:27.722 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-06 14:51:45.454044058 +0000 2024-09-06T14:55:27.722 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-06 14:51:45.454044058 +0000 2024-09-06T14:55:27.722 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: - 2024-09-06T14:55:27.723 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-06T14:55:27.777 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-06T14:55:27.777 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-06T14:55:27.777 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000387371 s, 1.3 MB/s 2024-09-06T14:55:27.778 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-06T14:55:27.828 DEBUG:teuthology.orchestra.run.smithi003:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-09-06T14:55:27.958 INFO:teuthology.orchestra.run.smithi003.stdout:loop 2024-09-06T14:55:27.959 INFO:tasks.nvme_loop:Connecting nvme_loop smithi003:/dev/vg_nvme/lv_1... 2024-09-06T14:55:27.960 DEBUG:teuthology.orchestra.run.smithi003:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-09-06T14:55:27.980 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-06T14:55:28.000 INFO:teuthology.orchestra.run.smithi003.stdout:/dev/vg_nvme/lv_11 2024-09-06T14:55:28.018 INFO:tasks.nvme_loop:Connecting nvme_loop smithi003:/dev/vg_nvme/lv_2... 2024-09-06T14:55:28.018 DEBUG:teuthology.orchestra.run.smithi003:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-09-06T14:55:28.078 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-06T14:55:28.101 INFO:teuthology.orchestra.run.smithi003.stdout:/dev/vg_nvme/lv_21 2024-09-06T14:55:28.120 INFO:tasks.nvme_loop:Connecting nvme_loop smithi003:/dev/vg_nvme/lv_3... 2024-09-06T14:55:28.120 DEBUG:teuthology.orchestra.run.smithi003:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-09-06T14:55:28.177 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-06T14:55:28.199 INFO:teuthology.orchestra.run.smithi003.stdout:/dev/vg_nvme/lv_31 2024-09-06T14:55:28.217 INFO:tasks.nvme_loop:Connecting nvme_loop smithi003:/dev/vg_nvme/lv_4... 2024-09-06T14:55:28.217 DEBUG:teuthology.orchestra.run.smithi003:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-09-06T14:55:28.278 INFO:teuthology.orchestra.run.smithi003.stdout:1 2024-09-06T14:55:28.298 INFO:teuthology.orchestra.run.smithi003.stdout:/dev/vg_nvme/lv_41 2024-09-06T14:55:28.315 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:55:28.315 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:55:28.362 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme list -o json 2024-09-06T14:55:28.415 INFO:teuthology.orchestra.run.smithi003.stdout:{ 2024-09-06T14:55:28.415 INFO:teuthology.orchestra.run.smithi003.stdout: "Devices" : [ 2024-09-06T14:55:28.415 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-06T14:55:28.415 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-06T14:55:28.415 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware" : "8DV101H0", 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "Index" : 0, 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber" : "INTEL SSDPEDMD400G4", 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber" : "CVFT5330009Z400BGN" 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: }, 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "Index" : 1, 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber" : "Linux", 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber" : "d75342fc0123b2074a17" 2024-09-06T14:55:28.416 INFO:teuthology.orchestra.run.smithi003.stdout: }, 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "Index" : 2, 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber" : "Linux", 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber" : "7f1d443094804e5bcba4" 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: }, 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "Index" : 3, 2024-09-06T14:55:28.417 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber" : "Linux", 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber" : "a0e1ae62a303e28025bc" 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: }, 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: { 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: "Index" : 4, 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: "ModelNumber" : "Linux", 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: "SerialNumber" : "4abb7bf354bb4b260b96" 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: } 2024-09-06T14:55:28.418 INFO:teuthology.orchestra.run.smithi003.stdout: ] 2024-09-06T14:55:28.419 INFO:teuthology.orchestra.run.smithi003.stdout:} 2024-09-06T14:55:28.419 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-06T14:55:28.419 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:55:28.420 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/scratch_devs 2024-09-06T14:55:28.474 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T14:55:28.474 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:55:28.480 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-06T14:55:28.481 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_1 2024-09-06T14:55:28.527 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-06T14:55:28.527 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:55:28.527 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 870 Links: 1 2024-09-06T14:55:28.528 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:55:28.528 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-06 14:51:33.020480270 +0000 2024-09-06T14:55:28.528 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-06 14:51:32.744482735 +0000 2024-09-06T14:55:28.528 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-06 14:51:32.744482735 +0000 2024-09-06T14:55:28.528 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-06T14:55:28.528 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-06T14:55:28.582 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-06T14:55:28.582 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-06T14:55:28.582 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000445898 s, 1.1 MB/s 2024-09-06T14:55:28.583 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-06T14:55:28.632 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_2 2024-09-06T14:55:28.679 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-06T14:55:28.679 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:55:28.679 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 886 Links: 1 2024-09-06T14:55:28.679 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:55:28.679 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-06 14:51:33.528475733 +0000 2024-09-06T14:55:28.679 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-06 14:51:33.272478020 +0000 2024-09-06T14:55:28.679 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-06 14:51:33.272478020 +0000 2024-09-06T14:55:28.679 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-06T14:55:28.680 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-06T14:55:28.733 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-06T14:55:28.733 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-06T14:55:28.733 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000360021 s, 1.4 MB/s 2024-09-06T14:55:28.734 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-06T14:55:28.784 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_3 2024-09-06T14:55:28.830 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-06T14:55:28.831 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:55:28.831 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 903 Links: 1 2024-09-06T14:55:28.831 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:55:28.831 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-06 14:51:34.000471516 +0000 2024-09-06T14:55:28.831 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-06 14:51:33.772473554 +0000 2024-09-06T14:55:28.831 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-06 14:51:33.772473554 +0000 2024-09-06T14:55:28.831 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-06T14:55:28.831 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-06T14:55:28.885 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-06T14:55:28.886 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-06T14:55:28.886 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000373725 s, 1.4 MB/s 2024-09-06T14:55:28.887 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-06T14:55:28.936 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_4 2024-09-06T14:55:28.983 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-06T14:55:28.983 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-06T14:55:28.983 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 926 Links: 1 2024-09-06T14:55:28.983 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-06T14:55:28.983 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-06 14:51:34.500467051 +0000 2024-09-06T14:55:28.983 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-06 14:51:34.244469337 +0000 2024-09-06T14:55:28.983 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-06 14:51:34.244469337 +0000 2024-09-06T14:55:28.983 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-06T14:55:28.983 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-06T14:55:29.037 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-06T14:55:29.037 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-06T14:55:29.037 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000375756 s, 1.4 MB/s 2024-09-06T14:55:29.038 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-06T14:55:29.088 DEBUG:teuthology.orchestra.run.smithi120:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-09-06T14:55:29.215 INFO:teuthology.orchestra.run.smithi120.stdout:loop 2024-09-06T14:55:29.216 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_1... 2024-09-06T14:55:29.217 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-09-06T14:55:29.235 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-09-06T14:55:29.253 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_11 2024-09-06T14:55:29.270 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_2... 2024-09-06T14:55:29.270 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-09-06T14:55:29.330 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-09-06T14:55:29.349 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_21 2024-09-06T14:55:29.366 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_3... 2024-09-06T14:55:29.366 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-09-06T14:55:29.426 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-09-06T14:55:29.445 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_31 2024-09-06T14:55:29.463 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_4... 2024-09-06T14:55:29.463 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-09-06T14:55:29.531 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-09-06T14:55:29.553 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_41 2024-09-06T14:55:29.570 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T14:55:29.570 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T14:55:29.614 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme list -o json 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout:{ 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: "Devices" : [ 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "8DV101F0", 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 0, 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "INTEL SSDPEDMD400G4", 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "PHFT620400XV400BGN" 2024-09-06T14:55:29.669 INFO:teuthology.orchestra.run.smithi120.stdout: }, 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 1, 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "Linux", 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "e806d83733d53a9a361f" 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: }, 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:55:29.670 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 2, 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "Linux", 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "0977e36b783be4346d18" 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: }, 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 3, 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "Linux", 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "a2a05a908082c8e468de" 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: }, 2024-09-06T14:55:29.671 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-06T14:55:29.672 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-06T14:55:29.672 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "5.15.0-1", 2024-09-06T14:55:29.672 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 4, 2024-09-06T14:55:29.672 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "Linux", 2024-09-06T14:55:29.672 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-06T14:55:29.672 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "c25511e389a0ffeccfb9" 2024-09-06T14:55:29.672 INFO:teuthology.orchestra.run.smithi120.stdout: } 2024-09-06T14:55:29.672 INFO:teuthology.orchestra.run.smithi120.stdout: ] 2024-09-06T14:55:29.673 INFO:teuthology.orchestra.run.smithi120.stdout:} 2024-09-06T14:55:29.673 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-06T14:55:29.673 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T14:55:29.673 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/scratch_devs 2024-09-06T14:55:29.726 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-06T14:55:29.824 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '8b38c33cecf4b0b7a9b3116eb9089e21e444ac73'} 2024-09-06T14:55:29.824 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:55:29.824 INFO:tasks.cephadm:Cluster fsid is 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:55:29.825 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-06T14:55:29.825 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-06T14:55:29.825 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi003': '172.21.15.3', 'mon.smithi120': '172.21.15.120'} 2024-09-06T14:55:29.825 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-06T14:55:29.825 DEBUG:teuthology.orchestra.run.smithi003:> sudo hostname $(hostname -s) 2024-09-06T14:55:29.841 DEBUG:teuthology.orchestra.run.smithi120:> sudo hostname $(hostname -s) 2024-09-06T14:55:29.856 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-06T14:55:29.856 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:55:30.005 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '8b38c33cecf4b0b7a9b3116eb9089e21e444ac73', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/82769/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4704-g8b38c33c', 'node_name': '172.21.2.9+braggi09', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-4704-g8b38c33c-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-04 19:43:57.745461', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-athakkar-testing-2024-09-04-1837', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-06T14:55:30.149 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref wip-athakkar-testing-2024-09-04-1837, sha1 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:55:30.150 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-06T14:55:30.150 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-06T14:55:30.151 DEBUG:teuthology.orchestra.run.smithi003:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-06T14:55:30.644 INFO:teuthology.orchestra.run.smithi003.stdout:-rw-rw-r-- 1 ubuntu ubuntu 810214 Sep 6 14:55 /home/ubuntu/cephtest/cephadm 2024-09-06T14:55:30.644 DEBUG:teuthology.orchestra.run.smithi120:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-athakkar-testing-2024-09-04-1837/8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-06T14:55:31.104 INFO:teuthology.orchestra.run.smithi120.stdout:-rw-rw-r-- 1 ubuntu ubuntu 810214 Sep 6 14:55 /home/ubuntu/cephtest/cephadm 2024-09-06T14:55:31.104 DEBUG:teuthology.orchestra.run.smithi003:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-06T14:55:31.113 DEBUG:teuthology.orchestra.run.smithi120:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-06T14:55:31.150 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 on all hosts... 2024-09-06T14:55:31.151 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 pull 2024-09-06T14:55:31.159 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 pull 2024-09-06T14:55:31.348 INFO:teuthology.orchestra.run.smithi120.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73... 2024-09-06T14:55:31.348 INFO:teuthology.orchestra.run.smithi003.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73... 2024-09-06T14:57:01.667 INFO:teuthology.orchestra.run.smithi120.stdout:{ 2024-09-06T14:57:01.667 INFO:teuthology.orchestra.run.smithi120.stdout: "ceph_version": "ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev)", 2024-09-06T14:57:01.667 INFO:teuthology.orchestra.run.smithi120.stdout: "image_id": "1c45aca0610a312233aa2613f7b416b2884ae14779f1297041485ab28f1c8110", 2024-09-06T14:57:01.667 INFO:teuthology.orchestra.run.smithi120.stdout: "repo_digests": [ 2024-09-06T14:57:01.668 INFO:teuthology.orchestra.run.smithi120.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:c86edd48571ab22373283621eb9feebce9df9c291d4164cfc4df1a09493e1f30" 2024-09-06T14:57:01.668 INFO:teuthology.orchestra.run.smithi120.stdout: ] 2024-09-06T14:57:01.668 INFO:teuthology.orchestra.run.smithi120.stdout:} 2024-09-06T14:57:03.568 INFO:teuthology.orchestra.run.smithi003.stdout:{ 2024-09-06T14:57:03.569 INFO:teuthology.orchestra.run.smithi003.stdout: "ceph_version": "ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev)", 2024-09-06T14:57:03.569 INFO:teuthology.orchestra.run.smithi003.stdout: "image_id": "1c45aca0610a312233aa2613f7b416b2884ae14779f1297041485ab28f1c8110", 2024-09-06T14:57:03.569 INFO:teuthology.orchestra.run.smithi003.stdout: "repo_digests": [ 2024-09-06T14:57:03.569 INFO:teuthology.orchestra.run.smithi003.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:c86edd48571ab22373283621eb9feebce9df9c291d4164cfc4df1a09493e1f30" 2024-09-06T14:57:03.569 INFO:teuthology.orchestra.run.smithi003.stdout: ] 2024-09-06T14:57:03.569 INFO:teuthology.orchestra.run.smithi003.stdout:} 2024-09-06T14:57:03.618 DEBUG:teuthology.orchestra.run.smithi003:> sudo mkdir -p /etc/ceph 2024-09-06T14:57:03.632 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /etc/ceph 2024-09-06T14:57:03.647 DEBUG:teuthology.orchestra.run.smithi003:> sudo chmod 777 /etc/ceph 2024-09-06T14:57:03.685 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 777 /etc/ceph 2024-09-06T14:57:03.700 INFO:tasks.cephadm:Writing seed config... 2024-09-06T14:57:03.702 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-06T14:57:03.702 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-06T14:57:03.702 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-06T14:57:03.702 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-06T14:57:03.702 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-06T14:57:03.702 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-06T14:57:03.702 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-06T14:57:03.703 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-06T14:57:03.703 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:57:03.703 DEBUG:teuthology.orchestra.run.smithi003:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-06T14:57:03.734 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 0f20e064-6c60-11ef-bce4-c7b262605968 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-06T14:57:03.734 DEBUG:teuthology.orchestra.run.smithi003:mon.smithi003> sudo journalctl -f -n 0 -u ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi003.service 2024-09-06T14:57:03.779 INFO:tasks.cephadm:Bootstrapping... 2024-09-06T14:57:03.779 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 -v bootstrap --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-ip 172.21.15.3 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:57:04.010 INFO:teuthology.orchestra.run.smithi003.stdout:-------------------------------------------------------------------------------- 2024-09-06T14:57:04.010 INFO:teuthology.orchestra.run.smithi003.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73', '-v', 'bootstrap', '--fsid', '0f20e064-6c60-11ef-bce4-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-ip', '172.21.15.3', '--skip-admin-label'] 2024-09-06T14:57:04.010 INFO:teuthology.orchestra.run.smithi003.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-06T14:57:04.011 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying podman|docker is present... 2024-09-06T14:57:04.011 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying lvm2 is present... 2024-09-06T14:57:04.011 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying time synchronization is in place... 2024-09-06T14:57:04.017 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-06T14:57:04.017 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-06T14:57:04.022 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-06T14:57:04.022 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-06T14:57:04.025 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-06T14:57:04.025 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-06T14:57:04.029 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-06T14:57:04.029 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-06T14:57:04.032 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-06T14:57:04.033 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout masked 2024-09-06T14:57:04.036 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-06T14:57:04.036 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-06T14:57:04.042 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-06T14:57:04.042 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-06T14:57:04.047 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-06T14:57:04.047 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-06T14:57:04.054 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout enabled 2024-09-06T14:57:04.059 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout active 2024-09-06T14:57:04.059 INFO:teuthology.orchestra.run.smithi003.stdout:Unit ntp.service is enabled and running 2024-09-06T14:57:04.059 INFO:teuthology.orchestra.run.smithi003.stdout:Repeating the final host check... 2024-09-06T14:57:04.060 INFO:teuthology.orchestra.run.smithi003.stdout:docker (/usr/bin/docker) is present 2024-09-06T14:57:04.060 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl is present 2024-09-06T14:57:04.060 INFO:teuthology.orchestra.run.smithi003.stdout:lvcreate is present 2024-09-06T14:57:04.063 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-06T14:57:04.063 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-06T14:57:04.067 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-06T14:57:04.067 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-06T14:57:04.072 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-06T14:57:04.073 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-06T14:57:04.075 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-06T14:57:04.075 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-06T14:57:04.079 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-06T14:57:04.079 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout masked 2024-09-06T14:57:04.083 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-06T14:57:04.083 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-06T14:57:04.087 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-06T14:57:04.087 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-06T14:57:04.090 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-06T14:57:04.090 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout inactive 2024-09-06T14:57:04.095 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout enabled 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stdout active 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:Unit ntp.service is enabled and running 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:Host looks OK 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:Cluster fsid: 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:Acquiring lock 139778997955664 on /run/cephadm/0f20e064-6c60-11ef-bce4-c7b262605968.lock 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:Lock 139778997955664 acquired on /run/cephadm/0f20e064-6c60-11ef-bce4-c7b262605968.lock 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying IP 172.21.15.3 port 3300 ... 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying IP 172.21.15.3 port 6789 ... 2024-09-06T14:57:04.100 INFO:teuthology.orchestra.run.smithi003.stdout:Base mon IP(s) is [172.21.15.3:3300, 172.21.15.3:6789], mon addrv is [v2:172.21.15.3:3300,v1:172.21.15.3:6789] 2024-09-06T14:57:04.102 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-09-06T14:57:04.103 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-06T14:57:04.103 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.3 2024-09-06T14:57:04.105 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-06T14:57:04.105 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-06T14:57:04.105 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1789sec hoplimit 64 pref medium 2024-09-06T14:57:04.107 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-06T14:57:04.107 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-06T14:57:04.107 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-06T14:57:04.107 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-06T14:57:04.107 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:15dc/64 scope link 2024-09-06T14:57:04.108 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-06T14:57:04.108 INFO:teuthology.orchestra.run.smithi003.stdout:Mon IP `172.21.15.3` is in CIDR network `172.21.0.0/20` 2024-09-06T14:57:04.108 INFO:teuthology.orchestra.run.smithi003.stdout:Mon IP `172.21.15.3` is in CIDR network `172.21.0.0/20` 2024-09-06T14:57:04.108 INFO:teuthology.orchestra.run.smithi003.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-06T14:57:04.109 INFO:teuthology.orchestra.run.smithi003.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-06T14:57:04.109 INFO:teuthology.orchestra.run.smithi003.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73... 2024-09-06T14:57:04.327 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/docker: stdout 8b38c33cecf4b0b7a9b3116eb9089e21e444ac73: Pulling from ceph-ci/ceph 2024-09-06T14:57:04.327 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/docker: stdout Digest: sha256:c86edd48571ab22373283621eb9feebce9df9c291d4164cfc4df1a09493e1f30 2024-09-06T14:57:04.327 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:57:04.327 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 2024-09-06T14:57:05.875 INFO:teuthology.orchestra.run.smithi003.stdout:ceph: stdout ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev) 2024-09-06T14:57:05.875 INFO:teuthology.orchestra.run.smithi003.stdout:Ceph version: ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev) 2024-09-06T14:57:05.875 INFO:teuthology.orchestra.run.smithi003.stdout:Extracting ceph user uid/gid from container image... 2024-09-06T14:57:07.247 INFO:teuthology.orchestra.run.smithi003.stdout:stat: stdout 167 167 2024-09-06T14:57:07.247 INFO:teuthology.orchestra.run.smithi003.stdout:Creating initial keys... 2024-09-06T14:57:08.585 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-authtool: stdout AQBEGNtm4zM9BBAAatc47ov3FDoBchJps0JAUA== 2024-09-06T14:57:09.891 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-authtool: stdout AQBFGNtmc6R/FxAA0rRSHPCPbLrhKgDhbcVWQw== 2024-09-06T14:57:11.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-authtool: stdout AQBGGNtmI1RkMxAAp90ujc9RHMTrzzPaHZSdcg== 2024-09-06T14:57:11.381 INFO:teuthology.orchestra.run.smithi003.stdout:Creating initial monmap... 2024-09-06T14:57:12.937 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-06T14:57:12.937 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-06T14:57:12.937 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:12.937 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-06T14:57:12.938 INFO:teuthology.orchestra.run.smithi003.stdout:monmaptool for smithi003 [v2:172.21.15.3:3300,v1:172.21.15.3:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-06T14:57:12.938 INFO:teuthology.orchestra.run.smithi003.stdout:setting min_mon_release = quincy 2024-09-06T14:57:12.938 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: set fsid to 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:12.938 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-06T14:57:12.938 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:57:12.938 INFO:teuthology.orchestra.run.smithi003.stdout:Creating mon... 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.824+0000 7f6526506c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 1 imported monmap: 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr created 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.370 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 0 /usr/bin/ceph-mon: set fsid to 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Git sha 0 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Compile date 2024-09-04 13:52:53 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: DB SUMMARY 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: DB Session ID: 7OC7PLESIUS0DETKWYS4 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi003/store.db dir, Total Num: 0, files: 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi003/store.db: 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.371 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.error_if_exists: 0 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.create_if_missing: 1 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.env: 0x559447831160 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.info_log: 0x559449624f00 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.statistics: (nil) 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.use_fsync: 0 2024-09-06T14:57:14.372 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.db_log_dir: 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.wal_dir: 2024-09-06T14:57:14.373 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.write_buffer_manager: 0x55944961d540 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-06T14:57:14.374 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.unordered_write: 0 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.row_cache: None 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.wal_filter: None 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.two_write_queues: 0 2024-09-06T14:57:14.375 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.wal_compression: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.atomic_flush: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-06T14:57:14.376 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_open_files: -1 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-06T14:57:14.377 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Compression algorithms supported: 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: kZSTD supported: 0 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: kXpressCompression supported: 0 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: kZlibCompression supported: 1 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-06T14:57:14.378 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.828+0000 7f6526506c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi003/store.db/MANIFEST-000001 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.merge_operator: 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_filter: None 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x559449624b20) 2024-09-06T14:57:14.379 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55944960c850 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-06T14:57:14.380 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-06T14:57:14.381 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression: NoCompression 2024-09-06T14:57:14.382 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.num_levels: 7 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-06T14:57:14.383 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-06T14:57:14.384 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-06T14:57:14.385 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-06T14:57:14.386 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.bloom_locality: 0 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-06T14:57:14.387 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-06T14:57:14.388 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.ttl: 2592000 2024-09-06T14:57:14.388 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-06T14:57:14.388 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-06T14:57:14.388 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-06T14:57:14.388 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.enable_blob_files: false 2024-09-06T14:57:14.388 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.min_blob_size: 0 2024-09-06T14:57:14.388 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-06T14:57:14.388 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-06T14:57:14.393 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-06T14:57:14.393 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-06T14:57:14.393 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-06T14:57:14.393 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-06T14:57:14.393 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi003/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 926b46a0-a59b-491f-b432-54b9320330ab 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.832+0000 7f6526506c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.836+0000 7f6526506c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55944963ce00 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.836+0000 7f6526506c80 4 rocksdb: DB pointer 0x55944971e000 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.836+0000 7f651dc91640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.836+0000 7f651dc91640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-06T14:57:14.394 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-06T14:57:14.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T14:57:14.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55944960c850#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.836+0000 7f6526506c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.836+0000 7f6526506c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-06T14:57:13.836+0000 7f6526506c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi003 for mon.smithi003 2024-09-06T14:57:14.397 INFO:teuthology.orchestra.run.smithi003.stdout:create mon.smithi003 on 2024-09-06T14:57:14.846 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-06T14:57:15.082 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-0f20e064-6c60-11ef-bce4-c7b262605968.target -> /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968.target. 2024-09-06T14:57:15.083 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-0f20e064-6c60-11ef-bce4-c7b262605968.target -> /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968.target. 2024-09-06T14:57:15.456 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi003 2024-09-06T14:57:15.456 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi003.service: Unit ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi003.service not loaded. 2024-09-06T14:57:15.658 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968.target.wants/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi003.service -> /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service. 2024-09-06T14:57:15.668 INFO:teuthology.orchestra.run.smithi003.stdout:firewalld does not appear to be present 2024-09-06T14:57:15.669 INFO:teuthology.orchestra.run.smithi003.stdout:Not possible to enable service . firewalld.service is not available 2024-09-06T14:57:15.669 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mon to start... 2024-09-06T14:57:15.669 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mon... 2024-09-06T14:57:15.776 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:15 smithi003 systemd[1]: Started Ceph mon.smithi003 for 0f20e064-6c60-11ef-bce4-c7b262605968. 2024-09-06T14:57:17.785 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:17 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.606517+0000 mon.smithi003 (mon.0) 0 : cluster [INF] mkfs 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:17.785 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:17 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.606517+0000 mon.smithi003 (mon.0) 0 : cluster [INF] mkfs 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:17.785 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:17 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.585319+0000 mon.smithi003 (mon.0) 1 : cluster [INF] mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-06T14:57:17.785 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:17 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.585319+0000 mon.smithi003 (mon.0) 1 : cluster [INF] mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout cluster: 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout id: 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout services: 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi003 (age 0.3421s) 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-06T14:57:18.559 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:18.560 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout data: 2024-09-06T14:57:18.560 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-06T14:57:18.560 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-06T14:57:18.560 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-06T14:57:18.560 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout pgs: 2024-09-06T14:57:18.560 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:18.560 INFO:teuthology.orchestra.run.smithi003.stdout:mon is available 2024-09-06T14:57:18.560 INFO:teuthology.orchestra.run.smithi003.stdout:Assimilating anything we can from ceph.conf... 2024-09-06T14:57:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605245+0000 mon.smithi003 (mon.0) 2 : cluster [INF] mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-06T14:57:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605245+0000 mon.smithi003 (mon.0) 2 : cluster [INF] mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-06T14:57:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605528+0000 mon.smithi003 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-06T14:57:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605528+0000 mon.smithi003 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-06T14:57:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605544+0000 mon.smithi003 (mon.0) 4 : cluster [DBG] fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605544+0000 mon.smithi003 (mon.0) 4 : cluster [DBG] fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605555+0000 mon.smithi003 (mon.0) 5 : cluster [DBG] last_changed 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605555+0000 mon.smithi003 (mon.0) 5 : cluster [DBG] last_changed 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605569+0000 mon.smithi003 (mon.0) 6 : cluster [DBG] created 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605569+0000 mon.smithi003 (mon.0) 6 : cluster [DBG] created 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605587+0000 mon.smithi003 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605587+0000 mon.smithi003 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605600+0000 mon.smithi003 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605600+0000 mon.smithi003 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605615+0000 mon.smithi003 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.605615+0000 mon.smithi003 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.608485+0000 mon.smithi003 (mon.0) 10 : cluster [DBG] fsmap 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.608485+0000 mon.smithi003 (mon.0) 10 : cluster [DBG] fsmap 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.611282+0000 mon.smithi003 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-06T14:57:18.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.611282+0000 mon.smithi003 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-06T14:57:18.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.611744+0000 mon.smithi003 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-06T14:57:18.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: cluster 2024-09-06T14:57:17.611744+0000 mon.smithi003 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-06T14:57:18.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: audit 2024-09-06T14:57:17.947309+0000 mon.smithi003 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.3:0/1433271679' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-06T14:57:18.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:18 smithi003 bash[19411]: audit 2024-09-06T14:57:17.947309+0000 mon.smithi003 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.3:0/1433271679' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-06T14:57:20.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:19 smithi003 bash[19411]: audit 2024-09-06T14:57:19.748071+0000 mon.smithi003 (mon.0) 14 : audit [INF] from='client.? 172.21.15.3:0/616803835' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-06T14:57:20.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:19 smithi003 bash[19411]: audit 2024-09-06T14:57:19.748071+0000 mon.smithi003 (mon.0) 14 : audit [INF] from='client.? 172.21.15.3:0/616803835' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-06T14:57:20.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:19 smithi003 bash[19411]: audit 2024-09-06T14:57:19.752803+0000 mon.smithi003 (mon.0) 15 : audit [INF] from='client.? 172.21.15.3:0/616803835' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-06T14:57:20.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:19 smithi003 bash[19411]: audit 2024-09-06T14:57:19.752803+0000 mon.smithi003 (mon.0) 15 : audit [INF] from='client.? 172.21.15.3:0/616803835' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-06T14:57:20.249 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:20.249 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [global] 2024-09-06T14:57:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout fsid = 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-06T14:57:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.3:3300,v1:172.21.15.3:6789] 2024-09-06T14:57:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-06T14:57:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-06T14:57:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-06T14:57:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-06T14:57:20.250 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-06T14:57:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-06T14:57:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [osd] 2024-09-06T14:57:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-06T14:57:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-06T14:57:20.251 INFO:teuthology.orchestra.run.smithi003.stdout:Generating new minimal ceph.conf... 2024-09-06T14:57:21.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:21 smithi003 bash[19411]: audit 2024-09-06T14:57:21.283317+0000 mon.smithi003 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.3:0/1322448075' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:57:21.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:21 smithi003 bash[19411]: audit 2024-09-06T14:57:21.283317+0000 mon.smithi003 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.3:0/1322448075' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:57:21.753 INFO:teuthology.orchestra.run.smithi003.stdout:Restarting the monitor... 2024-09-06T14:57:22.115 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:21 smithi003 systemd[1]: Stopping Ceph mon.smithi003 for 0f20e064-6c60-11ef-bce4-c7b262605968... 2024-09-06T14:57:22.115 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:21 smithi003 bash[19411]: debug 2024-09-06T14:57:21.896+0000 7f39d2268640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi003 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-06T14:57:22.115 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:21 smithi003 bash[19411]: debug 2024-09-06T14:57:21.896+0000 7f39d2268640 -1 mon.smithi003@0(leader) e1 *** Got Signal Terminated *** 2024-09-06T14:57:22.594 INFO:teuthology.orchestra.run.smithi003.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-06T14:57:22.733 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:22 smithi003 bash[19798]: ceph-0f20e064-6c60-11ef-bce4-c7b262605968-mon-smithi003 2024-09-06T14:57:22.733 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:22 smithi003 bash[19859]: Error response from daemon: No such container: ceph-0f20e064-6c60-11ef-bce4-c7b262605968-mon-smithi003 2024-09-06T14:57:22.733 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:22 smithi003 systemd[1]: ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi003.service: Deactivated successfully. 2024-09-06T14:57:22.733 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:22 smithi003 systemd[1]: Stopped Ceph mon.smithi003 for 0f20e064-6c60-11ef-bce4-c7b262605968. 2024-09-06T14:57:22.733 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:22 smithi003 systemd[1]: Started Ceph mon.smithi003 for 0f20e064-6c60-11ef-bce4-c7b262605968. 2024-09-06T14:57:24.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.008+0000 7fed00205c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-06T14:57:24.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.008+0000 7fed00205c80 0 ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev), process ceph-mon, pid 7 2024-09-06T14:57:24.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.008+0000 7fed00205c80 0 pidfile_write: ignore empty --pid-file 2024-09-06T14:57:24.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 0 load: jerasure load: lrc 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Git sha 0 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Compile date 2024-09-04 13:52:53 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: DB SUMMARY 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: DB Session ID: P36U3HRKSWO5HS1M9O0B 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: CURRENT file: CURRENT 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi003/store.db dir, Total Num: 1, files: 000008.sst 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi003/store.db: 000009.log size: 89042 ; 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.error_if_exists: 0 2024-09-06T14:57:24.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.create_if_missing: 0 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.env: 0x55720427d160 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.info_log: 0x557204b55a60 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.statistics: (nil) 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.use_fsync: 0 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-06T14:57:24.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.db_log_dir: 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.wal_dir: 2024-09-06T14:57:24.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.write_buffer_manager: 0x557204b58e60 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-06T14:57:24.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-06T14:57:24.261 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-06T14:57:24.261 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-06T14:57:24.263 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-06T14:57:24.263 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-06T14:57:24.263 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.unordered_write: 0 2024-09-06T14:57:24.263 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-06T14:57:24.263 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-06T14:57:24.263 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-06T14:57:24.264 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-06T14:57:24.264 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.row_cache: None 2024-09-06T14:57:24.264 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.wal_filter: None 2024-09-06T14:57:24.264 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-06T14:57:24.265 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-06T14:57:24.265 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.two_write_queues: 0 2024-09-06T14:57:24.265 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-06T14:57:24.265 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.wal_compression: 0 2024-09-06T14:57:24.265 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.atomic_flush: 0 2024-09-06T14:57:24.265 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-06T14:57:24.265 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-06T14:57:24.266 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_open_files: -1 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-06T14:57:24.267 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Compression algorithms supported: 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: kZSTD supported: 0 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: kXpressCompression supported: 0 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: kZlibCompression supported: 1 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-06T14:57:24.268 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi003/store.db/MANIFEST-000010 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.merge_operator: 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_filter: None 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x557204b556e0) 2024-09-06T14:57:24.269 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cache_index_and_filter_blocks: 1 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: pin_top_level_index_and_filter: 1 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: index_type: 0 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: data_block_index_type: 0 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: index_shortening: 1 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: data_block_hash_table_util_ratio: 0.750000 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: checksum: 4 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: no_block_cache: 0 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: block_cache: 0x557204b4a850 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: block_cache_name: BinnedLRUCache 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: block_cache_options: 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: capacity : 536870912 2024-09-06T14:57:24.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: num_shard_bits : 4 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: strict_capacity_limit : 0 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: high_pri_pool_ratio: 0.000 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: block_cache_compressed: (nil) 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: persistent_cache: (nil) 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: block_size: 4096 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: block_size_deviation: 10 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: block_restart_interval: 16 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: index_block_restart_interval: 1 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: metadata_block_size: 4096 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: partition_filters: 0 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: use_delta_encoding: 1 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: filter_policy: bloomfilter 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: whole_key_filtering: 1 2024-09-06T14:57:24.271 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: verify_compression: 0 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: read_amp_bytes_per_bit: 0 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: format_version: 5 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: enable_index_compression: 1 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: block_align: 0 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: max_auto_readahead_size: 262144 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: prepopulate_block_cache: 0 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: initial_auto_readahead_size: 8192 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: num_file_reads_for_auto_readahead: 2 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression: NoCompression 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-06T14:57:24.272 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.num_levels: 7 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:57:24.273 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-06T14:57:24.274 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-06T14:57:24.275 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-06T14:57:24.276 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.bloom_locality: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.ttl: 2592000 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-06T14:57:24.277 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.enable_blob_files: false 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.min_blob_size: 0 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi003/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-06T14:57:24.278 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 926b46a0-a59b-491f-b432-54b9320330ab 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725634644015674, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.012+0000 7fed00205c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725634644016695, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85818, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 257, "table_properties": {"data_size": 83958, "index_size": 244, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10002, "raw_average_key_size": 46, "raw_value_size": 78207, "raw_average_value_size": 362, "num_data_blocks": 11, "num_entries": 216, "num_filter_entries": 216, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1725634644, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "926b46a0-a59b-491f-b432-54b9320330ab", "db_session_id": "P36U3HRKSWO5HS1M9O0B", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725634644016830, "job": 1, "event": "recovery_finished"} 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi003/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x557204b78e00 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 4 rocksdb: DB pointer 0x557204c7c000 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fecf5fcd640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fecf5fcd640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: ** DB Stats ** 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:57:24.279 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: ** Compaction Stats [default] ** 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: L0 2/0 85.71 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Sum 2/0 85.71 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: ** Compaction Stats [default] ** 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-06T14:57:24.280 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 132.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: AddFile(Total Files): cumulative 0, interval 0 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: AddFile(Keys): cumulative 0, interval 0 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Cumulative compaction: 0.00 GB write, 21.25 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Interval compaction: 0.00 GB write, 21.25 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Block cache BinnedLRUCache@0x557204b4a850#7 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2024-09-06T14:57:24.281 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: ** File Read Latency Histogram By Level [default] ** 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 0 starting mon.smithi003 rank 0 at public addrs [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] at bind addrs [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi003 fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 1 mon.smithi003@-1(???) e1 preinit fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 0 mon.smithi003@-1(???).mds e1 new map 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 0 mon.smithi003@-1(???).mds e1 print_map 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: e1 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: btime 2024-09-06T14:57:17:606023+0000 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: legacy client fscid: -1 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: No filesystems configured 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 0 mon.smithi003@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-06T14:57:24.282 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 0 mon.smithi003@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 0 mon.smithi003@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 0 mon.smithi003@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: debug 2024-09-06T14:57:24.016+0000 7fed00205c80 1 mon.smithi003@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045427+0000 mon.smithi003 (mon.0) 1 : cluster [INF] mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045427+0000 mon.smithi003 (mon.0) 1 : cluster [INF] mon.smithi003 is new leader, mons smithi003 in quorum (ranks 0) 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045499+0000 mon.smithi003 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045499+0000 mon.smithi003 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045510+0000 mon.smithi003 (mon.0) 3 : cluster [DBG] fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045510+0000 mon.smithi003 (mon.0) 3 : cluster [DBG] fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045521+0000 mon.smithi003 (mon.0) 4 : cluster [DBG] last_changed 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045521+0000 mon.smithi003 (mon.0) 4 : cluster [DBG] last_changed 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045529+0000 mon.smithi003 (mon.0) 5 : cluster [DBG] created 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:24.283 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045529+0000 mon.smithi003 (mon.0) 5 : cluster [DBG] created 2024-09-06T14:57:12.273337+0000 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045547+0000 mon.smithi003 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045547+0000 mon.smithi003 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045554+0000 mon.smithi003 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045554+0000 mon.smithi003 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045560+0000 mon.smithi003 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045560+0000 mon.smithi003 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045978+0000 mon.smithi003 (mon.0) 9 : cluster [DBG] fsmap 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.045978+0000 mon.smithi003 (mon.0) 9 : cluster [DBG] fsmap 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.046008+0000 mon.smithi003 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.046008+0000 mon.smithi003 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.046421+0000 mon.smithi003 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-06T14:57:24.284 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 bash[19900]: cluster 2024-09-06T14:57:24.046421+0000 mon.smithi003 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-06T14:57:24.715 INFO:teuthology.orchestra.run.smithi003.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-06T14:57:24.733 INFO:teuthology.orchestra.run.smithi003.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:57:24.733 INFO:teuthology.orchestra.run.smithi003.stdout:Creating mgr... 2024-09-06T14:57:24.734 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-06T14:57:24.734 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-06T14:57:24.734 INFO:teuthology.orchestra.run.smithi003.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-06T14:57:25.022 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:24 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:57:25.032 INFO:teuthology.orchestra.run.smithi003.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mgr.smithi003.ghjsjw 2024-09-06T14:57:25.032 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mgr.smithi003.ghjsjw.service: Unit ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mgr.smithi003.ghjsjw.service not loaded. 2024-09-06T14:57:25.228 INFO:teuthology.orchestra.run.smithi003.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968.target.wants/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mgr.smithi003.ghjsjw.service -> /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service. 2024-09-06T14:57:25.235 INFO:teuthology.orchestra.run.smithi003.stdout:firewalld does not appear to be present 2024-09-06T14:57:25.235 INFO:teuthology.orchestra.run.smithi003.stdout:Not possible to enable service . firewalld.service is not available 2024-09-06T14:57:25.235 INFO:teuthology.orchestra.run.smithi003.stdout:firewalld does not appear to be present 2024-09-06T14:57:25.235 INFO:teuthology.orchestra.run.smithi003.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-06T14:57:25.235 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mgr to start... 2024-09-06T14:57:25.235 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mgr... 2024-09-06T14:57:25.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:25 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:57:25.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:25 smithi003 bash[19900]: audit 2024-09-06T14:57:24.246954+0000 mon.smithi003 (mon.0) 12 : audit [INF] from='client.? 172.21.15.3:0/3224821756' entity='client.admin' 2024-09-06T14:57:25.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:25 smithi003 bash[19900]: audit 2024-09-06T14:57:24.246954+0000 mon.smithi003 (mon.0) 12 : audit [INF] from='client.? 172.21.15.3:0/3224821756' entity='client.admin' 2024-09-06T14:57:27.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:26 smithi003 bash[19900]: audit 2024-09-06T14:57:26.859695+0000 mon.smithi003 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.3:0/1536267358' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:57:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:26 smithi003 bash[19900]: audit 2024-09-06T14:57:26.859695+0000 mon.smithi003 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.3:0/1536267358' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:57:27.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:27.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:57:27.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsid": "0f20e064-6c60-11ef-bce4-c7b262605968", 2024-09-06T14:57:27.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "health": { 2024-09-06T14:57:27.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-06T14:57:27.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-06T14:57:27.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-06T14:57:27.395 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 0 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "smithi003" 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:27.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-06T14:57:27.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:27.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-06T14:57:27.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-06T14:57:27.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-06T14:57:27.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-06T14:57:27.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-06T14:57:27.397 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-06T14:57:27.400 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:27.400 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-06T14:57:27.400 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-06T14:57:27.400 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-06T14:57:27.400 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-06T14:57:27.400 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-06T14:57:27.400 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "btime": "2024-09-06T14:57:17:606023+0000", 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-06T14:57:27.401 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "restful" 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-06T14:57:27.402 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:27.403 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modified": "2024-09-06T14:57:17.607053+0000", 2024-09-06T14:57:27.403 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:57:27.403 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:27.403 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-06T14:57:27.403 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:57:27.403 INFO:teuthology.orchestra.run.smithi003.stdout:mgr not available, waiting (1/15)... 2024-09-06T14:57:30.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:30 smithi003 bash[19900]: audit 2024-09-06T14:57:30.526851+0000 mon.smithi003 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.3:0/1189688802' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:57:30.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:30 smithi003 bash[19900]: audit 2024-09-06T14:57:30.526851+0000 mon.smithi003 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.3:0/1189688802' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:57:31.039 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:31.039 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:57:31.039 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsid": "0f20e064-6c60-11ef-bce4-c7b262605968", 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "health": { 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 0 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "smithi003" 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-06T14:57:31.040 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-06T14:57:31.041 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:31.042 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "btime": "2024-09-06T14:57:17:606023+0000", 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "restful" 2024-09-06T14:57:31.043 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modified": "2024-09-06T14:57:17.607053+0000", 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-06T14:57:31.044 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:57:31.045 INFO:teuthology.orchestra.run.smithi003.stdout:mgr not available, waiting (2/15)... 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: cluster 2024-09-06T14:57:32.883606+0000 mon.smithi003 (mon.0) 15 : cluster [INF] Activating manager daemon smithi003.ghjsjw 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: cluster 2024-09-06T14:57:32.883606+0000 mon.smithi003 (mon.0) 15 : cluster [INF] Activating manager daemon smithi003.ghjsjw 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: cluster 2024-09-06T14:57:32.891806+0000 mon.smithi003 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi003.ghjsjw(active, starting, since 0.00854139s) 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: cluster 2024-09-06T14:57:32.891806+0000 mon.smithi003 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi003.ghjsjw(active, starting, since 0.00854139s) 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.893407+0000 mon.smithi003 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.893407+0000 mon.smithi003 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.893589+0000 mon.smithi003 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.893589+0000 mon.smithi003 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.893689+0000 mon.smithi003 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.893689+0000 mon.smithi003 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:57:33.124 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.893792+0000 mon.smithi003 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.893792+0000 mon.smithi003 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.894513+0000 mon.smithi003 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi003.ghjsjw", "id": "smithi003.ghjsjw"} : dispatch 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.894513+0000 mon.smithi003 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi003.ghjsjw", "id": "smithi003.ghjsjw"} : dispatch 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: cluster 2024-09-06T14:57:32.919287+0000 mon.smithi003 (mon.0) 22 : cluster [INF] Manager daemon smithi003.ghjsjw is now available 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: cluster 2024-09-06T14:57:32.919287+0000 mon.smithi003 (mon.0) 22 : cluster [INF] Manager daemon smithi003.ghjsjw is now available 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.931327+0000 mon.smithi003 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.931327+0000 mon.smithi003 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.933733+0000 mon.smithi003 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/trash_purge_schedule"} : dispatch 2024-09-06T14:57:33.125 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:32 smithi003 bash[19900]: audit 2024-09-06T14:57:32.933733+0000 mon.smithi003 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/trash_purge_schedule"} : dispatch 2024-09-06T14:57:34.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:33 smithi003 bash[19900]: audit 2024-09-06T14:57:32.935636+0000 mon.smithi003 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:34.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:33 smithi003 bash[19900]: audit 2024-09-06T14:57:32.935636+0000 mon.smithi003 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:34.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:33 smithi003 bash[19900]: audit 2024-09-06T14:57:32.947537+0000 mon.smithi003 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:34.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:33 smithi003 bash[19900]: audit 2024-09-06T14:57:32.947537+0000 mon.smithi003 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:34.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:33 smithi003 bash[19900]: audit 2024-09-06T14:57:32.953107+0000 mon.smithi003 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:34.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:33 smithi003 bash[19900]: audit 2024-09-06T14:57:32.953107+0000 mon.smithi003 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.3:0/915867355' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:34.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:33 smithi003 bash[19900]: cluster 2024-09-06T14:57:33.899515+0000 mon.smithi003 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi003.ghjsjw(active, since 1.01625s) 2024-09-06T14:57:34.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:33 smithi003 bash[19900]: cluster 2024-09-06T14:57:33.899515+0000 mon.smithi003 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi003.ghjsjw(active, since 1.01625s) 2024-09-06T14:57:35.071 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:35.071 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:57:35.071 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsid": "0f20e064-6c60-11ef-bce4-c7b262605968", 2024-09-06T14:57:35.071 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "health": { 2024-09-06T14:57:35.071 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 0 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "smithi003" 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-06T14:57:35.072 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-06T14:57:35.073 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "btime": "2024-09-06T14:57:17:606023+0000", 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:35.074 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "restful" 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ], 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "modified": "2024-09-06T14:57:17.607053+0000", 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout }, 2024-09-06T14:57:35.075 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-06T14:57:35.076 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:57:35.076 INFO:teuthology.orchestra.run.smithi003.stdout:mgr is available 2024-09-06T14:57:35.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:34 smithi003 bash[19900]: audit 2024-09-06T14:57:34.576259+0000 mon.smithi003 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.3:0/2115669840' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:57:35.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:34 smithi003 bash[19900]: audit 2024-09-06T14:57:34.576259+0000 mon.smithi003 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.3:0/2115669840' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-06T14:57:36.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:35 smithi003 bash[19900]: cluster 2024-09-06T14:57:34.958003+0000 mon.smithi003 (mon.0) 30 : cluster [DBG] mgrmap e4: smithi003.ghjsjw(active, since 2s) 2024-09-06T14:57:36.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:35 smithi003 bash[19900]: cluster 2024-09-06T14:57:34.958003+0000 mon.smithi003 (mon.0) 30 : cluster [DBG] mgrmap e4: smithi003.ghjsjw(active, since 2s) 2024-09-06T14:57:36.990 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:36.990 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [global] 2024-09-06T14:57:36.990 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout fsid = 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:36.990 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-06T14:57:36.990 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.3:3300,v1:172.21.15.3:6789] 2024-09-06T14:57:36.990 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-06T14:57:36.990 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-06T14:57:36.990 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-06T14:57:36.991 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-06T14:57:36.991 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:36.992 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-06T14:57:36.992 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-06T14:57:36.992 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 2024-09-06T14:57:36.992 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout [osd] 2024-09-06T14:57:36.992 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-06T14:57:36.992 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-06T14:57:36.992 INFO:teuthology.orchestra.run.smithi003.stdout:Enabling cephadm module... 2024-09-06T14:57:37.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:36 smithi003 bash[19900]: audit 2024-09-06T14:57:36.451398+0000 mon.smithi003 (mon.0) 31 : audit [INF] from='client.? 172.21.15.3:0/4202289709' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-06T14:57:37.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:36 smithi003 bash[19900]: audit 2024-09-06T14:57:36.451398+0000 mon.smithi003 (mon.0) 31 : audit [INF] from='client.? 172.21.15.3:0/4202289709' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-06T14:57:38.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:38 smithi003 bash[19900]: audit 2024-09-06T14:57:38.462182+0000 mon.smithi003 (mon.0) 32 : audit [INF] from='client.? 172.21.15.3:0/2511793478' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-06T14:57:38.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:38 smithi003 bash[19900]: audit 2024-09-06T14:57:38.462182+0000 mon.smithi003 (mon.0) 32 : audit [INF] from='client.? 172.21.15.3:0/2511793478' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-06T14:57:39.894 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:39 smithi003 bash[19900]: audit 2024-09-06T14:57:38.514252+0000 mon.smithi003 (mon.0) 33 : audit [INF] from='client.? 172.21.15.3:0/2511793478' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-06T14:57:39.894 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:39 smithi003 bash[19900]: audit 2024-09-06T14:57:38.514252+0000 mon.smithi003 (mon.0) 33 : audit [INF] from='client.? 172.21.15.3:0/2511793478' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-06T14:57:39.894 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:39 smithi003 bash[19900]: cluster 2024-09-06T14:57:38.519703+0000 mon.smithi003 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi003.ghjsjw(active, since 5s) 2024-09-06T14:57:39.894 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:39 smithi003 bash[19900]: cluster 2024-09-06T14:57:38.519703+0000 mon.smithi003 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi003.ghjsjw(active, since 5s) 2024-09-06T14:57:40.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:40 smithi003 bash[19900]: audit 2024-09-06T14:57:40.479302+0000 mon.smithi003 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.3:0/853902309' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-06T14:57:40.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:40 smithi003 bash[19900]: audit 2024-09-06T14:57:40.479302+0000 mon.smithi003 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.3:0/853902309' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-06T14:57:41.069 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:57:41.070 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-06T14:57:41.070 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-06T14:57:41.070 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "active_name": "smithi003.ghjsjw", 2024-09-06T14:57:41.070 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-06T14:57:41.070 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:57:41.070 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for the mgr to restart... 2024-09-06T14:57:41.070 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mgr epoch 5... 2024-09-06T14:57:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.742732+0000 mon.smithi003 (mon.0) 36 : cluster [INF] Active manager daemon smithi003.ghjsjw restarted 2024-09-06T14:57:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.742732+0000 mon.smithi003 (mon.0) 36 : cluster [INF] Active manager daemon smithi003.ghjsjw restarted 2024-09-06T14:57:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.743011+0000 mon.smithi003 (mon.0) 37 : cluster [INF] Activating manager daemon smithi003.ghjsjw 2024-09-06T14:57:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.743011+0000 mon.smithi003 (mon.0) 37 : cluster [INF] Activating manager daemon smithi003.ghjsjw 2024-09-06T14:57:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.752121+0000 mon.smithi003 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.752121+0000 mon.smithi003 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.752567+0000 mon.smithi003 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi003.ghjsjw(active, starting, since 0.00964609s) 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.752567+0000 mon.smithi003 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi003.ghjsjw(active, starting, since 0.00964609s) 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.753399+0000 mon.smithi003 (mon.0) 40 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.753399+0000 mon.smithi003 (mon.0) 40 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.755770+0000 mon.smithi003 (mon.0) 41 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi003.ghjsjw", "id": "smithi003.ghjsjw"} : dispatch 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.755770+0000 mon.smithi003 (mon.0) 41 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi003.ghjsjw", "id": "smithi003.ghjsjw"} : dispatch 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.756926+0000 mon.smithi003 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.756926+0000 mon.smithi003 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:57:45.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.757154+0000 mon.smithi003 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:57:45.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.757154+0000 mon.smithi003 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:57:45.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.757363+0000 mon.smithi003 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:57:45.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: audit 2024-09-06T14:57:44.757363+0000 mon.smithi003 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:57:45.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.782884+0000 mon.smithi003 (mon.0) 45 : cluster [INF] Manager daemon smithi003.ghjsjw is now available 2024-09-06T14:57:45.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:44 smithi003 bash[19900]: cluster 2024-09-06T14:57:44.782884+0000 mon.smithi003 (mon.0) 45 : cluster [INF] Manager daemon smithi003.ghjsjw is now available 2024-09-06T14:57:46.459 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:57:46.460 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-06T14:57:46.460 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-06T14:57:46.460 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:57:46.460 INFO:teuthology.orchestra.run.smithi003.stdout:mgr epoch 5 is available 2024-09-06T14:57:46.460 INFO:teuthology.orchestra.run.smithi003.stdout:Setting orchestrator backend to cephadm... 2024-09-06T14:57:46.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:46 smithi003 bash[19900]: audit 2024-09-06T14:57:45.750872+0000 mgr.smithi003.ghjsjw (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-06T14:57:46.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:46 smithi003 bash[19900]: audit 2024-09-06T14:57:45.750872+0000 mgr.smithi003.ghjsjw (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-06T14:57:46.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:46 smithi003 bash[19900]: cluster 2024-09-06T14:57:45.753436+0000 mon.smithi003 (mon.0) 46 : cluster [DBG] mgrmap e7: smithi003.ghjsjw(active, since 1.01052s) 2024-09-06T14:57:46.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:46 smithi003 bash[19900]: cluster 2024-09-06T14:57:45.753436+0000 mon.smithi003 (mon.0) 46 : cluster [DBG] mgrmap e7: smithi003.ghjsjw(active, since 1.01052s) 2024-09-06T14:57:46.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:46 smithi003 bash[19900]: audit 2024-09-06T14:57:45.768555+0000 mgr.smithi003.ghjsjw (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-06T14:57:46.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:46 smithi003 bash[19900]: audit 2024-09-06T14:57:45.768555+0000 mgr.smithi003.ghjsjw (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.307717+0000 mon.smithi003 (mon.0) 47 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.307717+0000 mon.smithi003 (mon.0) 47 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.310274+0000 mon.smithi003 (mon.0) 48 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.310274+0000 mon.smithi003 (mon.0) 48 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: cephadm 2024-09-06T14:57:47.310701+0000 mgr.smithi003.ghjsjw (mgr.14116) 4 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: cephadm 2024-09-06T14:57:47.310701+0000 mgr.smithi003.ghjsjw (mgr.14116) 4 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.313170+0000 mon.smithi003 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.313170+0000 mon.smithi003 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.315702+0000 mon.smithi003 (mon.0) 50 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.315702+0000 mon.smithi003 (mon.0) 50 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.319491+0000 mon.smithi003 (mon.0) 51 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.319491+0000 mon.smithi003 (mon.0) 51 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.322442+0000 mon.smithi003 (mon.0) 52 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.322442+0000 mon.smithi003 (mon.0) 52 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.334209+0000 mon.smithi003 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.334209+0000 mon.smithi003 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.337352+0000 mon.smithi003 (mon.0) 54 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/trash_purge_schedule"} : dispatch 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.337352+0000 mon.smithi003 (mon.0) 54 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/trash_purge_schedule"} : dispatch 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.745175+0000 mon.smithi003 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.745175+0000 mon.smithi003 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:48.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.756718+0000 mon.smithi003 (mon.0) 56 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:57:48.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:48 smithi003 bash[19900]: audit 2024-09-06T14:57:47.756718+0000 mon.smithi003 (mon.0) 56 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:57:49.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:49 smithi003 bash[19900]: audit 2024-09-06T14:57:47.738184+0000 mgr.smithi003.ghjsjw (mgr.14116) 5 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:49.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:49 smithi003 bash[19900]: audit 2024-09-06T14:57:47.738184+0000 mgr.smithi003.ghjsjw (mgr.14116) 5 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:49.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:49 smithi003 bash[19900]: audit 2024-09-06T14:57:48.825161+0000 mon.smithi003 (mon.0) 57 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:57:49.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:49 smithi003 bash[19900]: audit 2024-09-06T14:57:48.825161+0000 mon.smithi003 (mon.0) 57 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:57:50.148 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-06T14:57:50.148 INFO:teuthology.orchestra.run.smithi003.stdout:Generating ssh key... 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.598587+0000 mgr.smithi003.ghjsjw (mgr.14116) 6 : cephadm [INF] [06/Sep/2024:14:57:48] ENGINE Bus STARTING 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.598587+0000 mgr.smithi003.ghjsjw (mgr.14116) 6 : cephadm [INF] [06/Sep/2024:14:57:48] ENGINE Bus STARTING 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.723316+0000 mgr.smithi003.ghjsjw (mgr.14116) 7 : cephadm [INF] [06/Sep/2024:14:57:48] ENGINE Serving on https://172.21.15.3:7150 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.723316+0000 mgr.smithi003.ghjsjw (mgr.14116) 7 : cephadm [INF] [06/Sep/2024:14:57:48] ENGINE Serving on https://172.21.15.3:7150 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.726480+0000 mgr.smithi003.ghjsjw (mgr.14116) 8 : cephadm [ERR] [06/Sep/2024:14:57:48] ENGINE Error in HTTPServer.serve 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: Traceback (most recent call last): 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: self._connections.run(self.expiration_interval) 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: self._run(expiration_interval) 2024-09-06T14:57:50.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: s = self.context.wrap_socket( 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: return self.sslsocket_class._create( 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: self.do_handshake() 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: self._sslobj.do_handshake() 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.726480+0000 mgr.smithi003.ghjsjw (mgr.14116) 8 : cephadm [ERR] [06/Sep/2024:14:57:48] ENGINE Error in HTTPServer.serve 2024-09-06T14:57:50.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: Traceback (most recent call last): 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: self._connections.run(self.expiration_interval) 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: self._run(expiration_interval) 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: s = self.context.wrap_socket( 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:57:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: return self.sslsocket_class._create( 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: self.do_handshake() 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: self._sslobj.do_handshake() 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.824404+0000 mgr.smithi003.ghjsjw (mgr.14116) 9 : cephadm [INF] [06/Sep/2024:14:57:48] ENGINE Serving on http://172.21.15.3:8765 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.824404+0000 mgr.smithi003.ghjsjw (mgr.14116) 9 : cephadm [INF] [06/Sep/2024:14:57:48] ENGINE Serving on http://172.21.15.3:8765 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.824514+0000 mgr.smithi003.ghjsjw (mgr.14116) 10 : cephadm [INF] [06/Sep/2024:14:57:48] ENGINE Bus STARTED 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cephadm 2024-09-06T14:57:48.824514+0000 mgr.smithi003.ghjsjw (mgr.14116) 10 : cephadm [INF] [06/Sep/2024:14:57:48] ENGINE Bus STARTED 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cluster 2024-09-06T14:57:49.311522+0000 mon.smithi003 (mon.0) 58 : cluster [DBG] mgrmap e8: smithi003.ghjsjw(active, since 4s) 2024-09-06T14:57:50.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:50 smithi003 bash[19900]: cluster 2024-09-06T14:57:49.311522+0000 mon.smithi003 (mon.0) 58 : cluster [DBG] mgrmap e8: smithi003.ghjsjw(active, since 4s) 2024-09-06T14:57:51.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:51 smithi003 bash[19900]: audit 2024-09-06T14:57:49.582105+0000 mgr.smithi003.ghjsjw (mgr.14116) 11 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:51.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:51 smithi003 bash[19900]: audit 2024-09-06T14:57:49.582105+0000 mgr.smithi003.ghjsjw (mgr.14116) 11 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:52.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:52 smithi003 bash[19900]: audit 2024-09-06T14:57:51.475792+0000 mgr.smithi003.ghjsjw (mgr.14116) 12 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:52.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:52 smithi003 bash[19900]: audit 2024-09-06T14:57:51.475792+0000 mgr.smithi003.ghjsjw (mgr.14116) 12 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:52.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:52 smithi003 bash[19900]: cephadm 2024-09-06T14:57:51.476182+0000 mgr.smithi003.ghjsjw (mgr.14116) 13 : cephadm [INF] Generating ssh key... 2024-09-06T14:57:52.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:52 smithi003 bash[19900]: cephadm 2024-09-06T14:57:51.476182+0000 mgr.smithi003.ghjsjw (mgr.14116) 13 : cephadm [INF] Generating ssh key... 2024-09-06T14:57:52.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:52 smithi003 bash[19900]: audit 2024-09-06T14:57:51.756006+0000 mon.smithi003 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:52.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:52 smithi003 bash[19900]: audit 2024-09-06T14:57:51.756006+0000 mon.smithi003 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:52.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:52 smithi003 bash[19900]: audit 2024-09-06T14:57:51.758602+0000 mon.smithi003 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:52.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:52 smithi003 bash[19900]: audit 2024-09-06T14:57:51.758602+0000 mon.smithi003 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:57:54.137 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtBcisR+ZZ3PEkMZVhf6YetdTKv5Prd5j/4Q3Qz/Ik99qFXB6qi8YHqDxCiLFcy/AkuodP8Mw+rnxckCOAxqzhbj6PCJ3WERIeP1pfPT2l2KvhDXtj+S6hOqFmrLG5K4FNKIpgBlUDbjoxbA5LoEMe/gRXdr1OUxgzW8broUY0fgDaUCiF7fxKT79CK2VX35LPU9dggEiAhq+x0h5S0gFgbmdqFpF2/LSiP3pq8Jms/C5z1/0alYTW8vOD2vFkdpcuNqSxGfyrePjwn5Yg6uI69riUg9sKvdvgKvQjkq5HTi3FeEhpGf35GVzgk4rz3jYTpm3t6Y84xUwehQY82CvO2REYlZbIMwfop8CEcrYWUgZWQmwHv1fzRzoq9Gr2Nfkt45xG40tlOFiYbvHZXg7VAk+k346MCUVv40z82N9NVzVP0/vn4dC7Jj4z641Dh2ijXVPNLrKDXHJ66SOytB9PT3ueDDJG7yV5nElHZxSjoS31BvrJsRgWo1tVBLKrACE= ceph-0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:57:54.137 INFO:teuthology.orchestra.run.smithi003.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-06T14:57:54.137 INFO:teuthology.orchestra.run.smithi003.stdout:Adding key to root@localhost authorized_keys... 2024-09-06T14:57:54.137 INFO:teuthology.orchestra.run.smithi003.stdout:Adding host smithi003... 2024-09-06T14:57:54.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:54 smithi003 bash[19900]: audit 2024-09-06T14:57:53.631856+0000 mgr.smithi003.ghjsjw (mgr.14116) 14 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:54.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:54 smithi003 bash[19900]: audit 2024-09-06T14:57:53.631856+0000 mgr.smithi003.ghjsjw (mgr.14116) 14 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:55.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:55 smithi003 bash[19900]: audit 2024-09-06T14:57:55.491247+0000 mgr.smithi003.ghjsjw (mgr.14116) 15 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi003", "addr": "172.21.15.3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:55.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:55 smithi003 bash[19900]: audit 2024-09-06T14:57:55.491247+0000 mgr.smithi003.ghjsjw (mgr.14116) 15 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi003", "addr": "172.21.15.3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:57:57.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:57 smithi003 bash[19900]: cephadm 2024-09-06T14:57:56.784530+0000 mgr.smithi003.ghjsjw (mgr.14116) 16 : cephadm [INF] Deploying cephadm binary to smithi003 2024-09-06T14:57:57.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:57:57 smithi003 bash[19900]: cephadm 2024-09-06T14:57:56.784530+0000 mgr.smithi003.ghjsjw (mgr.14116) 16 : cephadm [INF] Deploying cephadm binary to smithi003 2024-09-06T14:58:01.102 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Added host 'smithi003' with addr '172.21.15.3' 2024-09-06T14:58:01.103 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying mon service with default placement... 2024-09-06T14:58:01.537 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:01 smithi003 bash[19900]: audit 2024-09-06T14:58:00.390311+0000 mon.smithi003 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:01.537 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:01 smithi003 bash[19900]: audit 2024-09-06T14:58:00.390311+0000 mon.smithi003 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:01.537 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:01 smithi003 bash[19900]: cephadm 2024-09-06T14:58:00.390729+0000 mgr.smithi003.ghjsjw (mgr.14116) 17 : cephadm [INF] Added host smithi003 2024-09-06T14:58:01.537 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:01 smithi003 bash[19900]: cephadm 2024-09-06T14:58:00.390729+0000 mgr.smithi003.ghjsjw (mgr.14116) 17 : cephadm [INF] Added host smithi003 2024-09-06T14:58:01.537 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:01 smithi003 bash[19900]: audit 2024-09-06T14:58:00.391148+0000 mon.smithi003 (mon.0) 62 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:58:01.538 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:01 smithi003 bash[19900]: audit 2024-09-06T14:58:00.391148+0000 mon.smithi003 (mon.0) 62 : audit [DBG] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:58:03.726 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-06T14:58:03.726 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying mgr service with default placement... 2024-09-06T14:58:04.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:04 smithi003 bash[19900]: audit 2024-09-06T14:58:03.020009+0000 mgr.smithi003.ghjsjw (mgr.14116) 18 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:04.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:04 smithi003 bash[19900]: audit 2024-09-06T14:58:03.020009+0000 mgr.smithi003.ghjsjw (mgr.14116) 18 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:04.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:04 smithi003 bash[19900]: cephadm 2024-09-06T14:58:03.021246+0000 mgr.smithi003.ghjsjw (mgr.14116) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-06T14:58:04.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:04 smithi003 bash[19900]: cephadm 2024-09-06T14:58:03.021246+0000 mgr.smithi003.ghjsjw (mgr.14116) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-06T14:58:04.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:04 smithi003 bash[19900]: audit 2024-09-06T14:58:03.023640+0000 mon.smithi003 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:04.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:04 smithi003 bash[19900]: audit 2024-09-06T14:58:03.023640+0000 mon.smithi003 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:04.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:04 smithi003 bash[19900]: audit 2024-09-06T14:58:03.728215+0000 mon.smithi003 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:04.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:04 smithi003 bash[19900]: audit 2024-09-06T14:58:03.728215+0000 mon.smithi003 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:05.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:05 smithi003 bash[19900]: audit 2024-09-06T14:58:04.305812+0000 mon.smithi003 (mon.0) 65 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:05 smithi003 bash[19900]: audit 2024-09-06T14:58:04.305812+0000 mon.smithi003 (mon.0) 65 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:05 smithi003 bash[19900]: cluster 2024-09-06T14:58:04.758698+0000 mon.smithi003 (mon.0) 66 : cluster [WRN] Health check failed: Module 'volumes' has failed dependency: No module named 'ceph.fs' (MGR_MODULE_DEPENDENCY) 2024-09-06T14:58:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:05 smithi003 bash[19900]: cluster 2024-09-06T14:58:04.758698+0000 mon.smithi003 (mon.0) 66 : cluster [WRN] Health check failed: Module 'volumes' has failed dependency: No module named 'ceph.fs' (MGR_MODULE_DEPENDENCY) 2024-09-06T14:58:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:05 smithi003 bash[19900]: audit 2024-09-06T14:58:05.191091+0000 mon.smithi003 (mon.0) 67 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:05 smithi003 bash[19900]: audit 2024-09-06T14:58:05.191091+0000 mon.smithi003 (mon.0) 67 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:05.749 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-06T14:58:05.749 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying crash service with default placement... 2024-09-06T14:58:06.560 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:06 smithi003 bash[19900]: cluster 2024-09-06T14:58:04.758352+0000 mgr.smithi003.ghjsjw (mgr.14116) 20 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:06.560 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:06 smithi003 bash[19900]: cluster 2024-09-06T14:58:04.758352+0000 mgr.smithi003.ghjsjw (mgr.14116) 20 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:06.561 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:06 smithi003 bash[19900]: audit 2024-09-06T14:58:05.183942+0000 mgr.smithi003.ghjsjw (mgr.14116) 21 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:06.561 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:06 smithi003 bash[19900]: audit 2024-09-06T14:58:05.183942+0000 mgr.smithi003.ghjsjw (mgr.14116) 21 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:06.561 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:06 smithi003 bash[19900]: cephadm 2024-09-06T14:58:05.185953+0000 mgr.smithi003.ghjsjw (mgr.14116) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-06T14:58:06.561 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:06 smithi003 bash[19900]: cephadm 2024-09-06T14:58:05.185953+0000 mgr.smithi003.ghjsjw (mgr.14116) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-06T14:58:07.523 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-06T14:58:07.523 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying ceph-exporter service with default placement... 2024-09-06T14:58:08.302 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:08 smithi003 bash[19900]: cluster 2024-09-06T14:58:06.758772+0000 mgr.smithi003.ghjsjw (mgr.14116) 23 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:08.302 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:08 smithi003 bash[19900]: cluster 2024-09-06T14:58:06.758772+0000 mgr.smithi003.ghjsjw (mgr.14116) 23 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:08.303 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:08 smithi003 bash[19900]: audit 2024-09-06T14:58:07.041615+0000 mgr.smithi003.ghjsjw (mgr.14116) 24 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:08.303 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:08 smithi003 bash[19900]: audit 2024-09-06T14:58:07.041615+0000 mgr.smithi003.ghjsjw (mgr.14116) 24 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:08.303 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:08 smithi003 bash[19900]: cephadm 2024-09-06T14:58:07.043673+0000 mgr.smithi003.ghjsjw (mgr.14116) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-06T14:58:08.303 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:08 smithi003 bash[19900]: cephadm 2024-09-06T14:58:07.043673+0000 mgr.smithi003.ghjsjw (mgr.14116) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-06T14:58:08.303 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:08 smithi003 bash[19900]: audit 2024-09-06T14:58:07.048309+0000 mon.smithi003 (mon.0) 68 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:08.303 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:08 smithi003 bash[19900]: audit 2024-09-06T14:58:07.048309+0000 mon.smithi003 (mon.0) 68 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:09.356 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-06T14:58:09.357 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying prometheus service with default placement... 2024-09-06T14:58:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:09 smithi003 bash[19900]: cluster 2024-09-06T14:58:08.759204+0000 mgr.smithi003.ghjsjw (mgr.14116) 26 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:09 smithi003 bash[19900]: cluster 2024-09-06T14:58:08.759204+0000 mgr.smithi003.ghjsjw (mgr.14116) 26 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:09 smithi003 bash[19900]: audit 2024-09-06T14:58:08.804806+0000 mgr.smithi003.ghjsjw (mgr.14116) 27 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:09 smithi003 bash[19900]: audit 2024-09-06T14:58:08.804806+0000 mgr.smithi003.ghjsjw (mgr.14116) 27 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:09 smithi003 bash[19900]: cephadm 2024-09-06T14:58:08.807495+0000 mgr.smithi003.ghjsjw (mgr.14116) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-06T14:58:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:09 smithi003 bash[19900]: cephadm 2024-09-06T14:58:08.807495+0000 mgr.smithi003.ghjsjw (mgr.14116) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-06T14:58:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:09 smithi003 bash[19900]: audit 2024-09-06T14:58:08.811471+0000 mon.smithi003 (mon.0) 69 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:10.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:09 smithi003 bash[19900]: audit 2024-09-06T14:58:08.811471+0000 mon.smithi003 (mon.0) 69 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:11.279 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-06T14:58:11.279 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying grafana service with default placement... 2024-09-06T14:58:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:11 smithi003 bash[19900]: audit 2024-09-06T14:58:10.726509+0000 mgr.smithi003.ghjsjw (mgr.14116) 29 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:11 smithi003 bash[19900]: audit 2024-09-06T14:58:10.726509+0000 mgr.smithi003.ghjsjw (mgr.14116) 29 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:11 smithi003 bash[19900]: cephadm 2024-09-06T14:58:10.728554+0000 mgr.smithi003.ghjsjw (mgr.14116) 30 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-06T14:58:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:11 smithi003 bash[19900]: cephadm 2024-09-06T14:58:10.728554+0000 mgr.smithi003.ghjsjw (mgr.14116) 30 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-06T14:58:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:11 smithi003 bash[19900]: audit 2024-09-06T14:58:10.732270+0000 mon.smithi003 (mon.0) 70 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:11 smithi003 bash[19900]: audit 2024-09-06T14:58:10.732270+0000 mon.smithi003 (mon.0) 70 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:11 smithi003 bash[19900]: cluster 2024-09-06T14:58:10.759628+0000 mgr.smithi003.ghjsjw (mgr.14116) 31 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:11 smithi003 bash[19900]: cluster 2024-09-06T14:58:10.759628+0000 mgr.smithi003.ghjsjw (mgr.14116) 31 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:13.268 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-06T14:58:13.268 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying node-exporter service with default placement... 2024-09-06T14:58:13.371 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:12 smithi003 bash[19900]: audit 2024-09-06T14:58:11.966584+0000 mon.smithi003 (mon.0) 71 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:13.371 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:12 smithi003 bash[19900]: audit 2024-09-06T14:58:11.966584+0000 mon.smithi003 (mon.0) 71 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:13.371 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:12 smithi003 bash[19900]: audit 2024-09-06T14:58:12.702409+0000 mon.smithi003 (mon.0) 72 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:13.371 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:12 smithi003 bash[19900]: audit 2024-09-06T14:58:12.702409+0000 mon.smithi003 (mon.0) 72 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:14.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:14 smithi003 bash[19900]: audit 2024-09-06T14:58:12.696636+0000 mgr.smithi003.ghjsjw (mgr.14116) 32 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:14.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:14 smithi003 bash[19900]: audit 2024-09-06T14:58:12.696636+0000 mgr.smithi003.ghjsjw (mgr.14116) 32 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:14.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:14 smithi003 bash[19900]: cephadm 2024-09-06T14:58:12.699367+0000 mgr.smithi003.ghjsjw (mgr.14116) 33 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-06T14:58:14.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:14 smithi003 bash[19900]: cephadm 2024-09-06T14:58:12.699367+0000 mgr.smithi003.ghjsjw (mgr.14116) 33 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-06T14:58:14.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:14 smithi003 bash[19900]: cluster 2024-09-06T14:58:12.759896+0000 mgr.smithi003.ghjsjw (mgr.14116) 34 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:14.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:14 smithi003 bash[19900]: cluster 2024-09-06T14:58:12.759896+0000 mgr.smithi003.ghjsjw (mgr.14116) 34 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:14.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:14 smithi003 bash[19900]: audit 2024-09-06T14:58:13.070214+0000 mon.smithi003 (mon.0) 73 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:14.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:14 smithi003 bash[19900]: audit 2024-09-06T14:58:13.070214+0000 mon.smithi003 (mon.0) 73 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:15.226 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-06T14:58:15.226 INFO:teuthology.orchestra.run.smithi003.stdout:Deploying alertmanager service with default placement... 2024-09-06T14:58:16.005 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:15 smithi003 bash[19900]: audit 2024-09-06T14:58:14.713052+0000 mgr.smithi003.ghjsjw (mgr.14116) 35 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:16.005 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:15 smithi003 bash[19900]: audit 2024-09-06T14:58:14.713052+0000 mgr.smithi003.ghjsjw (mgr.14116) 35 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:16.005 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:15 smithi003 bash[19900]: cephadm 2024-09-06T14:58:14.715527+0000 mgr.smithi003.ghjsjw (mgr.14116) 36 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-06T14:58:16.006 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:15 smithi003 bash[19900]: cephadm 2024-09-06T14:58:14.715527+0000 mgr.smithi003.ghjsjw (mgr.14116) 36 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-06T14:58:16.006 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:15 smithi003 bash[19900]: audit 2024-09-06T14:58:14.719922+0000 mon.smithi003 (mon.0) 74 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:16.006 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:15 smithi003 bash[19900]: audit 2024-09-06T14:58:14.719922+0000 mon.smithi003 (mon.0) 74 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:16.006 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:15 smithi003 bash[19900]: cluster 2024-09-06T14:58:14.760146+0000 mgr.smithi003.ghjsjw (mgr.14116) 37 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:16.006 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:15 smithi003 bash[19900]: cluster 2024-09-06T14:58:14.760146+0000 mgr.smithi003.ghjsjw (mgr.14116) 37 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:17.101 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-06T14:58:17.888 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:17 smithi003 bash[19900]: audit 2024-09-06T14:58:16.536031+0000 mgr.smithi003.ghjsjw (mgr.14116) 38 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:17.888 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:17 smithi003 bash[19900]: audit 2024-09-06T14:58:16.536031+0000 mgr.smithi003.ghjsjw (mgr.14116) 38 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:17.889 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:17 smithi003 bash[19900]: cephadm 2024-09-06T14:58:16.538112+0000 mgr.smithi003.ghjsjw (mgr.14116) 39 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-06T14:58:17.889 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:17 smithi003 bash[19900]: cephadm 2024-09-06T14:58:16.538112+0000 mgr.smithi003.ghjsjw (mgr.14116) 39 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-06T14:58:17.889 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:17 smithi003 bash[19900]: audit 2024-09-06T14:58:16.542662+0000 mon.smithi003 (mon.0) 75 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:17.889 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:17 smithi003 bash[19900]: audit 2024-09-06T14:58:16.542662+0000 mon.smithi003 (mon.0) 75 : audit [INF] from='mgr.14116 172.21.15.3:0/1915817896' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:18.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:18 smithi003 bash[19900]: cluster 2024-09-06T14:58:16.760575+0000 mgr.smithi003.ghjsjw (mgr.14116) 40 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:18.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:18 smithi003 bash[19900]: cluster 2024-09-06T14:58:16.760575+0000 mgr.smithi003.ghjsjw (mgr.14116) 40 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:18 smithi003 bash[19900]: audit 2024-09-06T14:58:18.400325+0000 mon.smithi003 (mon.0) 76 : audit [INF] from='client.? 172.21.15.3:0/2047086602' entity='client.admin' 2024-09-06T14:58:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:18 smithi003 bash[19900]: audit 2024-09-06T14:58:18.400325+0000 mon.smithi003 (mon.0) 76 : audit [INF] from='client.? 172.21.15.3:0/2047086602' entity='client.admin' 2024-09-06T14:58:20.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:20 smithi003 bash[19900]: cluster 2024-09-06T14:58:18.761115+0000 mgr.smithi003.ghjsjw (mgr.14116) 41 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:20.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:20 smithi003 bash[19900]: cluster 2024-09-06T14:58:18.761115+0000 mgr.smithi003.ghjsjw (mgr.14116) 41 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:21.781 INFO:teuthology.orchestra.run.smithi003.stdout:Enabling the dashboard module... 2024-09-06T14:58:22.571 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:22 smithi003 bash[19900]: cluster 2024-09-06T14:58:20.761534+0000 mgr.smithi003.ghjsjw (mgr.14116) 42 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:22.571 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:22 smithi003 bash[19900]: cluster 2024-09-06T14:58:20.761534+0000 mgr.smithi003.ghjsjw (mgr.14116) 42 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:22.571 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:22 smithi003 bash[19900]: audit 2024-09-06T14:58:21.205188+0000 mon.smithi003 (mon.0) 77 : audit [INF] from='client.? 172.21.15.3:0/3014031651' entity='client.admin' 2024-09-06T14:58:22.571 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:22 smithi003 bash[19900]: audit 2024-09-06T14:58:21.205188+0000 mon.smithi003 (mon.0) 77 : audit [INF] from='client.? 172.21.15.3:0/3014031651' entity='client.admin' 2024-09-06T14:58:23.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:23 smithi003 bash[19900]: audit 2024-09-06T14:58:23.191536+0000 mon.smithi003 (mon.0) 78 : audit [INF] from='client.? 172.21.15.3:0/454536923' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-06T14:58:23.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:23 smithi003 bash[19900]: audit 2024-09-06T14:58:23.191536+0000 mon.smithi003 (mon.0) 78 : audit [INF] from='client.? 172.21.15.3:0/454536923' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-06T14:58:24.628 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:24 smithi003 bash[19900]: audit 2024-09-06T14:58:23.210704+0000 mon.smithi003 (mon.0) 79 : audit [INF] from='client.? 172.21.15.3:0/454536923' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-06T14:58:24.628 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:24 smithi003 bash[19900]: audit 2024-09-06T14:58:23.210704+0000 mon.smithi003 (mon.0) 79 : audit [INF] from='client.? 172.21.15.3:0/454536923' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-06T14:58:24.628 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:24 smithi003 bash[19900]: cluster 2024-09-06T14:58:23.214907+0000 mon.smithi003 (mon.0) 80 : cluster [DBG] mgrmap e9: smithi003.ghjsjw(active, since 38s) 2024-09-06T14:58:24.628 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:24 smithi003 bash[19900]: cluster 2024-09-06T14:58:23.214907+0000 mon.smithi003 (mon.0) 80 : cluster [DBG] mgrmap e9: smithi003.ghjsjw(active, since 38s) 2024-09-06T14:58:25.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:25 smithi003 bash[19900]: audit 2024-09-06T14:58:25.214248+0000 mon.smithi003 (mon.0) 81 : audit [DBG] from='client.? 172.21.15.3:0/869134766' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-06T14:58:25.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:25 smithi003 bash[19900]: audit 2024-09-06T14:58:25.214248+0000 mon.smithi003 (mon.0) 81 : audit [DBG] from='client.? 172.21.15.3:0/869134766' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-06T14:58:25.698 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:58:25.699 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-06T14:58:25.699 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-06T14:58:25.699 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "active_name": "smithi003.ghjsjw", 2024-09-06T14:58:25.699 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-06T14:58:25.699 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:58:25.699 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for the mgr to restart... 2024-09-06T14:58:25.699 INFO:teuthology.orchestra.run.smithi003.stdout:Waiting for mgr epoch 9... 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.450900+0000 mon.smithi003 (mon.0) 82 : cluster [INF] Active manager daemon smithi003.ghjsjw restarted 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.450900+0000 mon.smithi003 (mon.0) 82 : cluster [INF] Active manager daemon smithi003.ghjsjw restarted 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.451658+0000 mon.smithi003 (mon.0) 83 : cluster [INF] Activating manager daemon smithi003.ghjsjw 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.451658+0000 mon.smithi003 (mon.0) 83 : cluster [INF] Activating manager daemon smithi003.ghjsjw 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.460237+0000 mon.smithi003 (mon.0) 84 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.460237+0000 mon.smithi003 (mon.0) 84 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.460483+0000 mon.smithi003 (mon.0) 85 : cluster [DBG] mgrmap e10: smithi003.ghjsjw(active, starting, since 0.0091935s) 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.460483+0000 mon.smithi003 (mon.0) 85 : cluster [DBG] mgrmap e10: smithi003.ghjsjw(active, starting, since 0.0091935s) 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.461493+0000 mon.smithi003 (mon.0) 86 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T14:58:29.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.461493+0000 mon.smithi003 (mon.0) 86 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.464061+0000 mon.smithi003 (mon.0) 87 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi003.ghjsjw", "id": "smithi003.ghjsjw"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.464061+0000 mon.smithi003 (mon.0) 87 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi003.ghjsjw", "id": "smithi003.ghjsjw"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.465108+0000 mon.smithi003 (mon.0) 88 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.465108+0000 mon.smithi003 (mon.0) 88 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.465239+0000 mon.smithi003 (mon.0) 89 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.465239+0000 mon.smithi003 (mon.0) 89 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.465365+0000 mon.smithi003 (mon.0) 90 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: audit 2024-09-06T14:58:29.465365+0000 mon.smithi003 (mon.0) 90 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.491035+0000 mon.smithi003 (mon.0) 91 : cluster [INF] Manager daemon smithi003.ghjsjw is now available 2024-09-06T14:58:29.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:29 smithi003 bash[19900]: cluster 2024-09-06T14:58:29.491035+0000 mon.smithi003 (mon.0) 91 : cluster [INF] Manager daemon smithi003.ghjsjw is now available 2024-09-06T14:58:30.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:30 smithi003 bash[19900]: audit 2024-09-06T14:58:29.905341+0000 mon.smithi003 (mon.0) 92 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:58:30.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:30 smithi003 bash[19900]: audit 2024-09-06T14:58:29.905341+0000 mon.smithi003 (mon.0) 92 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:58:30.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:30 smithi003 bash[19900]: audit 2024-09-06T14:58:29.922521+0000 mon.smithi003 (mon.0) 93 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:58:30.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:30 smithi003 bash[19900]: audit 2024-09-06T14:58:29.922521+0000 mon.smithi003 (mon.0) 93 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:58:30.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:30 smithi003 bash[19900]: audit 2024-09-06T14:58:29.924668+0000 mon.smithi003 (mon.0) 94 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/trash_purge_schedule"} : dispatch 2024-09-06T14:58:30.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:30 smithi003 bash[19900]: audit 2024-09-06T14:58:29.924668+0000 mon.smithi003 (mon.0) 94 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/trash_purge_schedule"} : dispatch 2024-09-06T14:58:30.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:30 smithi003 bash[19900]: cluster 2024-09-06T14:58:30.460921+0000 mon.smithi003 (mon.0) 95 : cluster [DBG] mgrmap e11: smithi003.ghjsjw(active, since 1.00964s) 2024-09-06T14:58:30.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:30 smithi003 bash[19900]: cluster 2024-09-06T14:58:30.460921+0000 mon.smithi003 (mon.0) 95 : cluster [DBG] mgrmap e11: smithi003.ghjsjw(active, since 1.00964s) 2024-09-06T14:58:31.067 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout { 2024-09-06T14:58:31.067 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-06T14:58:31.067 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-06T14:58:31.067 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout } 2024-09-06T14:58:31.068 INFO:teuthology.orchestra.run.smithi003.stdout:mgr epoch 9 is available 2024-09-06T14:58:31.068 INFO:teuthology.orchestra.run.smithi003.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-06T14:58:31.887 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:31 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.146357+0000 mgr.smithi003.ghjsjw (mgr.14158) 4 : cephadm [INF] [06/Sep/2024:14:58:31] ENGINE Bus STARTING 2024-09-06T14:58:31.887 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:31 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.146357+0000 mgr.smithi003.ghjsjw (mgr.14158) 4 : cephadm [INF] [06/Sep/2024:14:58:31] ENGINE Bus STARTING 2024-09-06T14:58:32.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.273107+0000 mgr.smithi003.ghjsjw (mgr.14158) 5 : cephadm [INF] [06/Sep/2024:14:58:31] ENGINE Serving on https://172.21.15.3:7150 2024-09-06T14:58:32.949 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.273107+0000 mgr.smithi003.ghjsjw (mgr.14158) 5 : cephadm [INF] [06/Sep/2024:14:58:31] ENGINE Serving on https://172.21.15.3:7150 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.276962+0000 mgr.smithi003.ghjsjw (mgr.14158) 6 : cephadm [ERR] [06/Sep/2024:14:58:31] ENGINE Error in HTTPServer.serve 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: Traceback (most recent call last): 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: self._connections.run(self.expiration_interval) 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: self._run(expiration_interval) 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:58:32.950 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: s = self.context.wrap_socket( 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: return self.sslsocket_class._create( 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: self.do_handshake() 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: self._sslobj.do_handshake() 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.276962+0000 mgr.smithi003.ghjsjw (mgr.14158) 6 : cephadm [ERR] [06/Sep/2024:14:58:31] ENGINE Error in HTTPServer.serve 2024-09-06T14:58:32.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: Traceback (most recent call last): 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: self._connections.run(self.expiration_interval) 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: self._run(expiration_interval) 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: s = self.context.wrap_socket( 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T14:58:32.952 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: return self.sslsocket_class._create( 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: self.do_handshake() 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: self._sslobj.do_handshake() 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.374295+0000 mgr.smithi003.ghjsjw (mgr.14158) 7 : cephadm [INF] [06/Sep/2024:14:58:31] ENGINE Serving on http://172.21.15.3:8765 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.374295+0000 mgr.smithi003.ghjsjw (mgr.14158) 7 : cephadm [INF] [06/Sep/2024:14:58:31] ENGINE Serving on http://172.21.15.3:8765 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.374408+0000 mgr.smithi003.ghjsjw (mgr.14158) 8 : cephadm [INF] [06/Sep/2024:14:58:31] ENGINE Bus STARTED 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cephadm 2024-09-06T14:58:31.374408+0000 mgr.smithi003.ghjsjw (mgr.14158) 8 : cephadm [INF] [06/Sep/2024:14:58:31] ENGINE Bus STARTED 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cluster 2024-09-06T14:58:31.519942+0000 mon.smithi003 (mon.0) 96 : cluster [DBG] mgrmap e12: smithi003.ghjsjw(active, since 2s) 2024-09-06T14:58:32.953 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:32 smithi003 bash[19900]: cluster 2024-09-06T14:58:31.519942+0000 mon.smithi003 (mon.0) 96 : cluster [DBG] mgrmap e12: smithi003.ghjsjw(active, since 2s) 2024-09-06T14:58:33.552 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+jCCAuKgAwIBAgIUU2vfsSz1JVnS7wKZyZu8nkUJBN4wDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkwNjE0NTgzMloXDTM0\nMDkwNzE0NTgzMlowFjEUMBIGA1UEAwwLMTcyLjIxLjE1LjMwggIiMA0GCSqGSIb3\nDQEBAQUAA4ICDwAwggIKAoICAQDBoouax8cS6RiAPpaft1lMa/tqioc+Vt8kvAwB\nN935iyFamxg+bI90P+A5tu9iEQsg3GvNxXo/IkbIA/CpGhrgI9ruqzBjbylcdfgT\nic+NcbBBt9xiVEaNjfO3SPowYY3hvDdztsQcXvJFBMgmMO5/Ub//nvIjmXpavqtX\nf7RSBmuAf47ou9ZuReHZSbo9+97nSWwdq5y6+F4kNM26DqChcQZlLdVIchs/e7L2\nPR+H8u0GNB+W5BjtXzM4YZ7ILJi2lnKyiVW91gVMpP2B1tPVHugC6XMYif/XUARo\ni4j8WROxygdvkL90cUENDmSEtlJD7N9TodaxDuKQ4KUCmTbRhh2lrupieyF1Y0aE\nn+p82bSX8kxFYoVPkLHzD2ruYWopfKubWUZC1MmhNHwbYi6mfBU9RPbMZSa/vLop\n8F+TDnQHieJRwe6E6T47zRKnl6/HJAPAFTc7Zrb/cNmyf7roM5hl3m7KlAJlAQCf\n85rU4VrjPnrlzB2xnDy6MVZFMJZ42yPFsnt8qg1Nvh9cquomcqc8pHMf85etENzD\nmumfFnvfwskz/YKCbUbtbhO/Lmyuaff4RsAmJ2ZJJd0auLzJOnVmlwfv4WMnaknm\nZL/n/njKJOU1yc3TVrVhjn9yIySdCChPzP+pzFy3uOsY3oG/ATdW8cKIy1MLnO/t\nst3ugQIDAQABoz8wPTAtBgNVHREEJjAkgglzbWl0aGkwMDOCEWRhc2hib2FyZF9z\nZXJ2ZXJzhwSsFQ8DMAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIBAIEB\n446cZYewS4BOdfBaBqJP9TiwBCNA59TiXP+nf/ZkAeyWGw89hZvr46XugSSuufPK\n7XpY/IRoUaA/NPAMwLVFwdkzZ0x5IVCIFzh+9/6gTVvbBefGVTjPd0pD24mnkrRA\ny+aedp0nvhugdHVm5PWGRPO7P8CLeVbXJKUch4f6ysrIkRQY8Xt5BizCX8rqa9aC\nq18EB8XjWXOiOgu4wnk+kMC79oYjkLWFIHfR5IAd3DLdPiT9VJcEQz1V4C24iXki\nNjKawyvcUGWALZqF7CMd+ZXSMLFAo0p0dn506nEMYfaxSC860rEkcC5T0xzKL0yG\nCWMgL2L4/v3T9jdkpkomtfUTx3YfvT0a/+zvazKDStm9vP304wEDSQXh8EDLIF3T\nsLy8uOjQzQWGA3zXfIenXw5JCwXe6VkPjkFLTpLLz+y42iwf8kXWaKol8w701KBe\noUfFjT3jydSpG4HUpSsVNwPSwKBAV9CttY8JzAUSfCOfNFF2ky/v8CmMxwGXP8QR\nD2142pj/MoWn028MA0O+q0f5KY644hjMY15T05yLSOTBmuHPDeHTh5TgzRcVRmlM\nVjachhtMR6dWTz+jc5oG8GjWiHF/II5byafDDtDc9QLlrUreLh3oBoQ9nF0fTA58\nts24v1ST7mQN4BpyoDdXfuuY9baHHOhaiLgDZrwS\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJJwIBAAKCAgEAwaKLmsfHEukYgD6Wn7dZTGv7aoqHPlbfJLwMATfd+YshWpsY\nPmyPdD/gObbvYhELINxrzcV6PyJGyAPwqRoa4CPa7qswY28pXHX4E4nPjXGwQbfc\nYlRGjY3zt0j6MGGN4bw3c7bEHF7yRQTIJjDuf1G//57yI5l6Wr6rV3+0UgZrgH+O\n6LvWbkXh2Um6Pfve50lsHaucuvheJDTNug6goXEGZS3VSHIbP3uy9j0fh/LtBjQf\nluQY7V8zOGGeyCyYtpZysolVvdYFTKT9gdbT1R7oAulzGIn/11AEaIuI/FkTscoH\nb5C/dHFBDQ5khLZSQ+zfU6HWsQ7ikOClApk20YYdpa7qYnshdWNGhJ/qfNm0l/JM\nRWKFT5Cx8w9q7mFqKXyrm1lGQtTJoTR8G2IupnwVPUT2zGUmv7y6KfBfkw50B4ni\nUcHuhOk+O80Sp5evxyQDwBU3O2a2/3DZsn+66DOYZd5uypQCZQEAn/Oa1OFa4z56\n5cwdsZw8ujFWRTCWeNsjxbJ7fKoNTb4fXKrqJnKnPKRzH/OXrRDcw5rpnxZ738LJ\nM/2Cgm1G7W4Tvy5srmn3+EbAJidmSSXdGri8yTp1ZpcH7+FjJ2pJ5mS/5/54yiTl\nNcnN01a1YY5/ciMknQgoT8z/qcxct7jrGN6BvwE3VvHCiMtTC5zv7bLd7oECAwEA\nAQKCAf9SqTXLAhAecD8FW7KoMuZZ3ggtBYhtghYJc/Q+R7/EEOoHn1KVnJ3qAn9I\nbT16xF4gX/iA317iuVF+EVUZJHl5NdVAVvi+57V3VXdIltVM1alorcuLnCVdtjud\nlRwUZrV0FeVNEt03iHVR3N1LcHOEePPrdO8N+lJl2G1MyICfqB3zKspE2VjVcUjU\nMICaPn3prCUyPDUZ5TZLGfZv5Kobrtswn2BI1iQ5Y0wCrcwRPTVf3k4wQJ0/AUBu\nrKuJpBJouz7N1BwPXATnIPWqCjAa74RlJ4yxo+6T13BTehklDpii33dxu1kkgOto\nzAVBxtx8Isczo3VMacUqE+DvqMGYzQDaxKDSkzZd5gVG65IY7HN2kSHDLn9k07Eb\nKLA3Kj6xsyUvLkQwuJJQwwfuCKb1IlrhmqVsjIPrcmQ4ymKvKhQ7jq2pSzIa/ubz\nBgheYElGYE3ywfrmwbYkzprViHVjVPAkS8h+OsBH3geNrXCKvPT5f1+FhK1qDkEX\nxIkt5NY9h+YtwDghHxgLgsGm8jy+Rco0Cn/Zx3KlxEdR+Lcn+w8jPIWH10C8RlWm\nFf1660C5bytrx4x+Fm+FDmgRM+RBEqq7lUW9V8AEdOoPxAYGF9YP+tq0Tqjs549j\n3F/leCMWxaFGE8HrsBMvPAG2cJQL+phLw5Sdy/j8uKXmM2MtAoIBAQDypMrynGXQ\nZOG9nONTTIGm0yfCH1peGcMnbt9ot9lprRZ+ved6EukbOlJfs+b/ayLPCuRUk4ai\nK00sU9R7K3wiTZrxOiJ65C7U1nxSZ3K2hRnqEpm1cUfvH1IZEgkIpO7j5tWAqrFW\n5R7mrY6GgsNSL0U1ewbu3UtSahw4rdczhlx4mtqV1vur5uYpN+raM99AyoQRj8LQ\nEiX76s+E2/PFc+905GGwTbpoDePxspxGpd1BQsMT87VqQGGPl26hm4nzBpQ9YkGp\nf+/APhFJuiZafbKAH+PYq8GspONgbLe7EWpzvKeuuTDPihZw6Q6rK6Lr3GWQN6GH\ntgFrJegbpMz3AoIBAQDMSyWPq6QuKyT0u/VuxcMo5TeXhioy/sfi3tduSs0HZGPF\nFMreJRh/4+L3G5VHohIQXaL9irG6bHZVcXvZgvTW8/enlvDD3I8wf000xWTHidzd\n5a5tU6IYysaQlqQfZMygP1iaLVXHaw3F8AhobONME9yNXzLHXlcvfkY+drE/nlpv\nl/z/mb3EvPAJfVEMM9ONpLmjpbWAL91ASWz5hoKIaWBixT3gSS7bkDkGF9zYATXz\nFEAGsl7ZwsRNKJqZvHQ8PWpcT+0HOLYCN3XQMsGzs8jDwLSd9Vn2kE4Cc6xh+SBj\nN64ok3HrxDR3v5IF0B4f5i3HkAku0xafvIVxaBpHAoIBAADvy+zF18rHKOvveB0x\nNWrsc8HXFyU32j4Duo8P7qHuziBtIUCiZA372qeN7T1dL4Q3GYyOCT4FBsY+CJr1\nHwSO4iM+QzXQPbIKpe43ggTcXK4/piJCLrHooAuCu1AyOs3cbUSS5B5ewhDH6L3y\nMUjW7+B1+h/f8NN/n15EpYkIYsEAcAmWC+CtAoR0N87h1mHMplffAzSEbWsci/KK\nWtWPTgRYgVwJ4MdYDmI3e0z2hPUkidZA4ZloaDgCsKWlERJEGzxlbbV2zfkjBDQR\nqOY+h/rgpKOIfjXpaQtNQCRTu+J4fvk4s8yJTu7ep3TXtUhN0IKPBGues0Czo8K/\njx8CggEAbvhW097JVObMsT+0BtLXuswf0WfoXkD1NPAVF2z8SAqpAzHTLK37y+Ru\nsgnCoeGQbGFgmtaOyhQGh00YmENBWc219cvQxqN1CEPuHT8oCheB6OrNP8eRImRr\nTbj2N7NaT6V5LG55zNQC7EUBXC/hm76iLAzNGWzOcRbncyCoEUWkHD/0BqdtZIO4\n43612qoAPU2AJTtrBtF5HmWEE1qUZyLOX3iCruUx1cRWpU+q/45QztRuHvUe/qyE\nUuE+cUnj3aECuFgWCbktbLDRhyE7BLEg2exAcBkJIBysszpAJgvcIujo6lOFKyst\n0Oo3mH6/DlbLAT7lLhEtleEin0KMGwKCAQEA01tnWTIwkt5Y5jmZ6U5laqEd9T3+\nQkRn8jownEqLX/Zi7GduVE03jgLExY+nKswx3gD5tZeTdslwaW7mlFmk7nLsWX4V\nj74D/lRrR1xgiRNHtAgZFu7EZYYLeUvKB5r5ZuSrDT+SFng9hd0G8h2P+v2MS0bM\n1eyI16zgdIyZyOnQDVQIiH52K8CwL7ujggP/VL+FDxn8r3Z1xkawu2lSqm0aVFrj\nakE6GdjJlYBXVfgzgYBXbgcUqYJ0mA8gZpgTps9KWT2In/TEqdZtCUl50RMWUZo7\nXDmLUAbTO+rw/Rl0GEm6P/kLShrc+f9usqH3fUfCwOyizoddG60hYHV/Ng==\n-----END RSA PRIVATE KEY-----\n"} 2024-09-06T14:58:33.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:33 smithi003 bash[19900]: audit 2024-09-06T14:58:32.412878+0000 mgr.smithi003.ghjsjw (mgr.14158) 9 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:33.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:33 smithi003 bash[19900]: audit 2024-09-06T14:58:32.412878+0000 mgr.smithi003.ghjsjw (mgr.14158) 9 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:35.458 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-06T14:58:36.285 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:35 smithi003 bash[19900]: audit 2024-09-06T14:58:34.964664+0000 mgr.smithi003.ghjsjw (mgr.14158) 10 : audit [DBG] from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:36.286 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:35 smithi003 bash[19900]: audit 2024-09-06T14:58:34.964664+0000 mgr.smithi003.ghjsjw (mgr.14158) 10 : audit [DBG] from='client.14170 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:36.286 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:35 smithi003 bash[19900]: audit 2024-09-06T14:58:34.969505+0000 mon.smithi003 (mon.0) 97 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:36.286 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:35 smithi003 bash[19900]: audit 2024-09-06T14:58:34.969505+0000 mon.smithi003 (mon.0) 97 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:37.298 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-06T14:58:37.298 INFO:teuthology.orchestra.run.smithi003.stdout:Creating initial admin user... 2024-09-06T14:58:38.066 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:37 smithi003 bash[19900]: audit 2024-09-06T14:58:36.796760+0000 mgr.smithi003.ghjsjw (mgr.14158) 11 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:38.066 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:37 smithi003 bash[19900]: audit 2024-09-06T14:58:36.796760+0000 mgr.smithi003.ghjsjw (mgr.14158) 11 : audit [DBG] from='client.14172 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:38.066 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:37 smithi003 bash[19900]: audit 2024-09-06T14:58:36.801394+0000 mon.smithi003 (mon.0) 98 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:38.066 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:37 smithi003 bash[19900]: audit 2024-09-06T14:58:36.801394+0000 mon.smithi003 (mon.0) 98 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:39.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:38 smithi003 bash[19900]: audit 2024-09-06T14:58:37.969968+0000 mon.smithi003 (mon.0) 99 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:39.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:38 smithi003 bash[19900]: audit 2024-09-06T14:58:37.969968+0000 mon.smithi003 (mon.0) 99 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:38 smithi003 bash[19900]: audit 2024-09-06T14:58:38.836302+0000 mon.smithi003 (mon.0) 100 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:38 smithi003 bash[19900]: audit 2024-09-06T14:58:38.836302+0000 mon.smithi003 (mon.0) 100 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:39.472 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$Gisr2A.1ndYvldJOm4NAkuB11GbVkLezuJK0H4kBD4mEMLb359/g2", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1725634718, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-06T14:58:39.472 INFO:teuthology.orchestra.run.smithi003.stdout:Fetching dashboard port number... 2024-09-06T14:58:40.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:40 smithi003 bash[19900]: audit 2024-09-06T14:58:38.542294+0000 mgr.smithi003.ghjsjw (mgr.14158) 12 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:40.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:40 smithi003 bash[19900]: audit 2024-09-06T14:58:38.542294+0000 mgr.smithi003.ghjsjw (mgr.14158) 12 : audit [DBG] from='client.14174 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:58:40.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:40 smithi003 bash[19900]: audit 2024-09-06T14:58:39.106278+0000 mon.smithi003 (mon.0) 101 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:40.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:40 smithi003 bash[19900]: audit 2024-09-06T14:58:39.106278+0000 mon.smithi003 (mon.0) 101 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:41.281 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stdout 8443 2024-09-06T14:58:41.281 INFO:teuthology.orchestra.run.smithi003.stdout:firewalld does not appear to be present 2024-09-06T14:58:41.281 INFO:teuthology.orchestra.run.smithi003.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-06T14:58:41.284 INFO:teuthology.orchestra.run.smithi003.stdout:Ceph Dashboard is now available at: 2024-09-06T14:58:41.284 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:41.284 INFO:teuthology.orchestra.run.smithi003.stdout: URL: https://smithi003.front.sepia.ceph.com:8443/ 2024-09-06T14:58:41.284 INFO:teuthology.orchestra.run.smithi003.stdout: User: admin 2024-09-06T14:58:41.284 INFO:teuthology.orchestra.run.smithi003.stdout: Password: pfunqy3zs2 2024-09-06T14:58:41.284 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:41.285 INFO:teuthology.orchestra.run.smithi003.stdout:Saving cluster configuration to /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config directory 2024-09-06T14:58:41.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:41 smithi003 bash[19900]: audit 2024-09-06T14:58:40.763365+0000 mon.smithi003 (mon.0) 102 : audit [DBG] from='client.? 172.21.15.3:0/1250311530' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-06T14:58:41.382 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:41 smithi003 bash[19900]: audit 2024-09-06T14:58:40.763365+0000 mon.smithi003 (mon.0) 102 : audit [DBG] from='client.? 172.21.15.3:0/1250311530' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-06T14:58:43.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:43 smithi003 bash[19900]: cluster 2024-09-06T14:58:42.110637+0000 mon.smithi003 (mon.0) 103 : cluster [DBG] mgrmap e13: smithi003.ghjsjw(active, since 12s) 2024-09-06T14:58:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:43 smithi003 bash[19900]: cluster 2024-09-06T14:58:42.110637+0000 mon.smithi003 (mon.0) 103 : cluster [DBG] mgrmap e13: smithi003.ghjsjw(active, since 12s) 2024-09-06T14:58:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:43 smithi003 bash[19900]: audit 2024-09-06T14:58:42.887714+0000 mon.smithi003 (mon.0) 104 : audit [INF] from='client.? 172.21.15.3:0/3488163144' entity='client.admin' 2024-09-06T14:58:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:43 smithi003 bash[19900]: audit 2024-09-06T14:58:42.887714+0000 mon.smithi003 (mon.0) 104 : audit [INF] from='client.? 172.21.15.3:0/3488163144' entity='client.admin' 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout:Or, if you are only running a single cluster on this host: 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:43.396 INFO:teuthology.orchestra.run.smithi003.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-06T14:58:43.397 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:43.397 INFO:teuthology.orchestra.run.smithi003.stdout: ceph telemetry on 2024-09-06T14:58:43.397 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:43.397 INFO:teuthology.orchestra.run.smithi003.stdout:For more information see: 2024-09-06T14:58:43.397 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:43.397 INFO:teuthology.orchestra.run.smithi003.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-06T14:58:43.397 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:58:43.397 INFO:teuthology.orchestra.run.smithi003.stdout:Bootstrap complete. 2024-09-06T14:58:43.444 INFO:tasks.cephadm:Fetching config... 2024-09-06T14:58:43.444 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:58:43.445 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-06T14:58:43.450 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-06T14:58:43.450 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:58:43.450 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-06T14:58:43.498 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-06T14:58:43.498 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:58:43.498 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/keyring of=/dev/stdout 2024-09-06T14:58:43.553 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-06T14:58:43.553 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T14:58:43.553 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-06T14:58:43.603 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-06T14:58:43.603 DEBUG:teuthology.orchestra.run.smithi003:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtBcisR+ZZ3PEkMZVhf6YetdTKv5Prd5j/4Q3Qz/Ik99qFXB6qi8YHqDxCiLFcy/AkuodP8Mw+rnxckCOAxqzhbj6PCJ3WERIeP1pfPT2l2KvhDXtj+S6hOqFmrLG5K4FNKIpgBlUDbjoxbA5LoEMe/gRXdr1OUxgzW8broUY0fgDaUCiF7fxKT79CK2VX35LPU9dggEiAhq+x0h5S0gFgbmdqFpF2/LSiP3pq8Jms/C5z1/0alYTW8vOD2vFkdpcuNqSxGfyrePjwn5Yg6uI69riUg9sKvdvgKvQjkq5HTi3FeEhpGf35GVzgk4rz3jYTpm3t6Y84xUwehQY82CvO2REYlZbIMwfop8CEcrYWUgZWQmwHv1fzRzoq9Gr2Nfkt45xG40tlOFiYbvHZXg7VAk+k346MCUVv40z82N9NVzVP0/vn4dC7Jj4z641Dh2ijXVPNLrKDXHJ66SOytB9PT3ueDDJG7yV5nElHZxSjoS31BvrJsRgWo1tVBLKrACE= ceph-0f20e064-6c60-11ef-bce4-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-06T14:58:43.671 INFO:teuthology.orchestra.run.smithi003.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtBcisR+ZZ3PEkMZVhf6YetdTKv5Prd5j/4Q3Qz/Ik99qFXB6qi8YHqDxCiLFcy/AkuodP8Mw+rnxckCOAxqzhbj6PCJ3WERIeP1pfPT2l2KvhDXtj+S6hOqFmrLG5K4FNKIpgBlUDbjoxbA5LoEMe/gRXdr1OUxgzW8broUY0fgDaUCiF7fxKT79CK2VX35LPU9dggEiAhq+x0h5S0gFgbmdqFpF2/LSiP3pq8Jms/C5z1/0alYTW8vOD2vFkdpcuNqSxGfyrePjwn5Yg6uI69riUg9sKvdvgKvQjkq5HTi3FeEhpGf35GVzgk4rz3jYTpm3t6Y84xUwehQY82CvO2REYlZbIMwfop8CEcrYWUgZWQmwHv1fzRzoq9Gr2Nfkt45xG40tlOFiYbvHZXg7VAk+k346MCUVv40z82N9NVzVP0/vn4dC7Jj4z641Dh2ijXVPNLrKDXHJ66SOytB9PT3ueDDJG7yV5nElHZxSjoS31BvrJsRgWo1tVBLKrACE= ceph-0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:58:43.681 DEBUG:teuthology.orchestra.run.smithi120:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtBcisR+ZZ3PEkMZVhf6YetdTKv5Prd5j/4Q3Qz/Ik99qFXB6qi8YHqDxCiLFcy/AkuodP8Mw+rnxckCOAxqzhbj6PCJ3WERIeP1pfPT2l2KvhDXtj+S6hOqFmrLG5K4FNKIpgBlUDbjoxbA5LoEMe/gRXdr1OUxgzW8broUY0fgDaUCiF7fxKT79CK2VX35LPU9dggEiAhq+x0h5S0gFgbmdqFpF2/LSiP3pq8Jms/C5z1/0alYTW8vOD2vFkdpcuNqSxGfyrePjwn5Yg6uI69riUg9sKvdvgKvQjkq5HTi3FeEhpGf35GVzgk4rz3jYTpm3t6Y84xUwehQY82CvO2REYlZbIMwfop8CEcrYWUgZWQmwHv1fzRzoq9Gr2Nfkt45xG40tlOFiYbvHZXg7VAk+k346MCUVv40z82N9NVzVP0/vn4dC7Jj4z641Dh2ijXVPNLrKDXHJ66SOytB9PT3ueDDJG7yV5nElHZxSjoS31BvrJsRgWo1tVBLKrACE= ceph-0f20e064-6c60-11ef-bce4-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-06T14:58:43.706 INFO:teuthology.orchestra.run.smithi120.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCtBcisR+ZZ3PEkMZVhf6YetdTKv5Prd5j/4Q3Qz/Ik99qFXB6qi8YHqDxCiLFcy/AkuodP8Mw+rnxckCOAxqzhbj6PCJ3WERIeP1pfPT2l2KvhDXtj+S6hOqFmrLG5K4FNKIpgBlUDbjoxbA5LoEMe/gRXdr1OUxgzW8broUY0fgDaUCiF7fxKT79CK2VX35LPU9dggEiAhq+x0h5S0gFgbmdqFpF2/LSiP3pq8Jms/C5z1/0alYTW8vOD2vFkdpcuNqSxGfyrePjwn5Yg6uI69riUg9sKvdvgKvQjkq5HTi3FeEhpGf35GVzgk4rz3jYTpm3t6Y84xUwehQY82CvO2REYlZbIMwfop8CEcrYWUgZWQmwHv1fzRzoq9Gr2Nfkt45xG40tlOFiYbvHZXg7VAk+k346MCUVv40z82N9NVzVP0/vn4dC7Jj4z641Dh2ijXVPNLrKDXHJ66SOytB9PT3ueDDJG7yV5nElHZxSjoS31BvrJsRgWo1tVBLKrACE= ceph-0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T14:58:43.716 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-06T14:58:50.373 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T14:58:51.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: cluster 2024-09-06T14:58:49.466771+0000 mgr.smithi003.ghjsjw (mgr.14158) 13 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:51.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: cluster 2024-09-06T14:58:49.466771+0000 mgr.smithi003.ghjsjw (mgr.14158) 13 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:51.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.000291+0000 mon.smithi003 (mon.0) 105 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:51.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.000291+0000 mon.smithi003 (mon.0) 105 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.006025+0000 mon.smithi003 (mon.0) 106 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.006025+0000 mon.smithi003 (mon.0) 106 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.008741+0000 mon.smithi003 (mon.0) 107 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"} : dispatch 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.008741+0000 mon.smithi003 (mon.0) 107 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"} : dispatch 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.016231+0000 mon.smithi003 (mon.0) 108 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.016231+0000 mon.smithi003 (mon.0) 108 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:50 smithi003 bash[19900]: audit 2024-09-06T14:58:50.019363+0000 mon.smithi003 (mon.0) 109 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi003", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:51 smithi003 bash[19900]: audit 2024-09-06T14:58:50.019363+0000 mon.smithi003 (mon.0) 109 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi003", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:51 smithi003 bash[19900]: audit 2024-09-06T14:58:50.021024+0000 mon.smithi003 (mon.0) 110 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi003", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:51 smithi003 bash[19900]: audit 2024-09-06T14:58:50.021024+0000 mon.smithi003 (mon.0) 110 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi003", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:51 smithi003 bash[19900]: audit 2024-09-06T14:58:50.025512+0000 mon.smithi003 (mon.0) 111 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:58:51.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:51 smithi003 bash[19900]: audit 2024-09-06T14:58:50.025512+0000 mon.smithi003 (mon.0) 111 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:58:51.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:51 smithi003 bash[19900]: cephadm 2024-09-06T14:58:50.027578+0000 mgr.smithi003.ghjsjw (mgr.14158) 14 : cephadm [INF] Deploying daemon ceph-exporter.smithi003 on smithi003 2024-09-06T14:58:51.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:51 smithi003 bash[19900]: cephadm 2024-09-06T14:58:50.027578+0000 mgr.smithi003.ghjsjw (mgr.14158) 14 : cephadm [INF] Deploying daemon ceph-exporter.smithi003 on smithi003 2024-09-06T14:58:52.946 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-06T14:58:52.947 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-06T14:58:53.196 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:53 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:58:53.196 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:53 smithi003 bash[19900]: cluster 2024-09-06T14:58:51.467210+0000 mgr.smithi003.ghjsjw (mgr.14158) 15 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:53.197 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:53 smithi003 bash[19900]: cluster 2024-09-06T14:58:51.467210+0000 mgr.smithi003.ghjsjw (mgr.14158) 15 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:53.197 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:53 smithi003 bash[19900]: audit 2024-09-06T14:58:52.142212+0000 mon.smithi003 (mon.0) 112 : audit [INF] from='client.? 172.21.15.3:0/4171087853' entity='client.admin' 2024-09-06T14:58:53.197 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:53 smithi003 bash[19900]: audit 2024-09-06T14:58:52.142212+0000 mon.smithi003 (mon.0) 112 : audit [INF] from='client.? 172.21.15.3:0/4171087853' entity='client.admin' 2024-09-06T14:58:53.346 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:53 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:58:54.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: cluster 2024-09-06T14:58:53.467534+0000 mgr.smithi003.ghjsjw (mgr.14158) 16 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:54.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: cluster 2024-09-06T14:58:53.467534+0000 mgr.smithi003.ghjsjw (mgr.14158) 16 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:54.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.488103+0000 mon.smithi003 (mon.0) 113 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:54.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.488103+0000 mon.smithi003 (mon.0) 113 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.490401+0000 mon.smithi003 (mon.0) 114 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.490401+0000 mon.smithi003 (mon.0) 114 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.492816+0000 mon.smithi003 (mon.0) 115 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.492816+0000 mon.smithi003 (mon.0) 115 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.494901+0000 mon.smithi003 (mon.0) 116 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.494901+0000 mon.smithi003 (mon.0) 116 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.495993+0000 mon.smithi003 (mon.0) 117 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.495993+0000 mon.smithi003 (mon.0) 117 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.496786+0000 mon.smithi003 (mon.0) 118 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.496786+0000 mon.smithi003 (mon.0) 118 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.499110+0000 mon.smithi003 (mon.0) 119 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:58:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: audit 2024-09-06T14:58:53.499110+0000 mon.smithi003 (mon.0) 119 : audit [DBG] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T14:58:54.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: cephadm 2024-09-06T14:58:53.500040+0000 mgr.smithi003.ghjsjw (mgr.14158) 17 : cephadm [INF] Deploying daemon crash.smithi003 on smithi003 2024-09-06T14:58:54.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:54 smithi003 bash[19900]: cephadm 2024-09-06T14:58:53.500040+0000 mgr.smithi003.ghjsjw (mgr.14158) 17 : cephadm [INF] Deploying daemon crash.smithi003 on smithi003 2024-09-06T14:58:56.181 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:55 smithi003 bash[19900]: audit 2024-09-06T14:58:54.923824+0000 mon.smithi003 (mon.0) 120 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:56.182 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:55 smithi003 bash[19900]: audit 2024-09-06T14:58:54.923824+0000 mon.smithi003 (mon.0) 120 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:56.512 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:58:56.512 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:58:57.333 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: cluster 2024-09-06T14:58:55.467902+0000 mgr.smithi003.ghjsjw (mgr.14158) 18 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:57.333 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: cluster 2024-09-06T14:58:55.467902+0000 mgr.smithi003.ghjsjw (mgr.14158) 18 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:57.334 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: audit 2024-09-06T14:58:56.556543+0000 mon.smithi003 (mon.0) 121 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:57.334 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: audit 2024-09-06T14:58:56.556543+0000 mon.smithi003 (mon.0) 121 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:57.334 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: audit 2024-09-06T14:58:56.559031+0000 mon.smithi003 (mon.0) 122 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:57.334 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: audit 2024-09-06T14:58:56.559031+0000 mon.smithi003 (mon.0) 122 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:57.334 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: audit 2024-09-06T14:58:56.562139+0000 mon.smithi003 (mon.0) 123 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:57.334 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: audit 2024-09-06T14:58:56.562139+0000 mon.smithi003 (mon.0) 123 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:57.334 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: audit 2024-09-06T14:58:56.564995+0000 mon.smithi003 (mon.0) 124 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:57.334 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:56 smithi003 bash[19900]: audit 2024-09-06T14:58:56.564995+0000 mon.smithi003 (mon.0) 124 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:57.585 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:58:57.686 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T14:58:57.850 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: cephadm 2024-09-06T14:58:56.566311+0000 mgr.smithi003.ghjsjw (mgr.14158) 19 : cephadm [INF] Deploying daemon node-exporter.smithi003 on smithi003 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: cephadm 2024-09-06T14:58:56.566311+0000 mgr.smithi003.ghjsjw (mgr.14158) 19 : cephadm [INF] Deploying daemon node-exporter.smithi003 on smithi003 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: audit 2024-09-06T14:58:57.864628+0000 mon.smithi003 (mon.0) 125 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: audit 2024-09-06T14:58:57.864628+0000 mon.smithi003 (mon.0) 125 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: audit 2024-09-06T14:58:57.866878+0000 mon.smithi003 (mon.0) 126 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: audit 2024-09-06T14:58:57.866878+0000 mon.smithi003 (mon.0) 126 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: audit 2024-09-06T14:58:57.869069+0000 mon.smithi003 (mon.0) 127 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: audit 2024-09-06T14:58:57.869069+0000 mon.smithi003 (mon.0) 127 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: audit 2024-09-06T14:58:57.871005+0000 mon.smithi003 (mon.0) 128 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:57 smithi003 bash[19900]: audit 2024-09-06T14:58:57.871005+0000 mon.smithi003 (mon.0) 128 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:58:59.048 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:58 smithi003 bash[19900]: cluster 2024-09-06T14:58:57.468233+0000 mgr.smithi003.ghjsjw (mgr.14158) 20 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:59.049 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:58 smithi003 bash[19900]: cluster 2024-09-06T14:58:57.468233+0000 mgr.smithi003.ghjsjw (mgr.14158) 20 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:58:59.049 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:58 smithi003 bash[19900]: cephadm 2024-09-06T14:58:57.879340+0000 mgr.smithi003.ghjsjw (mgr.14158) 21 : cephadm [INF] Deploying daemon alertmanager.smithi003 on smithi003 2024-09-06T14:58:59.049 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:58:58 smithi003 bash[19900]: cephadm 2024-09-06T14:58:57.879340+0000 mgr.smithi003.ghjsjw (mgr.14158) 21 : cephadm [INF] Deploying daemon alertmanager.smithi003 on smithi003 2024-09-06T14:59:00.792 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:00 smithi003 bash[19900]: audit 2024-09-06T14:58:59.430573+0000 mgr.smithi003.ghjsjw (mgr.14158) 22 : audit [DBG] from='client.14183 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:59:00.792 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:00 smithi003 bash[19900]: audit 2024-09-06T14:58:59.430573+0000 mgr.smithi003.ghjsjw (mgr.14158) 22 : audit [DBG] from='client.14183 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:59:00.792 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:00 smithi003 bash[19900]: audit 2024-09-06T14:58:59.433689+0000 mon.smithi003 (mon.0) 129 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:00.792 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:00 smithi003 bash[19900]: audit 2024-09-06T14:58:59.433689+0000 mon.smithi003 (mon.0) 129 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:00.792 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:00 smithi003 bash[19900]: cluster 2024-09-06T14:58:59.468501+0000 mgr.smithi003.ghjsjw (mgr.14158) 23 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:00.792 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:00 smithi003 bash[19900]: cluster 2024-09-06T14:58:59.468501+0000 mgr.smithi003.ghjsjw (mgr.14158) 23 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:00.793 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:00 smithi003 bash[19900]: audit 2024-09-06T14:58:59.930125+0000 mon.smithi003 (mon.0) 130 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:00.793 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:00 smithi003 bash[19900]: audit 2024-09-06T14:58:59.930125+0000 mon.smithi003 (mon.0) 130 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:00.794 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi120 2024-09-06T14:59:00.794 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T14:59:00.794 DEBUG:teuthology.orchestra.run.smithi120:> dd of=/etc/ceph/ceph.conf 2024-09-06T14:59:00.801 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T14:59:00.801 DEBUG:teuthology.orchestra.run.smithi120:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-06T14:59:00.847 INFO:tasks.cephadm:Adding host smithi120 to orchestrator... 2024-09-06T14:59:00.847 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph orch host add smithi120 2024-09-06T14:59:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:02 smithi003 bash[19900]: cluster 2024-09-06T14:59:01.468918+0000 mgr.smithi003.ghjsjw (mgr.14158) 24 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:02 smithi003 bash[19900]: cluster 2024-09-06T14:59:01.468918+0000 mgr.smithi003.ghjsjw (mgr.14158) 24 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:04.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:04 smithi003 bash[19900]: cluster 2024-09-06T14:59:03.469396+0000 mgr.smithi003.ghjsjw (mgr.14158) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:04.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:04 smithi003 bash[19900]: cluster 2024-09-06T14:59:03.469396+0000 mgr.smithi003.ghjsjw (mgr.14158) 25 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:05.624 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T14:59:06.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:06 smithi003 bash[19900]: cluster 2024-09-06T14:59:05.469912+0000 mgr.smithi003.ghjsjw (mgr.14158) 26 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:06.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:06 smithi003 bash[19900]: cluster 2024-09-06T14:59:05.469912+0000 mgr.smithi003.ghjsjw (mgr.14158) 26 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:08.850 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:08 smithi003 bash[19900]: cluster 2024-09-06T14:59:07.470303+0000 mgr.smithi003.ghjsjw (mgr.14158) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:08.850 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:08 smithi003 bash[19900]: cluster 2024-09-06T14:59:07.470303+0000 mgr.smithi003.ghjsjw (mgr.14158) 27 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:08.851 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:08 smithi003 bash[19900]: audit 2024-09-06T14:59:07.668058+0000 mgr.smithi003.ghjsjw (mgr.14158) 28 : audit [DBG] from='client.14185 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi120", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:59:08.851 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:08 smithi003 bash[19900]: audit 2024-09-06T14:59:07.668058+0000 mgr.smithi003.ghjsjw (mgr.14158) 28 : audit [DBG] from='client.14185 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi120", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:59:09.103 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:08 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:59:09.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:09 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:59:10.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: cephadm 2024-09-06T14:59:08.996236+0000 mgr.smithi003.ghjsjw (mgr.14158) 29 : cephadm [INF] Deploying cephadm binary to smithi120 2024-09-06T14:59:10.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: cephadm 2024-09-06T14:59:08.996236+0000 mgr.smithi003.ghjsjw (mgr.14158) 29 : cephadm [INF] Deploying cephadm binary to smithi120 2024-09-06T14:59:10.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.253022+0000 mon.smithi003 (mon.0) 131 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.253022+0000 mon.smithi003 (mon.0) 131 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.257750+0000 mon.smithi003 (mon.0) 132 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.257750+0000 mon.smithi003 (mon.0) 132 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.263107+0000 mon.smithi003 (mon.0) 133 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.263107+0000 mon.smithi003 (mon.0) 133 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.268542+0000 mon.smithi003 (mon.0) 134 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.268542+0000 mon.smithi003 (mon.0) 134 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: cephadm 2024-09-06T14:59:09.269491+0000 mgr.smithi003.ghjsjw (mgr.14158) 30 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-06T14:59:10.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: cephadm 2024-09-06T14:59:09.269491+0000 mgr.smithi003.ghjsjw (mgr.14158) 30 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-06T14:59:10.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.934706+0000 mon.smithi003 (mon.0) 135 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:10.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:10 smithi003 bash[19900]: audit 2024-09-06T14:59:09.934706+0000 mon.smithi003 (mon.0) 135 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: cluster 2024-09-06T14:59:09.470754+0000 mgr.smithi003.ghjsjw (mgr.14158) 31 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:11.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: cluster 2024-09-06T14:59:09.470754+0000 mgr.smithi003.ghjsjw (mgr.14158) 31 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:11.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.429014+0000 mon.smithi003 (mon.0) 136 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.429014+0000 mon.smithi003 (mon.0) 136 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.436119+0000 mon.smithi003 (mon.0) 137 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.436119+0000 mon.smithi003 (mon.0) 137 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.443657+0000 mon.smithi003 (mon.0) 138 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-06T14:59:11.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.443657+0000 mon.smithi003 (mon.0) 138 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-06T14:59:11.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.452779+0000 mon.smithi003 (mon.0) 139 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.452779+0000 mon.smithi003 (mon.0) 139 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.473888+0000 mon.smithi003 (mon.0) 140 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.473888+0000 mon.smithi003 (mon.0) 140 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.476031+0000 mon.smithi003 (mon.0) 141 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:11.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:11 smithi003 bash[19900]: audit 2024-09-06T14:59:10.476031+0000 mon.smithi003 (mon.0) 141 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:12.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:12 smithi003 bash[19900]: audit 2024-09-06T14:59:10.444544+0000 mgr.smithi003.ghjsjw (mgr.14158) 32 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-06T14:59:12.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:12 smithi003 bash[19900]: audit 2024-09-06T14:59:10.444544+0000 mgr.smithi003.ghjsjw (mgr.14158) 32 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-06T14:59:13.254 INFO:teuthology.orchestra.run.smithi003.stdout:Added host 'smithi120' with addr '172.21.15.120' 2024-09-06T14:59:13.596 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:13 smithi003 bash[19900]: cluster 2024-09-06T14:59:11.471176+0000 mgr.smithi003.ghjsjw (mgr.14158) 33 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:13.596 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:13 smithi003 bash[19900]: cluster 2024-09-06T14:59:11.471176+0000 mgr.smithi003.ghjsjw (mgr.14158) 33 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:13.596 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:13 smithi003 bash[19900]: cephadm 2024-09-06T14:59:11.554625+0000 mgr.smithi003.ghjsjw (mgr.14158) 34 : cephadm [INF] Deploying daemon grafana.smithi003 on smithi003 2024-09-06T14:59:13.596 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:13 smithi003 bash[19900]: cephadm 2024-09-06T14:59:11.554625+0000 mgr.smithi003.ghjsjw (mgr.14158) 34 : cephadm [INF] Deploying daemon grafana.smithi003 on smithi003 2024-09-06T14:59:13.596 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:13 smithi003 bash[19900]: audit 2024-09-06T14:59:13.255674+0000 mon.smithi003 (mon.0) 142 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:13.596 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:13 smithi003 bash[19900]: audit 2024-09-06T14:59:13.255674+0000 mon.smithi003 (mon.0) 142 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:14.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:14 smithi003 bash[19900]: cephadm 2024-09-06T14:59:13.256674+0000 mgr.smithi003.ghjsjw (mgr.14158) 35 : cephadm [INF] Added host smithi120 2024-09-06T14:59:14.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:14 smithi003 bash[19900]: cephadm 2024-09-06T14:59:13.256674+0000 mgr.smithi003.ghjsjw (mgr.14158) 35 : cephadm [INF] Added host smithi120 2024-09-06T14:59:15.467 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph orch host ls --format=json 2024-09-06T14:59:15.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:15 smithi003 bash[19900]: cluster 2024-09-06T14:59:13.471533+0000 mgr.smithi003.ghjsjw (mgr.14158) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:15.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:15 smithi003 bash[19900]: cluster 2024-09-06T14:59:13.471533+0000 mgr.smithi003.ghjsjw (mgr.14158) 36 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:16.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:16 smithi003 bash[19900]: cluster 2024-09-06T14:59:15.471893+0000 mgr.smithi003.ghjsjw (mgr.14158) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:16.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:16 smithi003 bash[19900]: cluster 2024-09-06T14:59:15.471893+0000 mgr.smithi003.ghjsjw (mgr.14158) 37 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:18 smithi003 bash[19900]: cluster 2024-09-06T14:59:17.472359+0000 mgr.smithi003.ghjsjw (mgr.14158) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:18 smithi003 bash[19900]: cluster 2024-09-06T14:59:17.472359+0000 mgr.smithi003.ghjsjw (mgr.14158) 38 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:20.264 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T14:59:20.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:20 smithi003 bash[19900]: cluster 2024-09-06T14:59:19.472806+0000 mgr.smithi003.ghjsjw (mgr.14158) 39 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:20.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:20 smithi003 bash[19900]: cluster 2024-09-06T14:59:19.472806+0000 mgr.smithi003.ghjsjw (mgr.14158) 39 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:22 smithi003 bash[19900]: cluster 2024-09-06T14:59:21.473329+0000 mgr.smithi003.ghjsjw (mgr.14158) 40 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:22 smithi003 bash[19900]: cluster 2024-09-06T14:59:21.473329+0000 mgr.smithi003.ghjsjw (mgr.14158) 40 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:24.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:24 smithi003 bash[19900]: cluster 2024-09-06T14:59:23.473807+0000 mgr.smithi003.ghjsjw (mgr.14158) 41 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:24.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:24 smithi003 bash[19900]: cluster 2024-09-06T14:59:23.473807+0000 mgr.smithi003.ghjsjw (mgr.14158) 41 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:25.005 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T14:59:25.005 INFO:teuthology.orchestra.run.smithi003.stdout:[{"addr": "172.21.15.3", "hostname": "smithi003", "labels": [], "status": ""}, {"addr": "172.21.15.120", "hostname": "smithi120", "labels": [], "status": ""}] 2024-09-06T14:59:25.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:25 smithi003 bash[19900]: audit 2024-09-06T14:59:25.007089+0000 mgr.smithi003.ghjsjw (mgr.14158) 42 : audit [DBG] from='client.14187 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:59:25.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:25 smithi003 bash[19900]: audit 2024-09-06T14:59:25.007089+0000 mgr.smithi003.ghjsjw (mgr.14158) 42 : audit [DBG] from='client.14187 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T14:59:26.769 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-06T14:59:26.770 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd crush tunables default 2024-09-06T14:59:26.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:26 smithi003 bash[19900]: cluster 2024-09-06T14:59:25.474301+0000 mgr.smithi003.ghjsjw (mgr.14158) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:26.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:26 smithi003 bash[19900]: cluster 2024-09-06T14:59:25.474301+0000 mgr.smithi003.ghjsjw (mgr.14158) 43 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:28.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:28 smithi003 bash[19900]: cluster 2024-09-06T14:59:27.474780+0000 mgr.smithi003.ghjsjw (mgr.14158) 44 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:28.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:28 smithi003 bash[19900]: cluster 2024-09-06T14:59:27.474780+0000 mgr.smithi003.ghjsjw (mgr.14158) 44 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:30.226 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:30 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:59:30.497 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:30 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:59:30.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:30 smithi003 bash[19900]: cluster 2024-09-06T14:59:29.475211+0000 mgr.smithi003.ghjsjw (mgr.14158) 45 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:30.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:30 smithi003 bash[19900]: cluster 2024-09-06T14:59:29.475211+0000 mgr.smithi003.ghjsjw (mgr.14158) 45 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:31.548 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T14:59:31.603 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.547247+0000 mon.smithi003 (mon.0) 143 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.547247+0000 mon.smithi003 (mon.0) 143 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.549680+0000 mon.smithi003 (mon.0) 144 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.549680+0000 mon.smithi003 (mon.0) 144 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.552204+0000 mon.smithi003 (mon.0) 145 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.552204+0000 mon.smithi003 (mon.0) 145 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.554445+0000 mon.smithi003 (mon.0) 146 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.554445+0000 mon.smithi003 (mon.0) 146 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.556982+0000 mon.smithi003 (mon.0) 147 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.556982+0000 mon.smithi003 (mon.0) 147 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.559525+0000 mon.smithi003 (mon.0) 148 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.559525+0000 mon.smithi003 (mon.0) 148 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.604 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.562203+0000 mon.smithi003 (mon.0) 149 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.605 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.562203+0000 mon.smithi003 (mon.0) 149 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.605 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.564008+0000 mon.smithi003 (mon.0) 150 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.605 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: audit 2024-09-06T14:59:30.564008+0000 mon.smithi003 (mon.0) 150 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:31.605 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: cephadm 2024-09-06T14:59:30.828387+0000 mgr.smithi003.ghjsjw (mgr.14158) 46 : cephadm [INF] Deploying daemon prometheus.smithi003 on smithi003 2024-09-06T14:59:31.605 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:31 smithi003 bash[19900]: cephadm 2024-09-06T14:59:30.828387+0000 mgr.smithi003.ghjsjw (mgr.14158) 46 : cephadm [INF] Deploying daemon prometheus.smithi003 on smithi003 2024-09-06T14:59:32.713 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:32 smithi003 bash[19900]: cluster 2024-09-06T14:59:31.475617+0000 mgr.smithi003.ghjsjw (mgr.14158) 47 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:32.714 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:32 smithi003 bash[19900]: cluster 2024-09-06T14:59:31.475617+0000 mgr.smithi003.ghjsjw (mgr.14158) 47 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:34.573 INFO:teuthology.orchestra.run.smithi003.stderr:adjusted tunables profile to default 2024-09-06T14:59:34.624 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:34 smithi003 bash[19900]: cluster 2024-09-06T14:59:33.475869+0000 mgr.smithi003.ghjsjw (mgr.14158) 48 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:34.624 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:34 smithi003 bash[19900]: cluster 2024-09-06T14:59:33.475869+0000 mgr.smithi003.ghjsjw (mgr.14158) 48 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:34.624 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:34 smithi003 bash[19900]: audit 2024-09-06T14:59:33.585692+0000 mon.smithi003 (mon.0) 151 : audit [INF] from='client.? 172.21.15.3:0/1898983799' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-06T14:59:34.624 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:34 smithi003 bash[19900]: audit 2024-09-06T14:59:33.585692+0000 mon.smithi003 (mon.0) 151 : audit [INF] from='client.? 172.21.15.3:0/1898983799' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-06T14:59:35.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:35 smithi003 bash[19900]: audit 2024-09-06T14:59:34.575698+0000 mon.smithi003 (mon.0) 152 : audit [INF] from='client.? 172.21.15.3:0/1898983799' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-06T14:59:35.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:35 smithi003 bash[19900]: audit 2024-09-06T14:59:34.575698+0000 mon.smithi003 (mon.0) 152 : audit [INF] from='client.? 172.21.15.3:0/1898983799' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-06T14:59:35.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:35 smithi003 bash[19900]: cluster 2024-09-06T14:59:34.580923+0000 mon.smithi003 (mon.0) 153 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-06T14:59:35.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:35 smithi003 bash[19900]: cluster 2024-09-06T14:59:34.580923+0000 mon.smithi003 (mon.0) 153 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-06T14:59:35.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:35 smithi003 bash[19900]: audit 2024-09-06T14:59:34.941663+0000 mon.smithi003 (mon.0) 154 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:35.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:35 smithi003 bash[19900]: audit 2024-09-06T14:59:34.941663+0000 mon.smithi003 (mon.0) 154 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:37.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:36 smithi003 bash[19900]: cluster 2024-09-06T14:59:35.476219+0000 mgr.smithi003.ghjsjw (mgr.14158) 49 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:37.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:36 smithi003 bash[19900]: cluster 2024-09-06T14:59:35.476219+0000 mgr.smithi003.ghjsjw (mgr.14158) 49 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:37.412 INFO:tasks.cephadm:Adding mon.smithi003 on smithi003 2024-09-06T14:59:37.412 INFO:tasks.cephadm:Adding mon.smithi120 on smithi120 2024-09-06T14:59:37.413 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph orch apply mon '2;smithi003:172.21.15.3=smithi003;smithi120:172.21.15.120=smithi120' 2024-09-06T14:59:38.644 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:39.026 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:38 smithi003 bash[19900]: cluster 2024-09-06T14:59:37.476665+0000 mgr.smithi003.ghjsjw (mgr.14158) 50 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:39.026 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:38 smithi003 bash[19900]: cluster 2024-09-06T14:59:37.476665+0000 mgr.smithi003.ghjsjw (mgr.14158) 50 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:39.690 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:40.916 INFO:teuthology.orchestra.run.smithi120.stdout:Scheduled mon update... 2024-09-06T14:59:41.049 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:40 smithi003 bash[19900]: cluster 2024-09-06T14:59:39.477106+0000 mgr.smithi003.ghjsjw (mgr.14158) 51 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:41.049 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:40 smithi003 bash[19900]: cluster 2024-09-06T14:59:39.477106+0000 mgr.smithi003.ghjsjw (mgr.14158) 51 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:41.049 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:40 smithi003 bash[19900]: audit 2024-09-06T14:59:40.916929+0000 mon.smithi003 (mon.0) 155 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:41.049 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:40 smithi003 bash[19900]: audit 2024-09-06T14:59:40.916929+0000 mon.smithi003 (mon.0) 155 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:41.467 DEBUG:teuthology.orchestra.run.smithi120:mon.smithi120> sudo journalctl -f -n 0 -u ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi120.service 2024-09-06T14:59:41.470 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:59:41.470 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:59:42.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:41 smithi003 bash[19900]: audit 2024-09-06T14:59:40.906464+0000 mgr.smithi003.ghjsjw (mgr.14158) 52 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi003:172.21.15.3=smithi003;smithi120:172.21.15.120=smithi120", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:59:42.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:41 smithi003 bash[19900]: audit 2024-09-06T14:59:40.906464+0000 mgr.smithi003.ghjsjw (mgr.14158) 52 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi003:172.21.15.3=smithi003;smithi120:172.21.15.120=smithi120", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T14:59:42.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:41 smithi003 bash[19900]: cephadm 2024-09-06T14:59:40.911562+0000 mgr.smithi003.ghjsjw (mgr.14158) 53 : cephadm [INF] Saving service mon spec with placement smithi003:172.21.15.3=smithi003;smithi120:172.21.15.120=smithi120;count:2 2024-09-06T14:59:42.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:41 smithi003 bash[19900]: cephadm 2024-09-06T14:59:40.911562+0000 mgr.smithi003.ghjsjw (mgr.14158) 53 : cephadm [INF] Saving service mon spec with placement smithi003:172.21.15.3=smithi003;smithi120:172.21.15.120=smithi120;count:2 2024-09-06T14:59:42.734 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:42 smithi003 bash[19900]: cluster 2024-09-06T14:59:41.477438+0000 mgr.smithi003.ghjsjw (mgr.14158) 54 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:42 smithi003 bash[19900]: cluster 2024-09-06T14:59:41.477438+0000 mgr.smithi003.ghjsjw (mgr.14158) 54 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:43.780 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:45.044 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 1 2024-09-06T14:59:45.044 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T14:59:45.044 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":1,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T14:57:12.273337Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-06T14:59:45.144 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:44 smithi003 bash[19900]: cluster 2024-09-06T14:59:43.477800+0000 mgr.smithi003.ghjsjw (mgr.14158) 55 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:45.144 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:44 smithi003 bash[19900]: cluster 2024-09-06T14:59:43.477800+0000 mgr.smithi003.ghjsjw (mgr.14158) 55 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:46.098 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:45 smithi003 bash[19900]: audit 2024-09-06T14:59:45.045678+0000 mon.smithi003 (mon.0) 156 : audit [DBG] from='client.? 172.21.15.120:0/4148518729' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:59:46.098 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:45 smithi003 bash[19900]: audit 2024-09-06T14:59:45.045678+0000 mon.smithi003 (mon.0) 156 : audit [DBG] from='client.? 172.21.15.120:0/4148518729' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:59:46.590 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:59:46.590 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:59:47.365 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:46 smithi003 bash[19900]: cluster 2024-09-06T14:59:45.478199+0000 mgr.smithi003.ghjsjw (mgr.14158) 56 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:47.366 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:46 smithi003 bash[19900]: cluster 2024-09-06T14:59:45.478199+0000 mgr.smithi003.ghjsjw (mgr.14158) 56 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:48.858 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:49.185 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:48 smithi003 bash[19900]: cluster 2024-09-06T14:59:47.478596+0000 mgr.smithi003.ghjsjw (mgr.14158) 57 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:49.185 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:48 smithi003 bash[19900]: cluster 2024-09-06T14:59:47.478596+0000 mgr.smithi003.ghjsjw (mgr.14158) 57 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:49.441 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:49 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:59:49.697 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:49 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T14:59:50.112 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 1 2024-09-06T14:59:50.112 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T14:59:50.112 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":1,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T14:57:12.273337Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-06T14:59:50.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: cluster 2024-09-06T14:59:49.478908+0000 mgr.smithi003.ghjsjw (mgr.14158) 58 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:50.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: cluster 2024-09-06T14:59:49.478908+0000 mgr.smithi003.ghjsjw (mgr.14158) 58 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T14:59:50.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.608259+0000 mon.smithi003 (mon.0) 157 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.608259+0000 mon.smithi003 (mon.0) 157 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.611047+0000 mon.smithi003 (mon.0) 158 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.611047+0000 mon.smithi003 (mon.0) 158 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.613714+0000 mon.smithi003 (mon.0) 159 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.613714+0000 mon.smithi003 (mon.0) 159 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.615639+0000 mon.smithi003 (mon.0) 160 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.615639+0000 mon.smithi003 (mon.0) 160 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.948735+0000 mon.smithi003 (mon.0) 161 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:49.948735+0000 mon.smithi003 (mon.0) 161 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:50.113935+0000 mon.smithi003 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.120:0/4107332264' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:59:50.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:50 smithi003 bash[19900]: audit 2024-09-06T14:59:50.113935+0000 mon.smithi003 (mon.0) 162 : audit [DBG] from='client.? 172.21.15.120:0/4107332264' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:59:51.688 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:59:51.688 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:59:51.735 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:51 smithi003 bash[19900]: audit 2024-09-06T14:59:50.615678+0000 mon.smithi003 (mon.0) 163 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-06T14:59:51.735 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:51 smithi003 bash[19900]: audit 2024-09-06T14:59:50.615678+0000 mon.smithi003 (mon.0) 163 : audit [INF] from='mgr.14158 172.21.15.3:0/3629167372' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-06T14:59:51.735 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:51 smithi003 bash[19900]: cluster 2024-09-06T14:59:50.620854+0000 mon.smithi003 (mon.0) 164 : cluster [DBG] mgrmap e14: smithi003.ghjsjw(active, since 81s) 2024-09-06T14:59:51.736 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:51 smithi003 bash[19900]: cluster 2024-09-06T14:59:50.620854+0000 mon.smithi003 (mon.0) 164 : cluster [DBG] mgrmap e14: smithi003.ghjsjw(active, since 81s) 2024-09-06T14:59:52.914 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:53.959 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:55.336 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T14:59:55.336 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":1,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T14:57:12.273337Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-06T14:59:55.336 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 1 2024-09-06T14:59:55.428 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:55 smithi003 bash[19900]: audit 2024-09-06T14:59:55.337790+0000 mon.smithi003 (mon.0) 165 : audit [DBG] from='client.? 172.21.15.120:0/2032650680' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:59:55.428 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:55 smithi003 bash[19900]: audit 2024-09-06T14:59:55.337790+0000 mon.smithi003 (mon.0) 165 : audit [DBG] from='client.? 172.21.15.120:0/2032650680' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T14:59:56.900 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T14:59:56.900 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T14:59:57.319 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.030616+0000 mon.smithi003 (mon.0) 166 : cluster [INF] Active manager daemon smithi003.ghjsjw restarted 2024-09-06T14:59:57.319 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.030616+0000 mon.smithi003 (mon.0) 166 : cluster [INF] Active manager daemon smithi003.ghjsjw restarted 2024-09-06T14:59:57.319 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.031085+0000 mon.smithi003 (mon.0) 167 : cluster [INF] Activating manager daemon smithi003.ghjsjw 2024-09-06T14:59:57.319 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.031085+0000 mon.smithi003 (mon.0) 167 : cluster [INF] Activating manager daemon smithi003.ghjsjw 2024-09-06T14:59:57.319 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.037874+0000 mon.smithi003 (mon.0) 168 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:59:57.319 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.037874+0000 mon.smithi003 (mon.0) 168 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T14:59:57.319 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.038118+0000 mon.smithi003 (mon.0) 169 : cluster [DBG] mgrmap e15: smithi003.ghjsjw(active, starting, since 0.00723132s) 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.038118+0000 mon.smithi003 (mon.0) 169 : cluster [DBG] mgrmap e15: smithi003.ghjsjw(active, starting, since 0.00723132s) 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.039710+0000 mon.smithi003 (mon.0) 170 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.039710+0000 mon.smithi003 (mon.0) 170 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.041515+0000 mon.smithi003 (mon.0) 171 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi003.ghjsjw", "id": "smithi003.ghjsjw"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.041515+0000 mon.smithi003 (mon.0) 171 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi003.ghjsjw", "id": "smithi003.ghjsjw"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.042334+0000 mon.smithi003 (mon.0) 172 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.042334+0000 mon.smithi003 (mon.0) 172 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mds metadata"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.042535+0000 mon.smithi003 (mon.0) 173 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.042535+0000 mon.smithi003 (mon.0) 173 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.042716+0000 mon.smithi003 (mon.0) 174 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: audit 2024-09-06T14:59:57.042716+0000 mon.smithi003 (mon.0) 174 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata"} : dispatch 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.067455+0000 mon.smithi003 (mon.0) 175 : cluster [INF] Manager daemon smithi003.ghjsjw is now available 2024-09-06T14:59:57.320 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:57 smithi003 bash[19900]: cluster 2024-09-06T14:59:57.067455+0000 mon.smithi003 (mon.0) 175 : cluster [INF] Manager daemon smithi003.ghjsjw is now available 2024-09-06T14:59:58.110 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.502709+0000 mon.smithi003 (mon.0) 176 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:59:58.110 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.502709+0000 mon.smithi003 (mon.0) 176 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.516181+0000 mon.smithi003 (mon.0) 177 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.516181+0000 mon.smithi003 (mon.0) 177 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.519774+0000 mon.smithi003 (mon.0) 178 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.519774+0000 mon.smithi003 (mon.0) 178 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.521757+0000 mon.smithi003 (mon.0) 179 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.521757+0000 mon.smithi003 (mon.0) 179 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.522586+0000 mon.smithi003 (mon.0) 180 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.522586+0000 mon.smithi003 (mon.0) 180 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.530430+0000 mon.smithi003 (mon.0) 181 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.530430+0000 mon.smithi003 (mon.0) 181 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/mirror_snapshot_schedule"} : dispatch 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.533086+0000 mon.smithi003 (mon.0) 182 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/trash_purge_schedule"} : dispatch 2024-09-06T14:59:58.111 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: audit 2024-09-06T14:59:57.533086+0000 mon.smithi003 (mon.0) 182 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi003.ghjsjw/trash_purge_schedule"} : dispatch 2024-09-06T14:59:58.112 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: cluster 2024-09-06T14:59:58.042749+0000 mon.smithi003 (mon.0) 183 : cluster [DBG] mgrmap e16: smithi003.ghjsjw(active, since 1.01187s) 2024-09-06T14:59:58.112 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:58 smithi003 bash[19900]: cluster 2024-09-06T14:59:58.042749+0000 mon.smithi003 (mon.0) 183 : cluster [DBG] mgrmap e16: smithi003.ghjsjw(active, since 1.01187s) 2024-09-06T14:59:58.129 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:59.170 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T14:59:59.456 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:59 smithi003 bash[19900]: audit 2024-09-06T14:59:58.407518+0000 mon.smithi003 (mon.0) 184 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:59.456 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:59 smithi003 bash[19900]: audit 2024-09-06T14:59:58.407518+0000 mon.smithi003 (mon.0) 184 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T14:59:59.456 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:59 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.509521+0000 mgr.smithi003.ghjsjw (mgr.14197) 3 : cephadm [INF] [06/Sep/2024:14:59:58] ENGINE Bus STARTING 2024-09-06T14:59:59.456 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:59 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.509521+0000 mgr.smithi003.ghjsjw (mgr.14197) 3 : cephadm [INF] [06/Sep/2024:14:59:58] ENGINE Bus STARTING 2024-09-06T14:59:59.456 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:59 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.611447+0000 mgr.smithi003.ghjsjw (mgr.14197) 4 : cephadm [INF] [06/Sep/2024:14:59:58] ENGINE Serving on http://172.21.15.3:8765 2024-09-06T14:59:59.456 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 14:59:59 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.611447+0000 mgr.smithi003.ghjsjw (mgr.14197) 4 : cephadm [INF] [06/Sep/2024:14:59:58] ENGINE Serving on http://172.21.15.3:8765 2024-09-06T15:00:00.402 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 1 2024-09-06T15:00:00.402 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T15:00:00.402 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":1,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T14:57:12.273337Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-06T15:00:00.516 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.734733+0000 mgr.smithi003.ghjsjw (mgr.14197) 5 : cephadm [INF] [06/Sep/2024:14:59:58] ENGINE Serving on https://172.21.15.3:7150 2024-09-06T15:00:00.517 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.734733+0000 mgr.smithi003.ghjsjw (mgr.14197) 5 : cephadm [INF] [06/Sep/2024:14:59:58] ENGINE Serving on https://172.21.15.3:7150 2024-09-06T15:00:00.517 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.734919+0000 mgr.smithi003.ghjsjw (mgr.14197) 6 : cephadm [INF] [06/Sep/2024:14:59:58] ENGINE Bus STARTED 2024-09-06T15:00:00.517 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.734919+0000 mgr.smithi003.ghjsjw (mgr.14197) 6 : cephadm [INF] [06/Sep/2024:14:59:58] ENGINE Bus STARTED 2024-09-06T15:00:00.517 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.736760+0000 mgr.smithi003.ghjsjw (mgr.14197) 7 : cephadm [ERR] [06/Sep/2024:14:59:58] ENGINE Error in HTTPServer.serve 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: Traceback (most recent call last): 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: self._connections.run(self.expiration_interval) 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: self._run(expiration_interval) 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: s = self.context.wrap_socket( 2024-09-06T15:00:00.518 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: return self.sslsocket_class._create( 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: self.do_handshake() 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: self._sslobj.do_handshake() 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: cephadm 2024-09-06T14:59:58.736760+0000 mgr.smithi003.ghjsjw (mgr.14197) 7 : cephadm [ERR] [06/Sep/2024:14:59:58] ENGINE Error in HTTPServer.serve 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: Traceback (most recent call last): 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-06T15:00:00.519 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: self._connections.run(self.expiration_interval) 2024-09-06T15:00:00.520 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-06T15:00:00.520 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: self._run(expiration_interval) 2024-09-06T15:00:00.520 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-06T15:00:00.520 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: new_conn = self._from_server_socket(self.server.socket) 2024-09-06T15:00:00.520 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-06T15:00:00.520 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-06T15:00:00.520 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: s = self.context.wrap_socket( 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: return self.sslsocket_class._create( 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: self.do_handshake() 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: self._sslobj.do_handshake() 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: cluster 2024-09-06T14:59:59.416751+0000 mon.smithi003 (mon.0) 185 : cluster [DBG] mgrmap e17: smithi003.ghjsjw(active, since 2s) 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: cluster 2024-09-06T14:59:59.416751+0000 mon.smithi003 (mon.0) 185 : cluster [DBG] mgrmap e17: smithi003.ghjsjw(active, since 2s) 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: audit 2024-09-06T14:59:59.951245+0000 mon.smithi003 (mon.0) 186 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: audit 2024-09-06T14:59:59.951245+0000 mon.smithi003 (mon.0) 186 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:00.521 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: audit 2024-09-06T15:00:00.403827+0000 mon.smithi003 (mon.0) 187 : audit [DBG] from='client.? 172.21.15.120:0/409524680' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:00.522 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:00 smithi003 bash[19900]: audit 2024-09-06T15:00:00.403827+0000 mon.smithi003 (mon.0) 187 : audit [DBG] from='client.? 172.21.15.120:0/409524680' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:02.008 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T15:00:02.008 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T15:00:02.472 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:02 smithi003 bash[19900]: audit 2024-09-06T15:00:01.191742+0000 mon.smithi003 (mon.0) 188 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:02.472 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:02 smithi003 bash[19900]: audit 2024-09-06T15:00:01.191742+0000 mon.smithi003 (mon.0) 188 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:03.233 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T15:00:04.674 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-06T15:00:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:04 smithi003 bash[19900]: audit 2024-09-06T15:00:03.745105+0000 mon.smithi003 (mon.0) 189 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:04 smithi003 bash[19900]: audit 2024-09-06T15:00:03.745105+0000 mon.smithi003 (mon.0) 189 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:04 smithi003 bash[19900]: audit 2024-09-06T15:00:03.752291+0000 mon.smithi003 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:04 smithi003 bash[19900]: audit 2024-09-06T15:00:03.752291+0000 mon.smithi003 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:06.109 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T15:00:06.109 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":1,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T14:57:12.273337Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-06T15:00:06.109 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 1 2024-09-06T15:00:06.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:05 smithi003 bash[19900]: audit 2024-09-06T15:00:04.892046+0000 mon.smithi003 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:06.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:05 smithi003 bash[19900]: audit 2024-09-06T15:00:04.892046+0000 mon.smithi003 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:06.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:05 smithi003 bash[19900]: audit 2024-09-06T15:00:04.895875+0000 mon.smithi003 (mon.0) 192 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:06.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:05 smithi003 bash[19900]: audit 2024-09-06T15:00:04.895875+0000 mon.smithi003 (mon.0) 192 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:06.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:05 smithi003 bash[19900]: audit 2024-09-06T15:00:04.897632+0000 mon.smithi003 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"} : dispatch 2024-09-06T15:00:06.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:05 smithi003 bash[19900]: audit 2024-09-06T15:00:04.897632+0000 mon.smithi003 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"} : dispatch 2024-09-06T15:00:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:06 smithi003 bash[19900]: audit 2024-09-06T15:00:06.110406+0000 mon.smithi003 (mon.0) 194 : audit [DBG] from='client.? 172.21.15.120:0/1634414843' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:06 smithi003 bash[19900]: audit 2024-09-06T15:00:06.110406+0000 mon.smithi003 (mon.0) 194 : audit [DBG] from='client.? 172.21.15.120:0/1634414843' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:07.676 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T15:00:07.676 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.167093+0000 mon.smithi003 (mon.0) 195 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.167093+0000 mon.smithi003 (mon.0) 195 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.172524+0000 mon.smithi003 (mon.0) 196 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.172524+0000 mon.smithi003 (mon.0) 196 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.179492+0000 mon.smithi003 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.179492+0000 mon.smithi003 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.184848+0000 mon.smithi003 (mon.0) 198 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.184848+0000 mon.smithi003 (mon.0) 198 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.186595+0000 mon.smithi003 (mon.0) 199 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-06T15:00:08.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.186595+0000 mon.smithi003 (mon.0) 199 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.188792+0000 mon.smithi003 (mon.0) 200 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.188792+0000 mon.smithi003 (mon.0) 200 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.190719+0000 mon.smithi003 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.190719+0000 mon.smithi003 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.193475+0000 mgr.smithi003.ghjsjw (mgr.14197) 8 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.conf 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.193475+0000 mgr.smithi003.ghjsjw (mgr.14197) 8 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.conf 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.195406+0000 mgr.smithi003.ghjsjw (mgr.14197) 9 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.195406+0000 mgr.smithi003.ghjsjw (mgr.14197) 9 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-06T15:00:08.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.409869+0000 mgr.smithi003.ghjsjw (mgr.14197) 10 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:08.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.409869+0000 mgr.smithi003.ghjsjw (mgr.14197) 10 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:08.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.410068+0000 mgr.smithi003.ghjsjw (mgr.14197) 11 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:08.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.410068+0000 mgr.smithi003.ghjsjw (mgr.14197) 11 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:08.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.555386+0000 mgr.smithi003.ghjsjw (mgr.14197) 12 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:08.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.555386+0000 mgr.smithi003.ghjsjw (mgr.14197) 12 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:08.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.607771+0000 mgr.smithi003.ghjsjw (mgr.14197) 13 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:08.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.607771+0000 mgr.smithi003.ghjsjw (mgr.14197) 13 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.831316+0000 mon.smithi003 (mon.0) 202 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.831316+0000 mon.smithi003 (mon.0) 202 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.835459+0000 mon.smithi003 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.835459+0000 mon.smithi003 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.876556+0000 mon.smithi003 (mon.0) 204 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.876556+0000 mon.smithi003 (mon.0) 204 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.882614+0000 mon.smithi003 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.882614+0000 mon.smithi003 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.888554+0000 mon.smithi003 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.888554+0000 mon.smithi003 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.890464+0000 mon.smithi003 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.890464+0000 mon.smithi003 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:00:08.653 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.892356+0000 mon.smithi003 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T15:00:08.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.892356+0000 mon.smithi003 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T15:00:08.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.896192+0000 mon.smithi003 (mon.0) 209 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:08.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:08 smithi003 bash[19900]: audit 2024-09-06T15:00:07.896192+0000 mon.smithi003 (mon.0) 209 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:08.897 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:09.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:09 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.683983+0000 mgr.smithi003.ghjsjw (mgr.14197) 14 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T15:00:09.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:09 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.683983+0000 mgr.smithi003.ghjsjw (mgr.14197) 14 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T15:00:09.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:09 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.745311+0000 mgr.smithi003.ghjsjw (mgr.14197) 15 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T15:00:09.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:09 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.745311+0000 mgr.smithi003.ghjsjw (mgr.14197) 15 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T15:00:09.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:09 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.897392+0000 mgr.smithi003.ghjsjw (mgr.14197) 16 : cephadm [INF] Deploying daemon ceph-exporter.smithi120 on smithi120 2024-09-06T15:00:09.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:09 smithi003 bash[19900]: cephadm 2024-09-06T15:00:07.897392+0000 mgr.smithi003.ghjsjw (mgr.14197) 16 : cephadm [INF] Deploying daemon ceph-exporter.smithi120 on smithi120 2024-09-06T15:00:10.530 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T15:00:10.530 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":1,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T14:57:12.273337Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-06T15:00:10.530 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 1 2024-09-06T15:00:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:10 smithi003 bash[19900]: audit 2024-09-06T15:00:10.532004+0000 mon.smithi003 (mon.0) 210 : audit [DBG] from='client.? 172.21.15.120:0/2734613859' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:10 smithi003 bash[19900]: audit 2024-09-06T15:00:10.532004+0000 mon.smithi003 (mon.0) 210 : audit [DBG] from='client.? 172.21.15.120:0/2734613859' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:12.129 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T15:00:12.130 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T15:00:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.811881+0000 mon.smithi003 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.811881+0000 mon.smithi003 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.818374+0000 mon.smithi003 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.818374+0000 mon.smithi003 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.825163+0000 mon.smithi003 (mon.0) 213 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.825163+0000 mon.smithi003 (mon.0) 213 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.831170+0000 mon.smithi003 (mon.0) 214 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.831170+0000 mon.smithi003 (mon.0) 214 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.834066+0000 mon.smithi003 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.834066+0000 mon.smithi003 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.836328+0000 mon.smithi003 (mon.0) 216 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T15:00:13.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.836328+0000 mon.smithi003 (mon.0) 216 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T15:00:13.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.840656+0000 mon.smithi003 (mon.0) 217 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:13.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:11.840656+0000 mon.smithi003 (mon.0) 217 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:13.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: cephadm 2024-09-06T15:00:11.842629+0000 mgr.smithi003.ghjsjw (mgr.14197) 17 : cephadm [INF] Deploying daemon crash.smithi120 on smithi120 2024-09-06T15:00:13.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: cephadm 2024-09-06T15:00:11.842629+0000 mgr.smithi003.ghjsjw (mgr.14197) 17 : cephadm [INF] Deploying daemon crash.smithi120 on smithi120 2024-09-06T15:00:13.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:12.523613+0000 mon.smithi003 (mon.0) 218 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:12.523613+0000 mon.smithi003 (mon.0) 218 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:13.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:12.524108+0000 mon.smithi003 (mon.0) 219 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:13.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:12 smithi003 bash[19900]: audit 2024-09-06T15:00:12.524108+0000 mon.smithi003 (mon.0) 219 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:13.339 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:15.173 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T15:00:15.173 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":1,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T14:57:12.273337Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-06T15:00:15.173 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 1 2024-09-06T15:00:16.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.111499+0000 mon.smithi003 (mon.0) 220 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:16.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.111499+0000 mon.smithi003 (mon.0) 220 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.117241+0000 mon.smithi003 (mon.0) 221 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.117241+0000 mon.smithi003 (mon.0) 221 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.123088+0000 mon.smithi003 (mon.0) 222 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.123088+0000 mon.smithi003 (mon.0) 222 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.130969+0000 mon.smithi003 (mon.0) 223 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.130969+0000 mon.smithi003 (mon.0) 223 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: cephadm 2024-09-06T15:00:15.134120+0000 mgr.smithi003.ghjsjw (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi120 on smithi120 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: cephadm 2024-09-06T15:00:15.134120+0000 mgr.smithi003.ghjsjw (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi120 on smithi120 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.175065+0000 mon.smithi003 (mon.0) 224 : audit [DBG] from='client.? 172.21.15.120:0/3342058088' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:16 smithi003 bash[19900]: audit 2024-09-06T15:00:15.175065+0000 mon.smithi003 (mon.0) 224 : audit [DBG] from='client.? 172.21.15.120:0/3342058088' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:17.323 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T15:00:17.324 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.476936+0000 mon.smithi003 (mon.0) 225 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.476936+0000 mon.smithi003 (mon.0) 225 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.483339+0000 mon.smithi003 (mon.0) 226 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.483339+0000 mon.smithi003 (mon.0) 226 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.489933+0000 mon.smithi003 (mon.0) 227 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.489933+0000 mon.smithi003 (mon.0) 227 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.495912+0000 mon.smithi003 (mon.0) 228 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.495912+0000 mon.smithi003 (mon.0) 228 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.500246+0000 mon.smithi003 (mon.0) 229 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:00:17.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.500246+0000 mon.smithi003 (mon.0) 229 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:00:17.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.502600+0000 mon.smithi003 (mon.0) 230 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-06T15:00:17.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.502600+0000 mon.smithi003 (mon.0) 230 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-06T15:00:17.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.507241+0000 mon.smithi003 (mon.0) 231 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:00:17.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.507241+0000 mon.smithi003 (mon.0) 231 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:00:17.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.509203+0000 mon.smithi003 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:17.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: audit 2024-09-06T15:00:16.509203+0000 mon.smithi003 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:17.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: cephadm 2024-09-06T15:00:16.511274+0000 mgr.smithi003.ghjsjw (mgr.14197) 19 : cephadm [INF] Deploying daemon mgr.smithi120.nvkvbd on smithi120 2024-09-06T15:00:17.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:17 smithi003 bash[19900]: cephadm 2024-09-06T15:00:16.511274+0000 mgr.smithi003.ghjsjw (mgr.14197) 19 : cephadm [INF] Deploying daemon mgr.smithi120.nvkvbd on smithi120 2024-09-06T15:00:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:18 smithi003 bash[19900]: cluster 2024-09-06T15:00:17.044251+0000 mgr.smithi003.ghjsjw (mgr.14197) 20 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:18 smithi003 bash[19900]: cluster 2024-09-06T15:00:17.044251+0000 mgr.smithi003.ghjsjw (mgr.14197) 20 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:18 smithi003 bash[19900]: audit 2024-09-06T15:00:17.530502+0000 mon.smithi003 (mon.0) 233 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:18.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:18 smithi003 bash[19900]: audit 2024-09-06T15:00:17.530502+0000 mon.smithi003 (mon.0) 233 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:20 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:00:20.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: cluster 2024-09-06T15:00:19.044782+0000 mgr.smithi003.ghjsjw (mgr.14197) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: cluster 2024-09-06T15:00:19.044782+0000 mgr.smithi003.ghjsjw (mgr.14197) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.973884+0000 mon.smithi003 (mon.0) 234 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.973884+0000 mon.smithi003 (mon.0) 234 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.979803+0000 mon.smithi003 (mon.0) 235 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.979803+0000 mon.smithi003 (mon.0) 235 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.986418+0000 mon.smithi003 (mon.0) 236 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.986418+0000 mon.smithi003 (mon.0) 236 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.992009+0000 mon.smithi003 (mon.0) 237 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.992009+0000 mon.smithi003 (mon.0) 237 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.995254+0000 mon.smithi003 (mon.0) 238 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:00:20.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.995254+0000 mon.smithi003 (mon.0) 238 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:00:20.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.997081+0000 mon.smithi003 (mon.0) 239 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:20.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:20 smithi003 bash[19900]: audit 2024-09-06T15:00:19.997081+0000 mon.smithi003 (mon.0) 239 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:21.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:21 smithi003 bash[19900]: cephadm 2024-09-06T15:00:19.999123+0000 mgr.smithi003.ghjsjw (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi120 on smithi120 2024-09-06T15:00:21.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:21 smithi003 bash[19900]: cephadm 2024-09-06T15:00:19.999123+0000 mgr.smithi003.ghjsjw (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi120 on smithi120 2024-09-06T15:00:22.035 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:22 smithi003 bash[19900]: cluster 2024-09-06T15:00:21.045249+0000 mgr.smithi003.ghjsjw (mgr.14197) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:22 smithi003 bash[19900]: cluster 2024-09-06T15:00:21.045249+0000 mgr.smithi003.ghjsjw (mgr.14197) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:23.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:23 smithi003 bash[19900]: audit 2024-09-06T15:00:22.537748+0000 mon.smithi003 (mon.0) 240 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:23.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:23 smithi003 bash[19900]: audit 2024-09-06T15:00:22.537748+0000 mon.smithi003 (mon.0) 240 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:24.411 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T15:00:24.411 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":1,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T14:57:12.273337Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-06T15:00:24.412 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 1 2024-09-06T15:00:24.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:24 smithi003 bash[19900]: cluster 2024-09-06T15:00:23.045748+0000 mgr.smithi003.ghjsjw (mgr.14197) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:24.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:24 smithi003 bash[19900]: cluster 2024-09-06T15:00:23.045748+0000 mgr.smithi003.ghjsjw (mgr.14197) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:24.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:24 smithi003 bash[19900]: audit 2024-09-06T15:00:24.413233+0000 mon.smithi003 (mon.0) 241 : audit [DBG] from='client.? 172.21.15.120:0/4225053505' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:24.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:24 smithi003 bash[19900]: audit 2024-09-06T15:00:24.413233+0000 mon.smithi003 (mon.0) 241 : audit [DBG] from='client.? 172.21.15.120:0/4225053505' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:26.357 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-06T15:00:26.358 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mon dump -f json 2024-09-06T15:00:26.692 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:26 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:00:26.692 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:26 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:00:26.692 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:26 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:00:26.801 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:26 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:00:26.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:26 smithi003 bash[19900]: cluster 2024-09-06T15:00:25.046342+0000 mgr.smithi003.ghjsjw (mgr.14197) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:26.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:26 smithi003 bash[19900]: cluster 2024-09-06T15:00:25.046342+0000 mgr.smithi003.ghjsjw (mgr.14197) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:27.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:26 smithi120 systemd[1]: Started Ceph mon.smithi120 for 0f20e064-6c60-11ef-bce4-c7b262605968. 2024-09-06T15:00:27.861 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.852+0000 7fa33834ac80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.852+0000 7fa33834ac80 0 ceph version 19.3.0-4704-g8b38c33c (8b38c33cecf4b0b7a9b3116eb9089e21e444ac73) squid (dev), process ceph-mon, pid 7 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.852+0000 7fa33834ac80 0 pidfile_write: ignore empty --pid-file 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 0 load: jerasure load: lrc 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: RocksDB version: 7.9.2 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Git sha 0 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Compile date 2024-09-04 13:52:53 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: DB SUMMARY 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: DB Session ID: WAAR8A9R0SWHDOOHA0GJ 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: CURRENT file: CURRENT 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-06T15:00:27.862 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi120/store.db dir, Total Num: 0, files: 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi120/store.db: 000004.log size: 511 ; 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.error_if_exists: 0 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.create_if_missing: 0 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.paranoid_checks: 1 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.env: 0x55eba77da160 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.info_log: 0x55eba8f5ba60 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-06T15:00:27.863 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.statistics: (nil) 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.use_fsync: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_log_file_size: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.allow_fallocate: 1 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.use_direct_reads: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-06T15:00:27.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.db_log_dir: 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.wal_dir: 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.write_buffer_manager: 0x55eba8f5ee60 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-06T15:00:27.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-06T15:00:27.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-06T15:00:27.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-06T15:00:27.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-06T15:00:27.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.unordered_write: 0 2024-09-06T15:00:27.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-06T15:00:27.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-06T15:00:27.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-06T15:00:27.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-06T15:00:27.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.row_cache: None 2024-09-06T15:00:27.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.wal_filter: None 2024-09-06T15:00:27.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.two_write_queues: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.wal_compression: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.atomic_flush: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.log_readahead_size: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-06T15:00:27.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_background_jobs: 2 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_background_compactions: -1 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_subcompactions: 1 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-06T15:00:27.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_open_files: -1 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-06T15:00:27.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_background_flushes: -1 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Compression algorithms supported: 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: kZSTD supported: 0 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: kXpressCompression supported: 0 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: kBZip2Compression supported: 0 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: kLZ4Compression supported: 1 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: kZlibCompression supported: 1 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: kSnappyCompression supported: 1 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi120/store.db/MANIFEST-000005 2024-09-06T15:00:27.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.merge_operator: 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_filter: None 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55eba8f5b6e0) 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cache_index_and_filter_blocks: 1 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: pin_top_level_index_and_filter: 1 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: index_type: 0 2024-09-06T15:00:28.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: data_block_index_type: 0 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: index_shortening: 1 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: data_block_hash_table_util_ratio: 0.750000 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: checksum: 4 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: no_block_cache: 0 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: block_cache: 0x55eba8f50850 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: block_cache_name: BinnedLRUCache 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: block_cache_options: 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: capacity : 536870912 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: num_shard_bits : 4 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: strict_capacity_limit : 0 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: high_pri_pool_ratio: 0.000 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: block_cache_compressed: (nil) 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: persistent_cache: (nil) 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: block_size: 4096 2024-09-06T15:00:28.001 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: block_size_deviation: 10 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: block_restart_interval: 16 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: index_block_restart_interval: 1 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: metadata_block_size: 4096 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: partition_filters: 0 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: use_delta_encoding: 1 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: filter_policy: bloomfilter 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: whole_key_filtering: 1 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: verify_compression: 0 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: read_amp_bytes_per_bit: 0 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: format_version: 5 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: enable_index_compression: 1 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: block_align: 0 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: max_auto_readahead_size: 262144 2024-09-06T15:00:28.002 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: prepopulate_block_cache: 0 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: initial_auto_readahead_size: 8192 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: num_file_reads_for_auto_readahead: 2 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression: NoCompression 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.num_levels: 7 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-06T15:00:28.003 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-06T15:00:28.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-06T15:00:28.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-06T15:00:28.008 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-06T15:00:28.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-06T15:00:28.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.inplace_update_support: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.bloom_locality: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.max_successive_merges: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.ttl: 2592000 2024-09-06T15:00:28.011 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.enable_blob_files: false 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.min_blob_size: 0 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.856+0000 7fa33834ac80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-06T15:00:28.012 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi120/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 6a131051-3825-438c-9ee6-63ef10edc0b2 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725634827867546, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725634827867958, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1725634827, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "6a131051-3825-438c-9ee6-63ef10edc0b2", "db_session_id": "WAAR8A9R0SWHDOOHA0GJ", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725634827868063, "job": 1, "event": "recovery_finished"} 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi120/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55eba8f7ee00 2024-09-06T15:00:28.013 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 4 rocksdb: DB pointer 0x55eba9082000 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa32e112640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa32e112640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: ** DB Stats ** 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: ** Compaction Stats [default] ** 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-06T15:00:28.014 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: ** Compaction Stats [default] ** 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: AddFile(Total Files): cumulative 0, interval 0 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: AddFile(Keys): cumulative 0, interval 0 2024-09-06T15:00:28.015 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Cumulative compaction: 0.00 GB write, 0.20 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Interval compaction: 0.00 GB write, 0.20 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Block cache BinnedLRUCache@0x55eba8f50850#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: ** File Read Latency Histogram By Level [default] ** 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 0 mon.smithi120 does not exist in monmap, will attempt to join an existing cluster 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 0 using public_addr v2:172.21.15.120:0/0 -> [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 0 starting mon.smithi120 rank -1 at public addrs [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] at bind addrs [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi120 fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.864+0000 7fa33834ac80 1 mon.smithi120@-1(???) e0 preinit fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 0 mon.smithi120@-1(synchronizing).mds e1 new map 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 0 mon.smithi120@-1(synchronizing).mds e1 print_map 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: e1 2024-09-06T15:00:28.016 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: btime 2024-09-06T14:57:17:606023+0000 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: legacy client fscid: -1 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: No filesystems configured 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 1 mon.smithi120@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 1 mon.smithi120@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 1 mon.smithi120@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 1 mon.smithi120@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 1 mon.smithi120@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 1 mon.smithi120@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 1 mon.smithi120@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-06T15:00:28.017 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 0 mon.smithi120@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 0 mon.smithi120@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 0 mon.smithi120@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.896+0000 7fa331118640 0 mon.smithi120@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:01.191742+0000 mon.smithi003 (mon.0) 188 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:01.191742+0000 mon.smithi003 (mon.0) 188 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:03.745105+0000 mon.smithi003 (mon.0) 189 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:03.745105+0000 mon.smithi003 (mon.0) 189 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:03.752291+0000 mon.smithi003 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:03.752291+0000 mon.smithi003 (mon.0) 190 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:04.892046+0000 mon.smithi003 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:04.892046+0000 mon.smithi003 (mon.0) 191 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:04.895875+0000 mon.smithi003 (mon.0) 192 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.018 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:04.895875+0000 mon.smithi003 (mon.0) 192 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:04.897632+0000 mon.smithi003 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"} : dispatch 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:04.897632+0000 mon.smithi003 (mon.0) 193 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi003", "name": "osd_memory_target"} : dispatch 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:06.110406+0000 mon.smithi003 (mon.0) 194 : audit [DBG] from='client.? 172.21.15.120:0/1634414843' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:06.110406+0000 mon.smithi003 (mon.0) 194 : audit [DBG] from='client.? 172.21.15.120:0/1634414843' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.167093+0000 mon.smithi003 (mon.0) 195 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.167093+0000 mon.smithi003 (mon.0) 195 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.172524+0000 mon.smithi003 (mon.0) 196 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.172524+0000 mon.smithi003 (mon.0) 196 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.179492+0000 mon.smithi003 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.019 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.179492+0000 mon.smithi003 (mon.0) 197 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.184848+0000 mon.smithi003 (mon.0) 198 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.184848+0000 mon.smithi003 (mon.0) 198 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.186595+0000 mon.smithi003 (mon.0) 199 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.186595+0000 mon.smithi003 (mon.0) 199 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.188792+0000 mon.smithi003 (mon.0) 200 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.188792+0000 mon.smithi003 (mon.0) 200 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.190719+0000 mon.smithi003 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.190719+0000 mon.smithi003 (mon.0) 201 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.193475+0000 mgr.smithi003.ghjsjw (mgr.14197) 8 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.conf 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.193475+0000 mgr.smithi003.ghjsjw (mgr.14197) 8 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.conf 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.195406+0000 mgr.smithi003.ghjsjw (mgr.14197) 9 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-06T15:00:28.020 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.195406+0000 mgr.smithi003.ghjsjw (mgr.14197) 9 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.409869+0000 mgr.smithi003.ghjsjw (mgr.14197) 10 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.409869+0000 mgr.smithi003.ghjsjw (mgr.14197) 10 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.410068+0000 mgr.smithi003.ghjsjw (mgr.14197) 11 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.410068+0000 mgr.smithi003.ghjsjw (mgr.14197) 11 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.555386+0000 mgr.smithi003.ghjsjw (mgr.14197) 12 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.555386+0000 mgr.smithi003.ghjsjw (mgr.14197) 12 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.607771+0000 mgr.smithi003.ghjsjw (mgr.14197) 13 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.607771+0000 mgr.smithi003.ghjsjw (mgr.14197) 13 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.831316+0000 mon.smithi003 (mon.0) 202 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.831316+0000 mon.smithi003 (mon.0) 202 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.835459+0000 mon.smithi003 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.835459+0000 mon.smithi003 (mon.0) 203 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.876556+0000 mon.smithi003 (mon.0) 204 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.021 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.876556+0000 mon.smithi003 (mon.0) 204 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.882614+0000 mon.smithi003 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.882614+0000 mon.smithi003 (mon.0) 205 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.888554+0000 mon.smithi003 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.888554+0000 mon.smithi003 (mon.0) 206 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.890464+0000 mon.smithi003 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.890464+0000 mon.smithi003 (mon.0) 207 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.892356+0000 mon.smithi003 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.892356+0000 mon.smithi003 (mon.0) 208 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.896192+0000 mon.smithi003 (mon.0) 209 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:07.896192+0000 mon.smithi003 (mon.0) 209 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.683983+0000 mgr.smithi003.ghjsjw (mgr.14197) 14 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.683983+0000 mgr.smithi003.ghjsjw (mgr.14197) 14 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T15:00:28.022 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.745311+0000 mgr.smithi003.ghjsjw (mgr.14197) 15 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.745311+0000 mgr.smithi003.ghjsjw (mgr.14197) 15 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.client.admin.keyring 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.897392+0000 mgr.smithi003.ghjsjw (mgr.14197) 16 : cephadm [INF] Deploying daemon ceph-exporter.smithi120 on smithi120 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:07.897392+0000 mgr.smithi003.ghjsjw (mgr.14197) 16 : cephadm [INF] Deploying daemon ceph-exporter.smithi120 on smithi120 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:10.532004+0000 mon.smithi003 (mon.0) 210 : audit [DBG] from='client.? 172.21.15.120:0/2734613859' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:10.532004+0000 mon.smithi003 (mon.0) 210 : audit [DBG] from='client.? 172.21.15.120:0/2734613859' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.811881+0000 mon.smithi003 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.811881+0000 mon.smithi003 (mon.0) 211 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.818374+0000 mon.smithi003 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.818374+0000 mon.smithi003 (mon.0) 212 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.825163+0000 mon.smithi003 (mon.0) 213 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.825163+0000 mon.smithi003 (mon.0) 213 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.831170+0000 mon.smithi003 (mon.0) 214 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.831170+0000 mon.smithi003 (mon.0) 214 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.023 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.834066+0000 mon.smithi003 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.834066+0000 mon.smithi003 (mon.0) 215 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.836328+0000 mon.smithi003 (mon.0) 216 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.836328+0000 mon.smithi003 (mon.0) 216 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.840656+0000 mon.smithi003 (mon.0) 217 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:11.840656+0000 mon.smithi003 (mon.0) 217 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:11.842629+0000 mgr.smithi003.ghjsjw (mgr.14197) 17 : cephadm [INF] Deploying daemon crash.smithi120 on smithi120 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:11.842629+0000 mgr.smithi003.ghjsjw (mgr.14197) 17 : cephadm [INF] Deploying daemon crash.smithi120 on smithi120 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:12.523613+0000 mon.smithi003 (mon.0) 218 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:12.523613+0000 mon.smithi003 (mon.0) 218 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:12.524108+0000 mon.smithi003 (mon.0) 219 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:12.524108+0000 mon.smithi003 (mon.0) 219 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.111499+0000 mon.smithi003 (mon.0) 220 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.024 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.111499+0000 mon.smithi003 (mon.0) 220 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.117241+0000 mon.smithi003 (mon.0) 221 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.117241+0000 mon.smithi003 (mon.0) 221 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.123088+0000 mon.smithi003 (mon.0) 222 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.123088+0000 mon.smithi003 (mon.0) 222 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.130969+0000 mon.smithi003 (mon.0) 223 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.130969+0000 mon.smithi003 (mon.0) 223 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:15.134120+0000 mgr.smithi003.ghjsjw (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi120 on smithi120 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:15.134120+0000 mgr.smithi003.ghjsjw (mgr.14197) 18 : cephadm [INF] Deploying daemon node-exporter.smithi120 on smithi120 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.175065+0000 mon.smithi003 (mon.0) 224 : audit [DBG] from='client.? 172.21.15.120:0/3342058088' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:15.175065+0000 mon.smithi003 (mon.0) 224 : audit [DBG] from='client.? 172.21.15.120:0/3342058088' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.476936+0000 mon.smithi003 (mon.0) 225 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.476936+0000 mon.smithi003 (mon.0) 225 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.483339+0000 mon.smithi003 (mon.0) 226 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.483339+0000 mon.smithi003 (mon.0) 226 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.489933+0000 mon.smithi003 (mon.0) 227 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.489933+0000 mon.smithi003 (mon.0) 227 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.495912+0000 mon.smithi003 (mon.0) 228 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.495912+0000 mon.smithi003 (mon.0) 228 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.500246+0000 mon.smithi003 (mon.0) 229 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.500246+0000 mon.smithi003 (mon.0) 229 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.502600+0000 mon.smithi003 (mon.0) 230 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.502600+0000 mon.smithi003 (mon.0) 230 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.507241+0000 mon.smithi003 (mon.0) 231 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.507241+0000 mon.smithi003 (mon.0) 231 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.509203+0000 mon.smithi003 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:16.509203+0000 mon.smithi003 (mon.0) 232 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:16.511274+0000 mgr.smithi003.ghjsjw (mgr.14197) 19 : cephadm [INF] Deploying daemon mgr.smithi120.nvkvbd on smithi120 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:16.511274+0000 mgr.smithi003.ghjsjw (mgr.14197) 19 : cephadm [INF] Deploying daemon mgr.smithi120.nvkvbd on smithi120 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:17.044251+0000 mgr.smithi003.ghjsjw (mgr.14197) 20 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:17.044251+0000 mgr.smithi003.ghjsjw (mgr.14197) 20 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:17.530502+0000 mon.smithi003 (mon.0) 233 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:17.530502+0000 mon.smithi003 (mon.0) 233 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:19.044782+0000 mgr.smithi003.ghjsjw (mgr.14197) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:19.044782+0000 mgr.smithi003.ghjsjw (mgr.14197) 21 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.973884+0000 mon.smithi003 (mon.0) 234 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.973884+0000 mon.smithi003 (mon.0) 234 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.979803+0000 mon.smithi003 (mon.0) 235 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.979803+0000 mon.smithi003 (mon.0) 235 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.986418+0000 mon.smithi003 (mon.0) 236 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.986418+0000 mon.smithi003 (mon.0) 236 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.992009+0000 mon.smithi003 (mon.0) 237 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.992009+0000 mon.smithi003 (mon.0) 237 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.995254+0000 mon.smithi003 (mon.0) 238 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.995254+0000 mon.smithi003 (mon.0) 238 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.997081+0000 mon.smithi003 (mon.0) 239 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:19.997081+0000 mon.smithi003 (mon.0) 239 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:19.999123+0000 mgr.smithi003.ghjsjw (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi120 on smithi120 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cephadm 2024-09-06T15:00:19.999123+0000 mgr.smithi003.ghjsjw (mgr.14197) 22 : cephadm [INF] Deploying daemon mon.smithi120 on smithi120 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:21.045249+0000 mgr.smithi003.ghjsjw (mgr.14197) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:21.045249+0000 mgr.smithi003.ghjsjw (mgr.14197) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:22.537748+0000 mon.smithi003 (mon.0) 240 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:22.537748+0000 mon.smithi003 (mon.0) 240 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:23.045748+0000 mgr.smithi003.ghjsjw (mgr.14197) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:23.045748+0000 mgr.smithi003.ghjsjw (mgr.14197) 24 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:24.413233+0000 mon.smithi003 (mon.0) 241 : audit [DBG] from='client.? 172.21.15.120:0/4225053505' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:24.413233+0000 mon.smithi003 (mon.0) 241 : audit [DBG] from='client.? 172.21.15.120:0/4225053505' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:25.046342+0000 mgr.smithi003.ghjsjw (mgr.14197) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:25.046342+0000 mgr.smithi003.ghjsjw (mgr.14197) 25 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.850557+0000 mon.smithi003 (mon.0) 242 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.850557+0000 mon.smithi003 (mon.0) 242 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.857111+0000 mon.smithi003 (mon.0) 243 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.857111+0000 mon.smithi003 (mon.0) 243 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.863609+0000 mon.smithi003 (mon.0) 244 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.863609+0000 mon.smithi003 (mon.0) 244 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.870017+0000 mon.smithi003 (mon.0) 245 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.029 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.870017+0000 mon.smithi003 (mon.0) 245 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.879856+0000 mon.smithi003 (mon.0) 246 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.879856+0000 mon.smithi003 (mon.0) 246 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.936244+0000 mon.smithi003 (mon.0) 247 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:26.936244+0000 mon.smithi003 (mon.0) 247 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:27.046843+0000 mgr.smithi003.ghjsjw (mgr.14197) 26 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: cluster 2024-09-06T15:00:27.046843+0000 mgr.smithi003.ghjsjw (mgr.14197) 26 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:27.520767+0000 mon.smithi003 (mon.0) 248 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:27.520767+0000 mon.smithi003 (mon.0) 248 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:27.552133+0000 mon.smithi003 (mon.0) 249 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: audit 2024-09-06T15:00:27.552133+0000 mon.smithi003 (mon.0) 249 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:27 smithi120 bash[24835]: debug 2024-09-06T15:00:27.900+0000 7fa331118640 1 mon.smithi120@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-06T15:00:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.850557+0000 mon.smithi003 (mon.0) 242 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.850557+0000 mon.smithi003 (mon.0) 242 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.857111+0000 mon.smithi003 (mon.0) 243 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.857111+0000 mon.smithi003 (mon.0) 243 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.863609+0000 mon.smithi003 (mon.0) 244 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.863609+0000 mon.smithi003 (mon.0) 244 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.870017+0000 mon.smithi003 (mon.0) 245 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.870017+0000 mon.smithi003 (mon.0) 245 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.879856+0000 mon.smithi003 (mon.0) 246 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.879856+0000 mon.smithi003 (mon.0) 246 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.936244+0000 mon.smithi003 (mon.0) 247 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:26.936244+0000 mon.smithi003 (mon.0) 247 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:00:28.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: cluster 2024-09-06T15:00:27.046843+0000 mgr.smithi003.ghjsjw (mgr.14197) 26 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: cluster 2024-09-06T15:00:27.046843+0000 mgr.smithi003.ghjsjw (mgr.14197) 26 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:28.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:27.520767+0000 mon.smithi003 (mon.0) 248 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:28.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:27.520767+0000 mon.smithi003 (mon.0) 248 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:28.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:27.552133+0000 mon.smithi003 (mon.0) 249 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:28.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:27 smithi003 bash[19900]: audit 2024-09-06T15:00:27.552133+0000 mon.smithi003 (mon.0) 249 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:32.123 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi120/config 2024-09-06T15:00:33.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:27.919016+0000 mon.smithi003 (mon.0) 251 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:27.919016+0000 mon.smithi003 (mon.0) 251 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:27.919394+0000 mon.smithi003 (mon.0) 252 : cluster [INF] mon.smithi003 calling monitor election 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:27.919394+0000 mon.smithi003 (mon.0) 252 : cluster [INF] mon.smithi003 calling monitor election 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:27.942089+0000 mon.smithi003 (mon.0) 253 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:27.942089+0000 mon.smithi003 (mon.0) 253 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:28.508919+0000 mgr.smithi120.nvkvbd (mgr.14214) 1 : cluster [ERR] Failed to load ceph-mgr modules: volumes 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:28.508919+0000 mgr.smithi120.nvkvbd (mgr.14214) 1 : cluster [ERR] Failed to load ceph-mgr modules: volumes 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:28.532393+0000 mon.smithi003 (mon.0) 254 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi120.nvkvbd/crt"} : dispatch 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:28.532393+0000 mon.smithi003 (mon.0) 254 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi120.nvkvbd/crt"} : dispatch 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:28.912111+0000 mon.smithi003 (mon.0) 255 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:28.912111+0000 mon.smithi003 (mon.0) 255 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:29.047295+0000 mgr.smithi003.ghjsjw (mgr.14197) 27 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:29.047295+0000 mgr.smithi003.ghjsjw (mgr.14197) 27 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:29.912300+0000 mon.smithi003 (mon.0) 256 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:29.912300+0000 mon.smithi003 (mon.0) 256 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:29.913921+0000 mon.smithi120 (mon.1) 1 : cluster [INF] mon.smithi120 calling monitor election 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:29.913921+0000 mon.smithi120 (mon.1) 1 : cluster [INF] mon.smithi120 calling monitor election 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:30.912791+0000 mon.smithi003 (mon.0) 257 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:30.912791+0000 mon.smithi003 (mon.0) 257 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:31.047715+0000 mgr.smithi003.ghjsjw (mgr.14197) 28 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:31.047715+0000 mgr.smithi003.ghjsjw (mgr.14197) 28 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:31.912814+0000 mon.smithi003 (mon.0) 258 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:31.912814+0000 mon.smithi003 (mon.0) 258 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:32.912955+0000 mon.smithi003 (mon.0) 259 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:32.912955+0000 mon.smithi003 (mon.0) 259 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.965780+0000 mon.smithi003 (mon.0) 260 : cluster [INF] mon.smithi003 is new leader, mons smithi003,smithi120 in quorum (ranks 0,1) 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.965780+0000 mon.smithi003 (mon.0) 260 : cluster [INF] mon.smithi003 is new leader, mons smithi003,smithi120 in quorum (ranks 0,1) 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973030+0000 mon.smithi003 (mon.0) 261 : cluster [DBG] monmap epoch 2 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973030+0000 mon.smithi003 (mon.0) 261 : cluster [DBG] monmap epoch 2 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973076+0000 mon.smithi003 (mon.0) 262 : cluster [DBG] fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973076+0000 mon.smithi003 (mon.0) 262 : cluster [DBG] fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973112+0000 mon.smithi003 (mon.0) 263 : cluster [DBG] last_changed 2024-09-06T15:00:27.911715+0000 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973112+0000 mon.smithi003 (mon.0) 263 : cluster [DBG] last_changed 2024-09-06T15:00:27.911715+0000 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973154+0000 mon.smithi003 (mon.0) 264 : cluster [DBG] created 2024-09-06T14:57:12.273337+0000 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973154+0000 mon.smithi003 (mon.0) 264 : cluster [DBG] created 2024-09-06T14:57:12.273337+0000 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973200+0000 mon.smithi003 (mon.0) 265 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T15:00:33.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973200+0000 mon.smithi003 (mon.0) 265 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T15:00:33.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973238+0000 mon.smithi003 (mon.0) 266 : cluster [DBG] election_strategy: 1 2024-09-06T15:00:33.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973238+0000 mon.smithi003 (mon.0) 266 : cluster [DBG] election_strategy: 1 2024-09-06T15:00:33.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973263+0000 mon.smithi003 (mon.0) 267 : cluster [DBG] 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T15:00:33.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973263+0000 mon.smithi003 (mon.0) 267 : cluster [DBG] 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T15:00:33.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973288+0000 mon.smithi003 (mon.0) 268 : cluster [DBG] 1: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-06T15:00:33.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.973288+0000 mon.smithi003 (mon.0) 268 : cluster [DBG] 1: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.993883+0000 mon.smithi003 (mon.0) 269 : cluster [DBG] fsmap 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.993883+0000 mon.smithi003 (mon.0) 269 : cluster [DBG] fsmap 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.993935+0000 mon.smithi003 (mon.0) 270 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.993935+0000 mon.smithi003 (mon.0) 270 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994214+0000 mon.smithi003 (mon.0) 271 : cluster [DBG] mgrmap e17: smithi003.ghjsjw(active, since 35s) 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994214+0000 mon.smithi003 (mon.0) 271 : cluster [DBG] mgrmap e17: smithi003.ghjsjw(active, since 35s) 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994476+0000 mon.smithi003 (mon.0) 272 : cluster [WRN] Health detail: HEALTH_WARN Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994476+0000 mon.smithi003 (mon.0) 272 : cluster [WRN] Health detail: HEALTH_WARN Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994508+0000 mon.smithi003 (mon.0) 273 : cluster [WRN] [WRN] MGR_MODULE_DEPENDENCY: Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994508+0000 mon.smithi003 (mon.0) 273 : cluster [WRN] [WRN] MGR_MODULE_DEPENDENCY: Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994531+0000 mon.smithi003 (mon.0) 274 : cluster [WRN] Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994531+0000 mon.smithi003 (mon.0) 274 : cluster [WRN] Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994873+0000 mon.smithi003 (mon.0) 275 : cluster [DBG] Standby manager daemon smithi120.nvkvbd started 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: cluster 2024-09-06T15:00:32.994873+0000 mon.smithi003 (mon.0) 275 : cluster [DBG] Standby manager daemon smithi120.nvkvbd started 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.002028+0000 mon.smithi003 (mon.0) 276 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.002028+0000 mon.smithi003 (mon.0) 276 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.003060+0000 mon.smithi003 (mon.0) 277 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.003060+0000 mon.smithi003 (mon.0) 277 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.005853+0000 mon.smithi003 (mon.0) 278 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi120.nvkvbd/key"} : dispatch 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.005853+0000 mon.smithi003 (mon.0) 278 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi120.nvkvbd/key"} : dispatch 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.006958+0000 mon.smithi003 (mon.0) 279 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.006958+0000 mon.smithi003 (mon.0) 279 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.010869+0000 mon.smithi003 (mon.0) 280 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.010869+0000 mon.smithi003 (mon.0) 280 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:33.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.012901+0000 mon.smithi003 (mon.0) 281 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:33.406 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.012901+0000 mon.smithi003 (mon.0) 281 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:33.406 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.014666+0000 mon.smithi003 (mon.0) 282 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:00:33.406 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:33 smithi003 bash[19900]: audit 2024-09-06T15:00:33.014666+0000 mon.smithi003 (mon.0) 282 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:00:33.460 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-06T15:00:33.460 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":2,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","modified":"2024-09-06T15:00:27.911715Z","created":"2024-09-06T14:57:12.273337Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi003","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:3300","nonce":0},{"type":"v1","addr":"172.21.15.3:6789","nonce":0}]},"addr":"172.21.15.3:6789/0","public_addr":"172.21.15.3:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi120","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:3300","nonce":0},{"type":"v1","addr":"172.21.15.120:6789","nonce":0}]},"addr":"172.21.15.120:6789/0","public_addr":"172.21.15.120:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-06T15:00:33.461 INFO:teuthology.orchestra.run.smithi120.stderr:dumped monmap epoch 2 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:27.919016+0000 mon.smithi003 (mon.0) 251 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:27.919016+0000 mon.smithi003 (mon.0) 251 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:27.919394+0000 mon.smithi003 (mon.0) 252 : cluster [INF] mon.smithi003 calling monitor election 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:27.919394+0000 mon.smithi003 (mon.0) 252 : cluster [INF] mon.smithi003 calling monitor election 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:27.942089+0000 mon.smithi003 (mon.0) 253 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:27.942089+0000 mon.smithi003 (mon.0) 253 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:28.508919+0000 mgr.smithi120.nvkvbd (mgr.14214) 1 : cluster [ERR] Failed to load ceph-mgr modules: volumes 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:28.508919+0000 mgr.smithi120.nvkvbd (mgr.14214) 1 : cluster [ERR] Failed to load ceph-mgr modules: volumes 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:28.532393+0000 mon.smithi003 (mon.0) 254 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi120.nvkvbd/crt"} : dispatch 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:28.532393+0000 mon.smithi003 (mon.0) 254 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi120.nvkvbd/crt"} : dispatch 2024-09-06T15:00:33.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:28.912111+0000 mon.smithi003 (mon.0) 255 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:28.912111+0000 mon.smithi003 (mon.0) 255 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:29.047295+0000 mgr.smithi003.ghjsjw (mgr.14197) 27 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:29.047295+0000 mgr.smithi003.ghjsjw (mgr.14197) 27 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:29.912300+0000 mon.smithi003 (mon.0) 256 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:29.912300+0000 mon.smithi003 (mon.0) 256 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:29.913921+0000 mon.smithi120 (mon.1) 1 : cluster [INF] mon.smithi120 calling monitor election 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:29.913921+0000 mon.smithi120 (mon.1) 1 : cluster [INF] mon.smithi120 calling monitor election 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:30.912791+0000 mon.smithi003 (mon.0) 257 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:30.912791+0000 mon.smithi003 (mon.0) 257 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:31.047715+0000 mgr.smithi003.ghjsjw (mgr.14197) 28 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:31.047715+0000 mgr.smithi003.ghjsjw (mgr.14197) 28 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:31.912814+0000 mon.smithi003 (mon.0) 258 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:31.912814+0000 mon.smithi003 (mon.0) 258 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:32.912955+0000 mon.smithi003 (mon.0) 259 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:32.912955+0000 mon.smithi003 (mon.0) 259 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.965780+0000 mon.smithi003 (mon.0) 260 : cluster [INF] mon.smithi003 is new leader, mons smithi003,smithi120 in quorum (ranks 0,1) 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.965780+0000 mon.smithi003 (mon.0) 260 : cluster [INF] mon.smithi003 is new leader, mons smithi003,smithi120 in quorum (ranks 0,1) 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973030+0000 mon.smithi003 (mon.0) 261 : cluster [DBG] monmap epoch 2 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973030+0000 mon.smithi003 (mon.0) 261 : cluster [DBG] monmap epoch 2 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973076+0000 mon.smithi003 (mon.0) 262 : cluster [DBG] fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973076+0000 mon.smithi003 (mon.0) 262 : cluster [DBG] fsid 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973112+0000 mon.smithi003 (mon.0) 263 : cluster [DBG] last_changed 2024-09-06T15:00:27.911715+0000 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973112+0000 mon.smithi003 (mon.0) 263 : cluster [DBG] last_changed 2024-09-06T15:00:27.911715+0000 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973154+0000 mon.smithi003 (mon.0) 264 : cluster [DBG] created 2024-09-06T14:57:12.273337+0000 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973154+0000 mon.smithi003 (mon.0) 264 : cluster [DBG] created 2024-09-06T14:57:12.273337+0000 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973200+0000 mon.smithi003 (mon.0) 265 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973200+0000 mon.smithi003 (mon.0) 265 : cluster [DBG] min_mon_release 19 (squid) 2024-09-06T15:00:33.474 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973238+0000 mon.smithi003 (mon.0) 266 : cluster [DBG] election_strategy: 1 2024-09-06T15:00:33.475 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973238+0000 mon.smithi003 (mon.0) 266 : cluster [DBG] election_strategy: 1 2024-09-06T15:00:33.475 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973263+0000 mon.smithi003 (mon.0) 267 : cluster [DBG] 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T15:00:33.475 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973263+0000 mon.smithi003 (mon.0) 267 : cluster [DBG] 0: [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] mon.smithi003 2024-09-06T15:00:33.475 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973288+0000 mon.smithi003 (mon.0) 268 : cluster [DBG] 1: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-06T15:00:33.475 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.973288+0000 mon.smithi003 (mon.0) 268 : cluster [DBG] 1: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-06T15:00:33.475 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.993883+0000 mon.smithi003 (mon.0) 269 : cluster [DBG] fsmap 2024-09-06T15:00:33.475 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.993883+0000 mon.smithi003 (mon.0) 269 : cluster [DBG] fsmap 2024-09-06T15:00:33.475 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.993935+0000 mon.smithi003 (mon.0) 270 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.993935+0000 mon.smithi003 (mon.0) 270 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994214+0000 mon.smithi003 (mon.0) 271 : cluster [DBG] mgrmap e17: smithi003.ghjsjw(active, since 35s) 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994214+0000 mon.smithi003 (mon.0) 271 : cluster [DBG] mgrmap e17: smithi003.ghjsjw(active, since 35s) 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994476+0000 mon.smithi003 (mon.0) 272 : cluster [WRN] Health detail: HEALTH_WARN Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994476+0000 mon.smithi003 (mon.0) 272 : cluster [WRN] Health detail: HEALTH_WARN Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994508+0000 mon.smithi003 (mon.0) 273 : cluster [WRN] [WRN] MGR_MODULE_DEPENDENCY: Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994508+0000 mon.smithi003 (mon.0) 273 : cluster [WRN] [WRN] MGR_MODULE_DEPENDENCY: Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994531+0000 mon.smithi003 (mon.0) 274 : cluster [WRN] Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994531+0000 mon.smithi003 (mon.0) 274 : cluster [WRN] Module 'volumes' has failed dependency: No module named 'ceph.fs' 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994873+0000 mon.smithi003 (mon.0) 275 : cluster [DBG] Standby manager daemon smithi120.nvkvbd started 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: cluster 2024-09-06T15:00:32.994873+0000 mon.smithi003 (mon.0) 275 : cluster [DBG] Standby manager daemon smithi120.nvkvbd started 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.002028+0000 mon.smithi003 (mon.0) 276 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.002028+0000 mon.smithi003 (mon.0) 276 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:33.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.003060+0000 mon.smithi003 (mon.0) 277 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.003060+0000 mon.smithi003 (mon.0) 277 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.005853+0000 mon.smithi003 (mon.0) 278 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi120.nvkvbd/key"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.005853+0000 mon.smithi003 (mon.0) 278 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi120.nvkvbd/key"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.006958+0000 mon.smithi003 (mon.0) 279 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.006958+0000 mon.smithi003 (mon.0) 279 : audit [DBG] from='mgr.? 172.21.15.120:0/2553753615' entity='mgr.smithi120.nvkvbd' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.010869+0000 mon.smithi003 (mon.0) 280 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.010869+0000 mon.smithi003 (mon.0) 280 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.012901+0000 mon.smithi003 (mon.0) 281 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.012901+0000 mon.smithi003 (mon.0) 281 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.014666+0000 mon.smithi003 (mon.0) 282 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:00:33.477 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:33 smithi120 bash[24835]: audit 2024-09-06T15:00:33.014666+0000 mon.smithi003 (mon.0) 282 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:00:34.052 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-06T15:00:34.052 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph config generate-minimal-conf 2024-09-06T15:00:34.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.016866+0000 mgr.smithi003.ghjsjw (mgr.14197) 29 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.conf 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.016866+0000 mgr.smithi003.ghjsjw (mgr.14197) 29 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.conf 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.017421+0000 mgr.smithi003.ghjsjw (mgr.14197) 30 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.017421+0000 mgr.smithi003.ghjsjw (mgr.14197) 30 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cluster 2024-09-06T15:00:33.048051+0000 mgr.smithi003.ghjsjw (mgr.14197) 31 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cluster 2024-09-06T15:00:33.048051+0000 mgr.smithi003.ghjsjw (mgr.14197) 31 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cluster 2024-09-06T15:00:33.066594+0000 mon.smithi003 (mon.0) 283 : cluster [DBG] mgrmap e18: smithi003.ghjsjw(active, since 36s), standbys: smithi120.nvkvbd 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cluster 2024-09-06T15:00:33.066594+0000 mon.smithi003 (mon.0) 283 : cluster [DBG] mgrmap e18: smithi003.ghjsjw(active, since 36s), standbys: smithi120.nvkvbd 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.068150+0000 mon.smithi003 (mon.0) 284 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi120.nvkvbd", "id": "smithi120.nvkvbd"} : dispatch 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.068150+0000 mon.smithi003 (mon.0) 284 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi120.nvkvbd", "id": "smithi120.nvkvbd"} : dispatch 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.218255+0000 mgr.smithi003.ghjsjw (mgr.14197) 32 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:34.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.218255+0000 mgr.smithi003.ghjsjw (mgr.14197) 32 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:34.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.226724+0000 mgr.smithi003.ghjsjw (mgr.14197) 33 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:34.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.226724+0000 mgr.smithi003.ghjsjw (mgr.14197) 33 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:34.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.350861+0000 mon.smithi003 (mon.0) 285 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.350861+0000 mon.smithi003 (mon.0) 285 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.358730+0000 mon.smithi003 (mon.0) 286 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.358730+0000 mon.smithi003 (mon.0) 286 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.370893+0000 mon.smithi003 (mon.0) 287 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.370893+0000 mon.smithi003 (mon.0) 287 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.379141+0000 mon.smithi003 (mon.0) 288 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.379141+0000 mon.smithi003 (mon.0) 288 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.386189+0000 mon.smithi003 (mon.0) 289 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.386189+0000 mon.smithi003 (mon.0) 289 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.436059+0000 mgr.smithi003.ghjsjw (mgr.14197) 34 : cephadm [INF] Reconfiguring mon.smithi003 (unknown last config time)... 2024-09-06T15:00:34.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.436059+0000 mgr.smithi003.ghjsjw (mgr.14197) 34 : cephadm [INF] Reconfiguring mon.smithi003 (unknown last config time)... 2024-09-06T15:00:34.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.436645+0000 mon.smithi003 (mon.0) 290 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:00:34.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.436645+0000 mon.smithi003 (mon.0) 290 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:00:34.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.437876+0000 mon.smithi003 (mon.0) 291 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T15:00:34.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.437876+0000 mon.smithi003 (mon.0) 291 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T15:00:34.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.438917+0000 mon.smithi003 (mon.0) 292 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:34.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.438917+0000 mon.smithi003 (mon.0) 292 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:34.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.440048+0000 mgr.smithi003.ghjsjw (mgr.14197) 35 : cephadm [INF] Reconfiguring daemon mon.smithi003 on smithi003 2024-09-06T15:00:34.404 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: cephadm 2024-09-06T15:00:33.440048+0000 mgr.smithi003.ghjsjw (mgr.14197) 35 : cephadm [INF] Reconfiguring daemon mon.smithi003 on smithi003 2024-09-06T15:00:34.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.462438+0000 mon.smithi003 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.120:0/1026449632' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:34.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.462438+0000 mon.smithi003 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.120:0/1026449632' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:34.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.913067+0000 mon.smithi003 (mon.0) 294 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:34.405 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:34 smithi003 bash[19900]: audit 2024-09-06T15:00:33.913067+0000 mon.smithi003 (mon.0) 294 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.016866+0000 mgr.smithi003.ghjsjw (mgr.14197) 29 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.conf 2024-09-06T15:00:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.016866+0000 mgr.smithi003.ghjsjw (mgr.14197) 29 : cephadm [INF] Updating smithi003:/etc/ceph/ceph.conf 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.017421+0000 mgr.smithi003.ghjsjw (mgr.14197) 30 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.017421+0000 mgr.smithi003.ghjsjw (mgr.14197) 30 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cluster 2024-09-06T15:00:33.048051+0000 mgr.smithi003.ghjsjw (mgr.14197) 31 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cluster 2024-09-06T15:00:33.048051+0000 mgr.smithi003.ghjsjw (mgr.14197) 31 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cluster 2024-09-06T15:00:33.066594+0000 mon.smithi003 (mon.0) 283 : cluster [DBG] mgrmap e18: smithi003.ghjsjw(active, since 36s), standbys: smithi120.nvkvbd 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cluster 2024-09-06T15:00:33.066594+0000 mon.smithi003 (mon.0) 283 : cluster [DBG] mgrmap e18: smithi003.ghjsjw(active, since 36s), standbys: smithi120.nvkvbd 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.068150+0000 mon.smithi003 (mon.0) 284 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi120.nvkvbd", "id": "smithi120.nvkvbd"} : dispatch 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.068150+0000 mon.smithi003 (mon.0) 284 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr metadata", "who": "smithi120.nvkvbd", "id": "smithi120.nvkvbd"} : dispatch 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.218255+0000 mgr.smithi003.ghjsjw (mgr.14197) 32 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.218255+0000 mgr.smithi003.ghjsjw (mgr.14197) 32 : cephadm [INF] Updating smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.226724+0000 mgr.smithi003.ghjsjw (mgr.14197) 33 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.226724+0000 mgr.smithi003.ghjsjw (mgr.14197) 33 : cephadm [INF] Updating smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/config/ceph.conf 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.350861+0000 mon.smithi003 (mon.0) 285 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.350861+0000 mon.smithi003 (mon.0) 285 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.358730+0000 mon.smithi003 (mon.0) 286 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.358730+0000 mon.smithi003 (mon.0) 286 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.370893+0000 mon.smithi003 (mon.0) 287 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.370893+0000 mon.smithi003 (mon.0) 287 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.379141+0000 mon.smithi003 (mon.0) 288 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.379141+0000 mon.smithi003 (mon.0) 288 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.386189+0000 mon.smithi003 (mon.0) 289 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.386189+0000 mon.smithi003 (mon.0) 289 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.436059+0000 mgr.smithi003.ghjsjw (mgr.14197) 34 : cephadm [INF] Reconfiguring mon.smithi003 (unknown last config time)... 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.436059+0000 mgr.smithi003.ghjsjw (mgr.14197) 34 : cephadm [INF] Reconfiguring mon.smithi003 (unknown last config time)... 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.436645+0000 mon.smithi003 (mon.0) 290 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.436645+0000 mon.smithi003 (mon.0) 290 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.437876+0000 mon.smithi003 (mon.0) 291 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.437876+0000 mon.smithi003 (mon.0) 291 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.438917+0000 mon.smithi003 (mon.0) 292 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.438917+0000 mon.smithi003 (mon.0) 292 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.440048+0000 mgr.smithi003.ghjsjw (mgr.14197) 35 : cephadm [INF] Reconfiguring daemon mon.smithi003 on smithi003 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: cephadm 2024-09-06T15:00:33.440048+0000 mgr.smithi003.ghjsjw (mgr.14197) 35 : cephadm [INF] Reconfiguring daemon mon.smithi003 on smithi003 2024-09-06T15:00:34.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.462438+0000 mon.smithi003 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.120:0/1026449632' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:34.499 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.462438+0000 mon.smithi003 (mon.0) 293 : audit [DBG] from='client.? 172.21.15.120:0/1026449632' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-06T15:00:34.499 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.913067+0000 mon.smithi003 (mon.0) 294 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:34.499 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:34 smithi120 bash[24835]: audit 2024-09-06T15:00:33.913067+0000 mon.smithi003 (mon.0) 294 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:00:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: cluster 2024-09-06T15:00:35.048468+0000 mgr.smithi003.ghjsjw (mgr.14197) 36 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: cluster 2024-09-06T15:00:35.048468+0000 mgr.smithi003.ghjsjw (mgr.14197) 36 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.823583+0000 mon.smithi003 (mon.0) 295 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.823583+0000 mon.smithi003 (mon.0) 295 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.832325+0000 mon.smithi003 (mon.0) 296 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:36.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.832325+0000 mon.smithi003 (mon.0) 296 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:36.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.834693+0000 mon.smithi003 (mon.0) 297 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi003.ghjsjw", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:00:36.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.834693+0000 mon.smithi003 (mon.0) 297 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi003.ghjsjw", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:00:36.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.836530+0000 mon.smithi003 (mon.0) 298 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:00:36.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.836530+0000 mon.smithi003 (mon.0) 298 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:00:36.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.838126+0000 mon.smithi003 (mon.0) 299 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:36.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:36 smithi003 bash[19900]: audit 2024-09-06T15:00:35.838126+0000 mon.smithi003 (mon.0) 299 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:36.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: cluster 2024-09-06T15:00:35.048468+0000 mgr.smithi003.ghjsjw (mgr.14197) 36 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:36.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: cluster 2024-09-06T15:00:35.048468+0000 mgr.smithi003.ghjsjw (mgr.14197) 36 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:36.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.823583+0000 mon.smithi003 (mon.0) 295 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:36.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.823583+0000 mon.smithi003 (mon.0) 295 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:36.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.832325+0000 mon.smithi003 (mon.0) 296 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:36.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.832325+0000 mon.smithi003 (mon.0) 296 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.834693+0000 mon.smithi003 (mon.0) 297 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi003.ghjsjw", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:00:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.834693+0000 mon.smithi003 (mon.0) 297 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi003.ghjsjw", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:00:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.836530+0000 mon.smithi003 (mon.0) 298 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:00:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.836530+0000 mon.smithi003 (mon.0) 298 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:00:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.838126+0000 mon.smithi003 (mon.0) 299 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:36 smithi120 bash[24835]: audit 2024-09-06T15:00:35.838126+0000 mon.smithi003 (mon.0) 299 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:37.343 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:37 smithi003 bash[19900]: cephadm 2024-09-06T15:00:35.834047+0000 mgr.smithi003.ghjsjw (mgr.14197) 37 : cephadm [INF] Reconfiguring mgr.smithi003.ghjsjw (unknown last config time)... 2024-09-06T15:00:37.343 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:37 smithi003 bash[19900]: cephadm 2024-09-06T15:00:35.834047+0000 mgr.smithi003.ghjsjw (mgr.14197) 37 : cephadm [INF] Reconfiguring mgr.smithi003.ghjsjw (unknown last config time)... 2024-09-06T15:00:37.343 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:37 smithi003 bash[19900]: cephadm 2024-09-06T15:00:35.839975+0000 mgr.smithi003.ghjsjw (mgr.14197) 38 : cephadm [INF] Reconfiguring daemon mgr.smithi003.ghjsjw on smithi003 2024-09-06T15:00:37.343 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:37 smithi003 bash[19900]: cephadm 2024-09-06T15:00:35.839975+0000 mgr.smithi003.ghjsjw (mgr.14197) 38 : cephadm [INF] Reconfiguring daemon mgr.smithi003.ghjsjw on smithi003 2024-09-06T15:00:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:37 smithi120 bash[24835]: cephadm 2024-09-06T15:00:35.834047+0000 mgr.smithi003.ghjsjw (mgr.14197) 37 : cephadm [INF] Reconfiguring mgr.smithi003.ghjsjw (unknown last config time)... 2024-09-06T15:00:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:37 smithi120 bash[24835]: cephadm 2024-09-06T15:00:35.834047+0000 mgr.smithi003.ghjsjw (mgr.14197) 37 : cephadm [INF] Reconfiguring mgr.smithi003.ghjsjw (unknown last config time)... 2024-09-06T15:00:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:37 smithi120 bash[24835]: cephadm 2024-09-06T15:00:35.839975+0000 mgr.smithi003.ghjsjw (mgr.14197) 38 : cephadm [INF] Reconfiguring daemon mgr.smithi003.ghjsjw on smithi003 2024-09-06T15:00:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:37 smithi120 bash[24835]: cephadm 2024-09-06T15:00:35.839975+0000 mgr.smithi003.ghjsjw (mgr.14197) 38 : cephadm [INF] Reconfiguring daemon mgr.smithi003.ghjsjw on smithi003 2024-09-06T15:00:38.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: cluster 2024-09-06T15:00:37.048987+0000 mgr.smithi003.ghjsjw (mgr.14197) 39 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:38.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: cluster 2024-09-06T15:00:37.048987+0000 mgr.smithi003.ghjsjw (mgr.14197) 39 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:38.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: audit 2024-09-06T15:00:38.047346+0000 mon.smithi003 (mon.0) 300 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:38.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: audit 2024-09-06T15:00:38.047346+0000 mon.smithi003 (mon.0) 300 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:38.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: audit 2024-09-06T15:00:38.053318+0000 mon.smithi003 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:38.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: audit 2024-09-06T15:00:38.053318+0000 mon.smithi003 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:38.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: audit 2024-09-06T15:00:38.055447+0000 mon.smithi003 (mon.0) 302 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi003", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:00:38.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: audit 2024-09-06T15:00:38.055447+0000 mon.smithi003 (mon.0) 302 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi003", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:00:38.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: audit 2024-09-06T15:00:38.057438+0000 mon.smithi003 (mon.0) 303 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:38.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:38 smithi003 bash[19900]: audit 2024-09-06T15:00:38.057438+0000 mon.smithi003 (mon.0) 303 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: cluster 2024-09-06T15:00:37.048987+0000 mgr.smithi003.ghjsjw (mgr.14197) 39 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: cluster 2024-09-06T15:00:37.048987+0000 mgr.smithi003.ghjsjw (mgr.14197) 39 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: audit 2024-09-06T15:00:38.047346+0000 mon.smithi003 (mon.0) 300 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: audit 2024-09-06T15:00:38.047346+0000 mon.smithi003 (mon.0) 300 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: audit 2024-09-06T15:00:38.053318+0000 mon.smithi003 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: audit 2024-09-06T15:00:38.053318+0000 mon.smithi003 (mon.0) 301 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: audit 2024-09-06T15:00:38.055447+0000 mon.smithi003 (mon.0) 302 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi003", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:00:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: audit 2024-09-06T15:00:38.055447+0000 mon.smithi003 (mon.0) 302 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi003", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:00:38.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: audit 2024-09-06T15:00:38.057438+0000 mon.smithi003 (mon.0) 303 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:38.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:38 smithi120 bash[24835]: audit 2024-09-06T15:00:38.057438+0000 mon.smithi003 (mon.0) 303 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:38.833 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:00:39.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:39 smithi003 bash[19900]: cephadm 2024-09-06T15:00:38.054789+0000 mgr.smithi003.ghjsjw (mgr.14197) 40 : cephadm [INF] Reconfiguring ceph-exporter.smithi003 (monmap changed)... 2024-09-06T15:00:39.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:39 smithi003 bash[19900]: cephadm 2024-09-06T15:00:38.054789+0000 mgr.smithi003.ghjsjw (mgr.14197) 40 : cephadm [INF] Reconfiguring ceph-exporter.smithi003 (monmap changed)... 2024-09-06T15:00:39.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:39 smithi003 bash[19900]: cephadm 2024-09-06T15:00:38.059076+0000 mgr.smithi003.ghjsjw (mgr.14197) 41 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi003 on smithi003 2024-09-06T15:00:39.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:39 smithi003 bash[19900]: cephadm 2024-09-06T15:00:38.059076+0000 mgr.smithi003.ghjsjw (mgr.14197) 41 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi003 on smithi003 2024-09-06T15:00:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:39 smithi120 bash[24835]: cephadm 2024-09-06T15:00:38.054789+0000 mgr.smithi003.ghjsjw (mgr.14197) 40 : cephadm [INF] Reconfiguring ceph-exporter.smithi003 (monmap changed)... 2024-09-06T15:00:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:39 smithi120 bash[24835]: cephadm 2024-09-06T15:00:38.054789+0000 mgr.smithi003.ghjsjw (mgr.14197) 40 : cephadm [INF] Reconfiguring ceph-exporter.smithi003 (monmap changed)... 2024-09-06T15:00:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:39 smithi120 bash[24835]: cephadm 2024-09-06T15:00:38.059076+0000 mgr.smithi003.ghjsjw (mgr.14197) 41 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi003 on smithi003 2024-09-06T15:00:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:39 smithi120 bash[24835]: cephadm 2024-09-06T15:00:38.059076+0000 mgr.smithi003.ghjsjw (mgr.14197) 41 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi003 on smithi003 2024-09-06T15:00:40.342 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:40 smithi003 bash[19900]: cluster 2024-09-06T15:00:39.049576+0000 mgr.smithi003.ghjsjw (mgr.14197) 42 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:40.342 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:40 smithi003 bash[19900]: cluster 2024-09-06T15:00:39.049576+0000 mgr.smithi003.ghjsjw (mgr.14197) 42 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:40.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:40 smithi120 bash[24835]: cluster 2024-09-06T15:00:39.049576+0000 mgr.smithi003.ghjsjw (mgr.14197) 42 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:40.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:40 smithi120 bash[24835]: cluster 2024-09-06T15:00:39.049576+0000 mgr.smithi003.ghjsjw (mgr.14197) 42 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:40.592 INFO:teuthology.orchestra.run.smithi003.stdout:# minimal ceph.conf for 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:00:40.593 INFO:teuthology.orchestra.run.smithi003.stdout:[global] 2024-09-06T15:00:40.593 INFO:teuthology.orchestra.run.smithi003.stdout: fsid = 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:00:40.593 INFO:teuthology.orchestra.run.smithi003.stdout: mon_host = [v2:172.21.15.3:3300/0,v1:172.21.15.3:6789/0] [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] 2024-09-06T15:00:41.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:40.594444+0000 mon.smithi003 (mon.0) 304 : audit [DBG] from='client.? 172.21.15.3:0/1752812879' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:40.594444+0000 mon.smithi003 (mon.0) 304 : audit [DBG] from='client.? 172.21.15.3:0/1752812879' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:41.039556+0000 mon.smithi003 (mon.0) 305 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:41.039556+0000 mon.smithi003 (mon.0) 305 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:41.048983+0000 mon.smithi003 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:41.048983+0000 mon.smithi003 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:41.051538+0000 mon.smithi003 (mon.0) 307 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:41.051538+0000 mon.smithi003 (mon.0) 307 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:41.053395+0000 mon.smithi003 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:41.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:41 smithi003 bash[19900]: audit 2024-09-06T15:00:41.053395+0000 mon.smithi003 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:41.426 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-06T15:00:41.427 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T15:00:41.427 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/ceph/ceph.conf 2024-09-06T15:00:41.439 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T15:00:41.439 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:41.493 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T15:00:41.493 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.conf 2024-09-06T15:00:41.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:40.594444+0000 mon.smithi003 (mon.0) 304 : audit [DBG] from='client.? 172.21.15.3:0/1752812879' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:41.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:40.594444+0000 mon.smithi003 (mon.0) 304 : audit [DBG] from='client.? 172.21.15.3:0/1752812879' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:41.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:41.039556+0000 mon.smithi003 (mon.0) 305 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:41.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:41.039556+0000 mon.smithi003 (mon.0) 305 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:41.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:41.048983+0000 mon.smithi003 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:41.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:41.048983+0000 mon.smithi003 (mon.0) 306 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:41.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:41.051538+0000 mon.smithi003 (mon.0) 307 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:00:41.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:41.051538+0000 mon.smithi003 (mon.0) 307 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi003", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:00:41.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:41.053395+0000 mon.smithi003 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:41.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:41 smithi120 bash[24835]: audit 2024-09-06T15:00:41.053395+0000 mon.smithi003 (mon.0) 308 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:00:41.507 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T15:00:41.507 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-06T15:00:41.562 DEBUG:tasks.cephadm:set 0 configs 2024-09-06T15:00:41.562 INFO:tasks.cephadm:Deploying OSDs... 2024-09-06T15:00:41.562 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T15:00:41.562 DEBUG:teuthology.orchestra.run.smithi003:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T15:00:41.567 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-06T15:00:41.567 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/nvme1n1 2024-09-06T15:00:41.614 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/nvme1n1 2024-09-06T15:00:41.615 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T15:00:41.615 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 965 Links: 1 Device type: 103,2 2024-09-06T15:00:41.615 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T15:00:41.615 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-06 14:58:45.839745286 +0000 2024-09-06T15:00:41.615 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-06 14:55:28.021531370 +0000 2024-09-06T15:00:41.615 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-06 14:55:28.021531370 +0000 2024-09-06T15:00:41.615 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: - 2024-09-06T15:00:41.616 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-06T15:00:41.667 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-06T15:00:41.667 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-06T15:00:41.667 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000302555 s, 1.7 MB/s 2024-09-06T15:00:41.668 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-06T15:00:41.715 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/nvme2n1 2024-09-06T15:00:41.766 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/nvme2n1 2024-09-06T15:00:41.766 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T15:00:41.766 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 974 Links: 1 Device type: 103,4 2024-09-06T15:00:41.767 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T15:00:41.767 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-06 14:58:45.859744647 +0000 2024-09-06T15:00:41.767 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-06 14:55:28.121530477 +0000 2024-09-06T15:00:41.767 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-06 14:55:28.121530477 +0000 2024-09-06T15:00:41.767 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: - 2024-09-06T15:00:41.767 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-06T15:00:41.821 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-06T15:00:41.821 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-06T15:00:41.821 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000486396 s, 1.1 MB/s 2024-09-06T15:00:41.822 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-06T15:00:41.872 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/nvme3n1 2024-09-06T15:00:41.918 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/nvme3n1 2024-09-06T15:00:41.919 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T15:00:41.919 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 983 Links: 1 Device type: 103,6 2024-09-06T15:00:41.919 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T15:00:41.919 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-06 14:58:45.875744137 +0000 2024-09-06T15:00:41.919 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-06 14:55:28.217529619 +0000 2024-09-06T15:00:41.919 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-06 14:55:28.217529619 +0000 2024-09-06T15:00:41.919 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: - 2024-09-06T15:00:41.919 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-06T15:00:41.974 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-06T15:00:41.974 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-06T15:00:41.974 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000491156 s, 1.0 MB/s 2024-09-06T15:00:41.975 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-06T15:00:42.024 DEBUG:teuthology.orchestra.run.smithi003:> stat /dev/nvme4n1 2024-09-06T15:00:42.071 INFO:teuthology.orchestra.run.smithi003.stdout: File: /dev/nvme4n1 2024-09-06T15:00:42.071 INFO:teuthology.orchestra.run.smithi003.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T15:00:42.071 INFO:teuthology.orchestra.run.smithi003.stdout:Device: 5h/5d Inode: 992 Links: 1 Device type: 103,8 2024-09-06T15:00:42.071 INFO:teuthology.orchestra.run.smithi003.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T15:00:42.071 INFO:teuthology.orchestra.run.smithi003.stdout:Access: 2024-09-06 14:58:45.887743754 +0000 2024-09-06T15:00:42.072 INFO:teuthology.orchestra.run.smithi003.stdout:Modify: 2024-09-06 14:55:28.317528725 +0000 2024-09-06T15:00:42.072 INFO:teuthology.orchestra.run.smithi003.stdout:Change: 2024-09-06 14:55:28.317528725 +0000 2024-09-06T15:00:42.072 INFO:teuthology.orchestra.run.smithi003.stdout: Birth: - 2024-09-06T15:00:42.072 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-06T15:00:42.124 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records in 2024-09-06T15:00:42.124 INFO:teuthology.orchestra.run.smithi003.stderr:1+0 records out 2024-09-06T15:00:42.124 INFO:teuthology.orchestra.run.smithi003.stderr:512 bytes copied, 0.000454222 s, 1.1 MB/s 2024-09-06T15:00:42.125 DEBUG:teuthology.orchestra.run.smithi003:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-06T15:00:42.171 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T15:00:42.171 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-09-06T15:00:42.178 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-06T15:00:42.178 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme1n1 2024-09-06T15:00:42.226 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme1n1 2024-09-06T15:00:42.226 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T15:00:42.226 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 957 Links: 1 Device type: 103,2 2024-09-06T15:00:42.226 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T15:00:42.227 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-06 15:00:06.189161901 +0000 2024-09-06T15:00:42.227 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-06 14:55:29.276139985 +0000 2024-09-06T15:00:42.227 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-06 14:55:29.276139985 +0000 2024-09-06T15:00:42.227 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-06T15:00:42.227 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-06T15:00:42.281 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-06T15:00:42.281 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-06T15:00:42.281 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000525826 s, 974 kB/s 2024-09-06T15:00:42.282 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-06T15:00:42.331 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme2n1 2024-09-06T15:00:42.377 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme2n1 2024-09-06T15:00:42.377 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T15:00:42.377 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 966 Links: 1 Device type: 103,4 2024-09-06T15:00:42.377 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T15:00:42.377 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-06 15:00:06.201161109 +0000 2024-09-06T15:00:42.377 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-06 14:55:29.372139126 +0000 2024-09-06T15:00:42.377 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-06 14:55:29.372139126 +0000 2024-09-06T15:00:42.378 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-06T15:00:42.378 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-06T15:00:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:42 smithi003 bash[19900]: cluster 2024-09-06T15:00:41.050010+0000 mgr.smithi003.ghjsjw (mgr.14197) 43 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:42 smithi003 bash[19900]: cluster 2024-09-06T15:00:41.050010+0000 mgr.smithi003.ghjsjw (mgr.14197) 43 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:42 smithi003 bash[19900]: cephadm 2024-09-06T15:00:41.050897+0000 mgr.smithi003.ghjsjw (mgr.14197) 44 : cephadm [INF] Reconfiguring crash.smithi003 (monmap changed)... 2024-09-06T15:00:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:42 smithi003 bash[19900]: cephadm 2024-09-06T15:00:41.050897+0000 mgr.smithi003.ghjsjw (mgr.14197) 44 : cephadm [INF] Reconfiguring crash.smithi003 (monmap changed)... 2024-09-06T15:00:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:42 smithi003 bash[19900]: cephadm 2024-09-06T15:00:41.055196+0000 mgr.smithi003.ghjsjw (mgr.14197) 45 : cephadm [INF] Reconfiguring daemon crash.smithi003 on smithi003 2024-09-06T15:00:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:42 smithi003 bash[19900]: cephadm 2024-09-06T15:00:41.055196+0000 mgr.smithi003.ghjsjw (mgr.14197) 45 : cephadm [INF] Reconfiguring daemon crash.smithi003 on smithi003 2024-09-06T15:00:42.430 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:42 smithi120 bash[24835]: cluster 2024-09-06T15:00:41.050010+0000 mgr.smithi003.ghjsjw (mgr.14197) 43 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:42.430 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:42 smithi120 bash[24835]: cluster 2024-09-06T15:00:41.050010+0000 mgr.smithi003.ghjsjw (mgr.14197) 43 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:42.430 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:42 smithi120 bash[24835]: cephadm 2024-09-06T15:00:41.050897+0000 mgr.smithi003.ghjsjw (mgr.14197) 44 : cephadm [INF] Reconfiguring crash.smithi003 (monmap changed)... 2024-09-06T15:00:42.430 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:42 smithi120 bash[24835]: cephadm 2024-09-06T15:00:41.050897+0000 mgr.smithi003.ghjsjw (mgr.14197) 44 : cephadm [INF] Reconfiguring crash.smithi003 (monmap changed)... 2024-09-06T15:00:42.431 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:42 smithi120 bash[24835]: cephadm 2024-09-06T15:00:41.055196+0000 mgr.smithi003.ghjsjw (mgr.14197) 45 : cephadm [INF] Reconfiguring daemon crash.smithi003 on smithi003 2024-09-06T15:00:42.431 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:42 smithi120 bash[24835]: cephadm 2024-09-06T15:00:41.055196+0000 mgr.smithi003.ghjsjw (mgr.14197) 45 : cephadm [INF] Reconfiguring daemon crash.smithi003 on smithi003 2024-09-06T15:00:42.432 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-06T15:00:42.432 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-06T15:00:42.432 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000461112 s, 1.1 MB/s 2024-09-06T15:00:42.433 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-06T15:00:42.483 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme3n1 2024-09-06T15:00:42.529 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme3n1 2024-09-06T15:00:42.529 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T15:00:42.530 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 975 Links: 1 Device type: 103,6 2024-09-06T15:00:42.530 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T15:00:42.530 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-06 15:00:06.217160054 +0000 2024-09-06T15:00:42.530 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-06 14:55:29.468138269 +0000 2024-09-06T15:00:42.530 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-06 14:55:29.468138269 +0000 2024-09-06T15:00:42.530 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-06T15:00:42.530 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-06T15:00:42.584 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-06T15:00:42.584 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-06T15:00:42.584 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000483158 s, 1.1 MB/s 2024-09-06T15:00:42.585 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-06T15:00:42.635 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme4n1 2024-09-06T15:00:42.681 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme4n1 2024-09-06T15:00:42.682 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-06T15:00:42.682 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 984 Links: 1 Device type: 103,8 2024-09-06T15:00:42.682 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-06T15:00:42.682 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-06 15:00:06.233159000 +0000 2024-09-06T15:00:42.682 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-06 14:55:29.572137341 +0000 2024-09-06T15:00:42.682 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-06 14:55:29.572137341 +0000 2024-09-06T15:00:42.682 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-06T15:00:42.682 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-06T15:00:42.737 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-06T15:00:42.737 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-06T15:00:42.738 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000464331 s, 1.1 MB/s 2024-09-06T15:00:42.739 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-06T15:00:42.787 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-06T15:00:43.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:43 smithi003 bash[19900]: audit 2024-09-06T15:00:42.521370+0000 mon.smithi003 (mon.0) 309 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:43.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:43 smithi003 bash[19900]: audit 2024-09-06T15:00:42.521370+0000 mon.smithi003 (mon.0) 309 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:43.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:43 smithi120 bash[24835]: audit 2024-09-06T15:00:42.521370+0000 mon.smithi003 (mon.0) 309 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:43.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:43 smithi120 bash[24835]: audit 2024-09-06T15:00:42.521370+0000 mon.smithi003 (mon.0) 309 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:44.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: cluster 2024-09-06T15:00:43.050462+0000 mgr.smithi003.ghjsjw (mgr.14197) 46 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:44.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: cluster 2024-09-06T15:00:43.050462+0000 mgr.smithi003.ghjsjw (mgr.14197) 46 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:44.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: audit 2024-09-06T15:00:43.403521+0000 mon.smithi003 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:44.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: audit 2024-09-06T15:00:43.403521+0000 mon.smithi003 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:44.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: audit 2024-09-06T15:00:43.409827+0000 mon.smithi003 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:44.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: audit 2024-09-06T15:00:43.409827+0000 mon.smithi003 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:44.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: cephadm 2024-09-06T15:00:43.412014+0000 mgr.smithi003.ghjsjw (mgr.14197) 47 : cephadm [INF] Reconfiguring alertmanager.smithi003 (dependencies changed)... 2024-09-06T15:00:44.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: cephadm 2024-09-06T15:00:43.412014+0000 mgr.smithi003.ghjsjw (mgr.14197) 47 : cephadm [INF] Reconfiguring alertmanager.smithi003 (dependencies changed)... 2024-09-06T15:00:44.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: cephadm 2024-09-06T15:00:43.429793+0000 mgr.smithi003.ghjsjw (mgr.14197) 48 : cephadm [INF] Reconfiguring daemon alertmanager.smithi003 on smithi003 2024-09-06T15:00:44.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:44 smithi120 bash[24835]: cephadm 2024-09-06T15:00:43.429793+0000 mgr.smithi003.ghjsjw (mgr.14197) 48 : cephadm [INF] Reconfiguring daemon alertmanager.smithi003 on smithi003 2024-09-06T15:00:44.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: cluster 2024-09-06T15:00:43.050462+0000 mgr.smithi003.ghjsjw (mgr.14197) 46 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:44.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: cluster 2024-09-06T15:00:43.050462+0000 mgr.smithi003.ghjsjw (mgr.14197) 46 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:44.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: audit 2024-09-06T15:00:43.403521+0000 mon.smithi003 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:44.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: audit 2024-09-06T15:00:43.403521+0000 mon.smithi003 (mon.0) 310 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:44.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: audit 2024-09-06T15:00:43.409827+0000 mon.smithi003 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:44.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: audit 2024-09-06T15:00:43.409827+0000 mon.smithi003 (mon.0) 311 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:44.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: cephadm 2024-09-06T15:00:43.412014+0000 mgr.smithi003.ghjsjw (mgr.14197) 47 : cephadm [INF] Reconfiguring alertmanager.smithi003 (dependencies changed)... 2024-09-06T15:00:44.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: cephadm 2024-09-06T15:00:43.412014+0000 mgr.smithi003.ghjsjw (mgr.14197) 47 : cephadm [INF] Reconfiguring alertmanager.smithi003 (dependencies changed)... 2024-09-06T15:00:44.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: cephadm 2024-09-06T15:00:43.429793+0000 mgr.smithi003.ghjsjw (mgr.14197) 48 : cephadm [INF] Reconfiguring daemon alertmanager.smithi003 on smithi003 2024-09-06T15:00:44.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:44 smithi003 bash[19900]: cephadm 2024-09-06T15:00:43.429793+0000 mgr.smithi003.ghjsjw (mgr.14197) 48 : cephadm [INF] Reconfiguring daemon alertmanager.smithi003 on smithi003 2024-09-06T15:00:46.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:46 smithi003 bash[19900]: cluster 2024-09-06T15:00:45.050956+0000 mgr.smithi003.ghjsjw (mgr.14197) 49 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:46.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:46 smithi003 bash[19900]: cluster 2024-09-06T15:00:45.050956+0000 mgr.smithi003.ghjsjw (mgr.14197) 49 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:46.675 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:46 smithi120 bash[24835]: cluster 2024-09-06T15:00:45.050956+0000 mgr.smithi003.ghjsjw (mgr.14197) 49 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:46.675 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:46 smithi120 bash[24835]: cluster 2024-09-06T15:00:45.050956+0000 mgr.smithi003.ghjsjw (mgr.14197) 49 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:47.577 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi120/config 2024-09-06T15:00:48.227 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: cluster 2024-09-06T15:00:47.051436+0000 mgr.smithi003.ghjsjw (mgr.14197) 50 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:48.227 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: cluster 2024-09-06T15:00:47.051436+0000 mgr.smithi003.ghjsjw (mgr.14197) 50 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:48.227 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: audit 2024-09-06T15:00:47.091112+0000 mgr.smithi003.ghjsjw (mgr.14197) 51 : audit [DBG] from='client.24099 -' entity='client.crash.smithi120' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:00:48.227 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: audit 2024-09-06T15:00:47.091112+0000 mgr.smithi003.ghjsjw (mgr.14197) 51 : audit [DBG] from='client.24099 -' entity='client.crash.smithi120' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:00:48.227 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: audit 2024-09-06T15:00:47.098464+0000 mon.smithi003 (mon.0) 312 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:48.227 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: audit 2024-09-06T15:00:47.098464+0000 mon.smithi003 (mon.0) 312 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:48.228 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: cluster 2024-09-06T15:00:47.099809+0000 mgr.smithi003.ghjsjw (mgr.14197) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:48.228 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: cluster 2024-09-06T15:00:47.099809+0000 mgr.smithi003.ghjsjw (mgr.14197) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:48.228 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: cluster 2024-09-06T15:00:47.406990+0000 mon.smithi003 (mon.0) 313 : cluster [WRN] Health check failed: 1 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T15:00:48.228 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:48 smithi003 bash[19900]: cluster 2024-09-06T15:00:47.406990+0000 mon.smithi003 (mon.0) 313 : cluster [WRN] Health check failed: 1 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T15:00:48.403 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: cluster 2024-09-06T15:00:47.051436+0000 mgr.smithi003.ghjsjw (mgr.14197) 50 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: cluster 2024-09-06T15:00:47.051436+0000 mgr.smithi003.ghjsjw (mgr.14197) 50 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: audit 2024-09-06T15:00:47.091112+0000 mgr.smithi003.ghjsjw (mgr.14197) 51 : audit [DBG] from='client.24099 -' entity='client.crash.smithi120' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: audit 2024-09-06T15:00:47.091112+0000 mgr.smithi003.ghjsjw (mgr.14197) 51 : audit [DBG] from='client.24099 -' entity='client.crash.smithi120' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: audit 2024-09-06T15:00:47.098464+0000 mon.smithi003 (mon.0) 312 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: audit 2024-09-06T15:00:47.098464+0000 mon.smithi003 (mon.0) 312 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: cluster 2024-09-06T15:00:47.099809+0000 mgr.smithi003.ghjsjw (mgr.14197) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: cluster 2024-09-06T15:00:47.099809+0000 mgr.smithi003.ghjsjw (mgr.14197) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: cluster 2024-09-06T15:00:47.406990+0000 mon.smithi003 (mon.0) 313 : cluster [WRN] Health check failed: 1 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T15:00:48.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:48 smithi120 bash[24835]: cluster 2024-09-06T15:00:47.406990+0000 mon.smithi003 (mon.0) 313 : cluster [WRN] Health check failed: 1 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T15:00:48.767 INFO:teuthology.orchestra.run.smithi120.stdout:Scheduled osd.all-available-devices update... 2024-09-06T15:00:49.345 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-06T15:00:49.346 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:00:49.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: audit 2024-09-06T15:00:48.155948+0000 mon.smithi003 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: audit 2024-09-06T15:00:48.155948+0000 mon.smithi003 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: audit 2024-09-06T15:00:48.160314+0000 mon.smithi003 (mon.0) 315 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: audit 2024-09-06T15:00:48.160314+0000 mon.smithi003 (mon.0) 315 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.161313+0000 mgr.smithi003.ghjsjw (mgr.14197) 53 : cephadm [INF] Reconfiguring grafana.smithi003 (dependencies changed)... 2024-09-06T15:00:49.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.161313+0000 mgr.smithi003.ghjsjw (mgr.14197) 53 : cephadm [INF] Reconfiguring grafana.smithi003 (dependencies changed)... 2024-09-06T15:00:49.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.571497+0000 mgr.smithi003.ghjsjw (mgr.14197) 54 : cephadm [INF] Reconfiguring daemon grafana.smithi003 on smithi003 2024-09-06T15:00:49.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.571497+0000 mgr.smithi003.ghjsjw (mgr.14197) 54 : cephadm [INF] Reconfiguring daemon grafana.smithi003 on smithi003 2024-09-06T15:00:49.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: audit 2024-09-06T15:00:48.763965+0000 mon.smithi003 (mon.0) 316 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:49 smithi120 bash[24835]: audit 2024-09-06T15:00:48.763965+0000 mon.smithi003 (mon.0) 316 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: audit 2024-09-06T15:00:48.155948+0000 mon.smithi003 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: audit 2024-09-06T15:00:48.155948+0000 mon.smithi003 (mon.0) 314 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: audit 2024-09-06T15:00:48.160314+0000 mon.smithi003 (mon.0) 315 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: audit 2024-09-06T15:00:48.160314+0000 mon.smithi003 (mon.0) 315 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.161313+0000 mgr.smithi003.ghjsjw (mgr.14197) 53 : cephadm [INF] Reconfiguring grafana.smithi003 (dependencies changed)... 2024-09-06T15:00:49.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.161313+0000 mgr.smithi003.ghjsjw (mgr.14197) 53 : cephadm [INF] Reconfiguring grafana.smithi003 (dependencies changed)... 2024-09-06T15:00:49.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.571497+0000 mgr.smithi003.ghjsjw (mgr.14197) 54 : cephadm [INF] Reconfiguring daemon grafana.smithi003 on smithi003 2024-09-06T15:00:49.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.571497+0000 mgr.smithi003.ghjsjw (mgr.14197) 54 : cephadm [INF] Reconfiguring daemon grafana.smithi003 on smithi003 2024-09-06T15:00:49.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: audit 2024-09-06T15:00:48.763965+0000 mon.smithi003 (mon.0) 316 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:49.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:49 smithi003 bash[19900]: audit 2024-09-06T15:00:48.763965+0000 mon.smithi003 (mon.0) 316 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: audit 2024-09-06T15:00:48.743795+0000 mgr.smithi003.ghjsjw (mgr.14197) 55 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: audit 2024-09-06T15:00:48.743795+0000 mgr.smithi003.ghjsjw (mgr.14197) 55 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.758139+0000 mgr.smithi003.ghjsjw (mgr.14197) 56 : cephadm [INF] Marking host: smithi003 for OSDSpec preview refresh. 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.758139+0000 mgr.smithi003.ghjsjw (mgr.14197) 56 : cephadm [INF] Marking host: smithi003 for OSDSpec preview refresh. 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.758356+0000 mgr.smithi003.ghjsjw (mgr.14197) 57 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.758356+0000 mgr.smithi003.ghjsjw (mgr.14197) 57 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.759348+0000 mgr.smithi003.ghjsjw (mgr.14197) 58 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: cephadm 2024-09-06T15:00:48.759348+0000 mgr.smithi003.ghjsjw (mgr.14197) 58 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: cluster 2024-09-06T15:00:49.100272+0000 mgr.smithi003.ghjsjw (mgr.14197) 59 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:50.424 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:50 smithi003 bash[19900]: cluster 2024-09-06T15:00:49.100272+0000 mgr.smithi003.ghjsjw (mgr.14197) 59 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:50.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: audit 2024-09-06T15:00:48.743795+0000 mgr.smithi003.ghjsjw (mgr.14197) 55 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:00:50.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: audit 2024-09-06T15:00:48.743795+0000 mgr.smithi003.ghjsjw (mgr.14197) 55 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:00:50.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.758139+0000 mgr.smithi003.ghjsjw (mgr.14197) 56 : cephadm [INF] Marking host: smithi003 for OSDSpec preview refresh. 2024-09-06T15:00:50.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.758139+0000 mgr.smithi003.ghjsjw (mgr.14197) 56 : cephadm [INF] Marking host: smithi003 for OSDSpec preview refresh. 2024-09-06T15:00:50.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.758356+0000 mgr.smithi003.ghjsjw (mgr.14197) 57 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-09-06T15:00:50.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.758356+0000 mgr.smithi003.ghjsjw (mgr.14197) 57 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-09-06T15:00:50.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.759348+0000 mgr.smithi003.ghjsjw (mgr.14197) 58 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-06T15:00:50.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: cephadm 2024-09-06T15:00:48.759348+0000 mgr.smithi003.ghjsjw (mgr.14197) 58 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-06T15:00:50.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: cluster 2024-09-06T15:00:49.100272+0000 mgr.smithi003.ghjsjw (mgr.14197) 59 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:50.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:50 smithi120 bash[24835]: cluster 2024-09-06T15:00:49.100272+0000 mgr.smithi003.ghjsjw (mgr.14197) 59 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:52.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:52 smithi003 bash[19900]: cluster 2024-09-06T15:00:51.100753+0000 mgr.smithi003.ghjsjw (mgr.14197) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:52.270 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:52 smithi003 bash[19900]: cluster 2024-09-06T15:00:51.100753+0000 mgr.smithi003.ghjsjw (mgr.14197) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:52.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:52 smithi120 bash[24835]: cluster 2024-09-06T15:00:51.100753+0000 mgr.smithi003.ghjsjw (mgr.14197) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:52.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:52 smithi120 bash[24835]: cluster 2024-09-06T15:00:51.100753+0000 mgr.smithi003.ghjsjw (mgr.14197) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:54.099 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:00:54.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:54 smithi003 bash[19900]: cluster 2024-09-06T15:00:53.101253+0000 mgr.smithi003.ghjsjw (mgr.14197) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:54.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:54 smithi003 bash[19900]: cluster 2024-09-06T15:00:53.101253+0000 mgr.smithi003.ghjsjw (mgr.14197) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:54.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:54 smithi003 bash[19900]: audit 2024-09-06T15:00:53.498606+0000 mon.smithi003 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:54.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:54 smithi003 bash[19900]: audit 2024-09-06T15:00:53.498606+0000 mon.smithi003 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:54 smithi003 bash[19900]: audit 2024-09-06T15:00:53.503179+0000 mon.smithi003 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:54 smithi003 bash[19900]: audit 2024-09-06T15:00:53.503179+0000 mon.smithi003 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:54 smithi003 bash[19900]: cephadm 2024-09-06T15:00:53.504218+0000 mgr.smithi003.ghjsjw (mgr.14197) 62 : cephadm [INF] Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-06T15:00:54.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:54 smithi003 bash[19900]: cephadm 2024-09-06T15:00:53.504218+0000 mgr.smithi003.ghjsjw (mgr.14197) 62 : cephadm [INF] Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-06T15:00:54.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:54 smithi120 bash[24835]: cluster 2024-09-06T15:00:53.101253+0000 mgr.smithi003.ghjsjw (mgr.14197) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:54.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:54 smithi120 bash[24835]: cluster 2024-09-06T15:00:53.101253+0000 mgr.smithi003.ghjsjw (mgr.14197) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:54.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:54 smithi120 bash[24835]: audit 2024-09-06T15:00:53.498606+0000 mon.smithi003 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:54.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:54 smithi120 bash[24835]: audit 2024-09-06T15:00:53.498606+0000 mon.smithi003 (mon.0) 317 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:54.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:54 smithi120 bash[24835]: audit 2024-09-06T15:00:53.503179+0000 mon.smithi003 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:54.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:54 smithi120 bash[24835]: audit 2024-09-06T15:00:53.503179+0000 mon.smithi003 (mon.0) 318 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:54.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:54 smithi120 bash[24835]: cephadm 2024-09-06T15:00:53.504218+0000 mgr.smithi003.ghjsjw (mgr.14197) 62 : cephadm [INF] Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-06T15:00:54.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:54 smithi120 bash[24835]: cephadm 2024-09-06T15:00:53.504218+0000 mgr.smithi003.ghjsjw (mgr.14197) 62 : cephadm [INF] Reconfiguring prometheus.smithi003 (dependencies changed)... 2024-09-06T15:00:55.801 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:55 smithi003 bash[19900]: cephadm 2024-09-06T15:00:53.768622+0000 mgr.smithi003.ghjsjw (mgr.14197) 63 : cephadm [INF] Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-06T15:00:55.802 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:55 smithi003 bash[19900]: cephadm 2024-09-06T15:00:53.768622+0000 mgr.smithi003.ghjsjw (mgr.14197) 63 : cephadm [INF] Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-06T15:00:55.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:55 smithi120 bash[24835]: cephadm 2024-09-06T15:00:53.768622+0000 mgr.smithi003.ghjsjw (mgr.14197) 63 : cephadm [INF] Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-06T15:00:55.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:55 smithi120 bash[24835]: cephadm 2024-09-06T15:00:53.768622+0000 mgr.smithi003.ghjsjw (mgr.14197) 63 : cephadm [INF] Reconfiguring daemon prometheus.smithi003 on smithi003 2024-09-06T15:00:56.588 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:00:56.786 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:56 smithi003 bash[19900]: cluster 2024-09-06T15:00:55.101688+0000 mgr.smithi003.ghjsjw (mgr.14197) 64 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:56.844 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:56 smithi003 bash[19900]: cluster 2024-09-06T15:00:55.101688+0000 mgr.smithi003.ghjsjw (mgr.14197) 64 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:56 smithi120 bash[24835]: cluster 2024-09-06T15:00:55.101688+0000 mgr.smithi003.ghjsjw (mgr.14197) 64 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:56 smithi120 bash[24835]: cluster 2024-09-06T15:00:55.101688+0000 mgr.smithi003.ghjsjw (mgr.14197) 64 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:57.745 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-06T15:00:57.781 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:57 smithi003 bash[19900]: audit 2024-09-06T15:00:56.590598+0000 mon.smithi003 (mon.0) 319 : audit [DBG] from='client.? 172.21.15.3:0/277983258' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:00:57.781 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:57 smithi003 bash[19900]: audit 2024-09-06T15:00:56.590598+0000 mon.smithi003 (mon.0) 319 : audit [DBG] from='client.? 172.21.15.3:0/277983258' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:00:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:57 smithi120 bash[24835]: audit 2024-09-06T15:00:56.590598+0000 mon.smithi003 (mon.0) 319 : audit [DBG] from='client.? 172.21.15.3:0/277983258' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:00:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:57 smithi120 bash[24835]: audit 2024-09-06T15:00:56.590598+0000 mon.smithi003 (mon.0) 319 : audit [DBG] from='client.? 172.21.15.3:0/277983258' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:00:58.746 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:00:58.846 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:58 smithi003 bash[19900]: cluster 2024-09-06T15:00:57.102105+0000 mgr.smithi003.ghjsjw (mgr.14197) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:58.846 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:58 smithi003 bash[19900]: cluster 2024-09-06T15:00:57.102105+0000 mgr.smithi003.ghjsjw (mgr.14197) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:58.846 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:58 smithi003 bash[19900]: audit 2024-09-06T15:00:57.526701+0000 mon.smithi003 (mon.0) 320 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:58.846 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:58 smithi003 bash[19900]: audit 2024-09-06T15:00:57.526701+0000 mon.smithi003 (mon.0) 320 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:58.847 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:58 smithi003 bash[19900]: audit 2024-09-06T15:00:57.528399+0000 mon.smithi003 (mon.0) 321 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:58.847 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:00:58 smithi003 bash[19900]: audit 2024-09-06T15:00:57.528399+0000 mon.smithi003 (mon.0) 321 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:58.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:58 smithi120 bash[24835]: cluster 2024-09-06T15:00:57.102105+0000 mgr.smithi003.ghjsjw (mgr.14197) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:58.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:58 smithi120 bash[24835]: cluster 2024-09-06T15:00:57.102105+0000 mgr.smithi003.ghjsjw (mgr.14197) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:00:58.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:58 smithi120 bash[24835]: audit 2024-09-06T15:00:57.526701+0000 mon.smithi003 (mon.0) 320 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:58.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:58 smithi120 bash[24835]: audit 2024-09-06T15:00:57.526701+0000 mon.smithi003 (mon.0) 320 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:00:58.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:58 smithi120 bash[24835]: audit 2024-09-06T15:00:57.528399+0000 mon.smithi003 (mon.0) 321 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:00:58.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:00:58 smithi120 bash[24835]: audit 2024-09-06T15:00:57.528399+0000 mon.smithi003 (mon.0) 321 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:00.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: cluster 2024-09-06T15:00:59.102617+0000 mgr.smithi003.ghjsjw (mgr.14197) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: cluster 2024-09-06T15:00:59.102617+0000 mgr.smithi003.ghjsjw (mgr.14197) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: audit 2024-09-06T15:01:00.411527+0000 mon.smithi003 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: audit 2024-09-06T15:01:00.411527+0000 mon.smithi003 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: audit 2024-09-06T15:01:00.416938+0000 mon.smithi003 (mon.0) 323 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: audit 2024-09-06T15:01:00.416938+0000 mon.smithi003 (mon.0) 323 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: audit 2024-09-06T15:01:00.418053+0000 mon.smithi003 (mon.0) 324 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: audit 2024-09-06T15:01:00.418053+0000 mon.smithi003 (mon.0) 324 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: audit 2024-09-06T15:01:00.418886+0000 mon.smithi003 (mon.0) 325 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:00.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:00 smithi003 bash[19900]: audit 2024-09-06T15:01:00.418886+0000 mon.smithi003 (mon.0) 325 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:00.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: cluster 2024-09-06T15:00:59.102617+0000 mgr.smithi003.ghjsjw (mgr.14197) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: cluster 2024-09-06T15:00:59.102617+0000 mgr.smithi003.ghjsjw (mgr.14197) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: audit 2024-09-06T15:01:00.411527+0000 mon.smithi003 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: audit 2024-09-06T15:01:00.411527+0000 mon.smithi003 (mon.0) 322 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: audit 2024-09-06T15:01:00.416938+0000 mon.smithi003 (mon.0) 323 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: audit 2024-09-06T15:01:00.416938+0000 mon.smithi003 (mon.0) 323 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: audit 2024-09-06T15:01:00.418053+0000 mon.smithi003 (mon.0) 324 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: audit 2024-09-06T15:01:00.418053+0000 mon.smithi003 (mon.0) 324 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi120", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: audit 2024-09-06T15:01:00.418886+0000 mon.smithi003 (mon.0) 325 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:00.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:00 smithi120 bash[24835]: audit 2024-09-06T15:01:00.418886+0000 mon.smithi003 (mon.0) 325 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:01.826 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:01 smithi120 bash[24835]: cephadm 2024-09-06T15:01:00.417746+0000 mgr.smithi003.ghjsjw (mgr.14197) 67 : cephadm [INF] Reconfiguring ceph-exporter.smithi120 (monmap changed)... 2024-09-06T15:01:01.826 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:01 smithi120 bash[24835]: cephadm 2024-09-06T15:01:00.417746+0000 mgr.smithi003.ghjsjw (mgr.14197) 67 : cephadm [INF] Reconfiguring ceph-exporter.smithi120 (monmap changed)... 2024-09-06T15:01:01.826 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:01 smithi120 bash[24835]: cephadm 2024-09-06T15:01:00.419698+0000 mgr.smithi003.ghjsjw (mgr.14197) 68 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi120 on smithi120 2024-09-06T15:01:01.827 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:01 smithi120 bash[24835]: cephadm 2024-09-06T15:01:00.419698+0000 mgr.smithi003.ghjsjw (mgr.14197) 68 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi120 on smithi120 2024-09-06T15:01:01.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:01 smithi003 bash[19900]: cephadm 2024-09-06T15:01:00.417746+0000 mgr.smithi003.ghjsjw (mgr.14197) 67 : cephadm [INF] Reconfiguring ceph-exporter.smithi120 (monmap changed)... 2024-09-06T15:01:01.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:01 smithi003 bash[19900]: cephadm 2024-09-06T15:01:00.417746+0000 mgr.smithi003.ghjsjw (mgr.14197) 67 : cephadm [INF] Reconfiguring ceph-exporter.smithi120 (monmap changed)... 2024-09-06T15:01:01.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:01 smithi003 bash[19900]: cephadm 2024-09-06T15:01:00.419698+0000 mgr.smithi003.ghjsjw (mgr.14197) 68 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi120 on smithi120 2024-09-06T15:01:01.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:01 smithi003 bash[19900]: cephadm 2024-09-06T15:01:00.419698+0000 mgr.smithi003.ghjsjw (mgr.14197) 68 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi120 on smithi120 2024-09-06T15:01:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: cluster 2024-09-06T15:01:01.103081+0000 mgr.smithi003.ghjsjw (mgr.14197) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: cluster 2024-09-06T15:01:01.103081+0000 mgr.smithi003.ghjsjw (mgr.14197) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: audit 2024-09-06T15:01:02.397331+0000 mon.smithi003 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: audit 2024-09-06T15:01:02.397331+0000 mon.smithi003 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: audit 2024-09-06T15:01:02.405974+0000 mon.smithi003 (mon.0) 327 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: audit 2024-09-06T15:01:02.405974+0000 mon.smithi003 (mon.0) 327 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: audit 2024-09-06T15:01:02.408254+0000 mon.smithi003 (mon.0) 328 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: audit 2024-09-06T15:01:02.408254+0000 mon.smithi003 (mon.0) 328 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: audit 2024-09-06T15:01:02.410174+0000 mon.smithi003 (mon.0) 329 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:02 smithi003 bash[19900]: audit 2024-09-06T15:01:02.410174+0000 mon.smithi003 (mon.0) 329 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:02.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: cluster 2024-09-06T15:01:01.103081+0000 mgr.smithi003.ghjsjw (mgr.14197) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:02.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: cluster 2024-09-06T15:01:01.103081+0000 mgr.smithi003.ghjsjw (mgr.14197) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:02.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: audit 2024-09-06T15:01:02.397331+0000 mon.smithi003 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:02.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: audit 2024-09-06T15:01:02.397331+0000 mon.smithi003 (mon.0) 326 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:02.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: audit 2024-09-06T15:01:02.405974+0000 mon.smithi003 (mon.0) 327 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:02.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: audit 2024-09-06T15:01:02.405974+0000 mon.smithi003 (mon.0) 327 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:02.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: audit 2024-09-06T15:01:02.408254+0000 mon.smithi003 (mon.0) 328 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:01:02.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: audit 2024-09-06T15:01:02.408254+0000 mon.smithi003 (mon.0) 328 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-06T15:01:02.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: audit 2024-09-06T15:01:02.410174+0000 mon.smithi003 (mon.0) 329 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:02.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:02 smithi120 bash[24835]: audit 2024-09-06T15:01:02.410174+0000 mon.smithi003 (mon.0) 329 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:03.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:03 smithi120 bash[24835]: cephadm 2024-09-06T15:01:02.407616+0000 mgr.smithi003.ghjsjw (mgr.14197) 70 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-09-06T15:01:03.833 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:03 smithi120 bash[24835]: cephadm 2024-09-06T15:01:02.407616+0000 mgr.smithi003.ghjsjw (mgr.14197) 70 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-09-06T15:01:03.833 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:03 smithi120 bash[24835]: cephadm 2024-09-06T15:01:02.412018+0000 mgr.smithi003.ghjsjw (mgr.14197) 71 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-09-06T15:01:03.833 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:03 smithi120 bash[24835]: cephadm 2024-09-06T15:01:02.412018+0000 mgr.smithi003.ghjsjw (mgr.14197) 71 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-09-06T15:01:03.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:03 smithi003 bash[19900]: cephadm 2024-09-06T15:01:02.407616+0000 mgr.smithi003.ghjsjw (mgr.14197) 70 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-09-06T15:01:03.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:03 smithi003 bash[19900]: cephadm 2024-09-06T15:01:02.407616+0000 mgr.smithi003.ghjsjw (mgr.14197) 70 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-09-06T15:01:03.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:03 smithi003 bash[19900]: cephadm 2024-09-06T15:01:02.412018+0000 mgr.smithi003.ghjsjw (mgr.14197) 71 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-09-06T15:01:03.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:03 smithi003 bash[19900]: cephadm 2024-09-06T15:01:02.412018+0000 mgr.smithi003.ghjsjw (mgr.14197) 71 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-09-06T15:01:03.906 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:01:04.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: cluster 2024-09-06T15:01:03.103530+0000 mgr.smithi003.ghjsjw (mgr.14197) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:04.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: cluster 2024-09-06T15:01:03.103530+0000 mgr.smithi003.ghjsjw (mgr.14197) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.507053+0000 mon.smithi003 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.507053+0000 mon.smithi003 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.515431+0000 mon.smithi003 (mon.0) 331 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.515431+0000 mon.smithi003 (mon.0) 331 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.518798+0000 mon.smithi003 (mon.0) 332 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.518798+0000 mon.smithi003 (mon.0) 332 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.520977+0000 mon.smithi003 (mon.0) 333 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.520977+0000 mon.smithi003 (mon.0) 333 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.522859+0000 mon.smithi003 (mon.0) 334 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:04.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:04 smithi003 bash[19900]: audit 2024-09-06T15:01:04.522859+0000 mon.smithi003 (mon.0) 334 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:04.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: cluster 2024-09-06T15:01:03.103530+0000 mgr.smithi003.ghjsjw (mgr.14197) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:04.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: cluster 2024-09-06T15:01:03.103530+0000 mgr.smithi003.ghjsjw (mgr.14197) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:04.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.507053+0000 mon.smithi003 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:04.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.507053+0000 mon.smithi003 (mon.0) 330 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:04.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.515431+0000 mon.smithi003 (mon.0) 331 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:04.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.515431+0000 mon.smithi003 (mon.0) 331 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:04.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.518798+0000 mon.smithi003 (mon.0) 332 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:01:04.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.518798+0000 mon.smithi003 (mon.0) 332 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.nvkvbd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-06T15:01:04.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.520977+0000 mon.smithi003 (mon.0) 333 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:01:04.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.520977+0000 mon.smithi003 (mon.0) 333 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mgr services"} : dispatch 2024-09-06T15:01:04.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.522859+0000 mon.smithi003 (mon.0) 334 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:04.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:04 smithi120 bash[24835]: audit 2024-09-06T15:01:04.522859+0000 mon.smithi003 (mon.0) 334 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:05.316 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:01:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:05 smithi003 bash[19900]: cephadm 2024-09-06T15:01:04.517855+0000 mgr.smithi003.ghjsjw (mgr.14197) 73 : cephadm [INF] Reconfiguring mgr.smithi120.nvkvbd (monmap changed)... 2024-09-06T15:01:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:05 smithi003 bash[19900]: cephadm 2024-09-06T15:01:04.517855+0000 mgr.smithi003.ghjsjw (mgr.14197) 73 : cephadm [INF] Reconfiguring mgr.smithi120.nvkvbd (monmap changed)... 2024-09-06T15:01:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:05 smithi003 bash[19900]: cephadm 2024-09-06T15:01:04.524979+0000 mgr.smithi003.ghjsjw (mgr.14197) 74 : cephadm [INF] Reconfiguring daemon mgr.smithi120.nvkvbd on smithi120 2024-09-06T15:01:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:05 smithi003 bash[19900]: cephadm 2024-09-06T15:01:04.524979+0000 mgr.smithi003.ghjsjw (mgr.14197) 74 : cephadm [INF] Reconfiguring daemon mgr.smithi120.nvkvbd on smithi120 2024-09-06T15:01:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:05 smithi003 bash[19900]: audit 2024-09-06T15:01:05.317516+0000 mon.smithi003 (mon.0) 335 : audit [DBG] from='client.? 172.21.15.3:0/3936213398' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:05.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:05 smithi003 bash[19900]: audit 2024-09-06T15:01:05.317516+0000 mon.smithi003 (mon.0) 335 : audit [DBG] from='client.? 172.21.15.3:0/3936213398' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:05.824 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:05 smithi120 bash[24835]: cephadm 2024-09-06T15:01:04.517855+0000 mgr.smithi003.ghjsjw (mgr.14197) 73 : cephadm [INF] Reconfiguring mgr.smithi120.nvkvbd (monmap changed)... 2024-09-06T15:01:05.824 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:05 smithi120 bash[24835]: cephadm 2024-09-06T15:01:04.517855+0000 mgr.smithi003.ghjsjw (mgr.14197) 73 : cephadm [INF] Reconfiguring mgr.smithi120.nvkvbd (monmap changed)... 2024-09-06T15:01:05.824 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:05 smithi120 bash[24835]: cephadm 2024-09-06T15:01:04.524979+0000 mgr.smithi003.ghjsjw (mgr.14197) 74 : cephadm [INF] Reconfiguring daemon mgr.smithi120.nvkvbd on smithi120 2024-09-06T15:01:05.824 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:05 smithi120 bash[24835]: cephadm 2024-09-06T15:01:04.524979+0000 mgr.smithi003.ghjsjw (mgr.14197) 74 : cephadm [INF] Reconfiguring daemon mgr.smithi120.nvkvbd on smithi120 2024-09-06T15:01:05.825 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:05 smithi120 bash[24835]: audit 2024-09-06T15:01:05.317516+0000 mon.smithi003 (mon.0) 335 : audit [DBG] from='client.? 172.21.15.3:0/3936213398' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:05.825 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:05 smithi120 bash[24835]: audit 2024-09-06T15:01:05.317516+0000 mon.smithi003 (mon.0) 335 : audit [DBG] from='client.? 172.21.15.3:0/3936213398' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:06.004 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-06T15:01:06.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: cluster 2024-09-06T15:01:05.103997+0000 mgr.smithi003.ghjsjw (mgr.14197) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:06.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: cluster 2024-09-06T15:01:05.103997+0000 mgr.smithi003.ghjsjw (mgr.14197) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.435602+0000 mon.smithi003 (mon.0) 336 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.435602+0000 mon.smithi003 (mon.0) 336 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.445395+0000 mon.smithi003 (mon.0) 337 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.445395+0000 mon.smithi003 (mon.0) 337 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.447849+0000 mon.smithi003 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.447849+0000 mon.smithi003 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.449934+0000 mon.smithi003 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.449934+0000 mon.smithi003 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.451892+0000 mon.smithi003 (mon.0) 340 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:06.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:06 smithi003 bash[19900]: audit 2024-09-06T15:01:06.451892+0000 mon.smithi003 (mon.0) 340 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:06.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: cluster 2024-09-06T15:01:05.103997+0000 mgr.smithi003.ghjsjw (mgr.14197) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:06.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: cluster 2024-09-06T15:01:05.103997+0000 mgr.smithi003.ghjsjw (mgr.14197) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:06.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.435602+0000 mon.smithi003 (mon.0) 336 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:06.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.435602+0000 mon.smithi003 (mon.0) 336 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:06.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.445395+0000 mon.smithi003 (mon.0) 337 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:06.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.445395+0000 mon.smithi003 (mon.0) 337 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:06.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.447849+0000 mon.smithi003 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:01:06.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.447849+0000 mon.smithi003 (mon.0) 338 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-06T15:01:06.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.449934+0000 mon.smithi003 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T15:01:06.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.449934+0000 mon.smithi003 (mon.0) 339 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-06T15:01:06.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.451892+0000 mon.smithi003 (mon.0) 340 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:06.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:06 smithi120 bash[24835]: audit 2024-09-06T15:01:06.451892+0000 mon.smithi003 (mon.0) 340 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:07.005 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:01:07.823 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:07 smithi120 bash[24835]: cephadm 2024-09-06T15:01:06.447154+0000 mgr.smithi003.ghjsjw (mgr.14197) 76 : cephadm [INF] Reconfiguring mon.smithi120 (monmap changed)... 2024-09-06T15:01:07.823 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:07 smithi120 bash[24835]: cephadm 2024-09-06T15:01:06.447154+0000 mgr.smithi003.ghjsjw (mgr.14197) 76 : cephadm [INF] Reconfiguring mon.smithi120 (monmap changed)... 2024-09-06T15:01:07.823 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:07 smithi120 bash[24835]: cephadm 2024-09-06T15:01:06.454010+0000 mgr.smithi003.ghjsjw (mgr.14197) 77 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-09-06T15:01:07.823 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:07 smithi120 bash[24835]: cephadm 2024-09-06T15:01:06.454010+0000 mgr.smithi003.ghjsjw (mgr.14197) 77 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-09-06T15:01:07.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:07 smithi003 bash[19900]: cephadm 2024-09-06T15:01:06.447154+0000 mgr.smithi003.ghjsjw (mgr.14197) 76 : cephadm [INF] Reconfiguring mon.smithi120 (monmap changed)... 2024-09-06T15:01:07.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:07 smithi003 bash[19900]: cephadm 2024-09-06T15:01:06.447154+0000 mgr.smithi003.ghjsjw (mgr.14197) 76 : cephadm [INF] Reconfiguring mon.smithi120 (monmap changed)... 2024-09-06T15:01:07.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:07 smithi003 bash[19900]: cephadm 2024-09-06T15:01:06.454010+0000 mgr.smithi003.ghjsjw (mgr.14197) 77 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-09-06T15:01:07.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:07 smithi003 bash[19900]: cephadm 2024-09-06T15:01:06.454010+0000 mgr.smithi003.ghjsjw (mgr.14197) 77 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-09-06T15:01:08.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: cluster 2024-09-06T15:01:07.104349+0000 mgr.smithi003.ghjsjw (mgr.14197) 78 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:08.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: cluster 2024-09-06T15:01:07.104349+0000 mgr.smithi003.ghjsjw (mgr.14197) 78 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.524681+0000 mon.smithi003 (mon.0) 341 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.524681+0000 mon.smithi003 (mon.0) 341 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.532763+0000 mon.smithi003 (mon.0) 342 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.532763+0000 mon.smithi003 (mon.0) 342 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.541253+0000 mon.smithi003 (mon.0) 343 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.541253+0000 mon.smithi003 (mon.0) 343 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.544495+0000 mon.smithi003 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"} : dispatch 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.544495+0000 mon.smithi003 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"} : dispatch 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.553319+0000 mon.smithi003 (mon.0) 345 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:08 smithi003 bash[19900]: audit 2024-09-06T15:01:08.553319+0000 mon.smithi003 (mon.0) 345 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: cluster 2024-09-06T15:01:07.104349+0000 mgr.smithi003.ghjsjw (mgr.14197) 78 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:08.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: cluster 2024-09-06T15:01:07.104349+0000 mgr.smithi003.ghjsjw (mgr.14197) 78 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:08.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.524681+0000 mon.smithi003 (mon.0) 341 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.524681+0000 mon.smithi003 (mon.0) 341 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.532763+0000 mon.smithi003 (mon.0) 342 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.532763+0000 mon.smithi003 (mon.0) 342 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.541253+0000 mon.smithi003 (mon.0) 343 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-06T15:01:08.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.541253+0000 mon.smithi003 (mon.0) 343 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-06T15:01:08.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.544495+0000 mon.smithi003 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"} : dispatch 2024-09-06T15:01:08.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.544495+0000 mon.smithi003 (mon.0) 344 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"} : dispatch 2024-09-06T15:01:08.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.553319+0000 mon.smithi003 (mon.0) 345 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:08.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:08 smithi120 bash[24835]: audit 2024-09-06T15:01:08.553319+0000 mon.smithi003 (mon.0) 345 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.542162+0000 mgr.smithi003.ghjsjw (mgr.14197) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-06T15:01:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.542162+0000 mgr.smithi003.ghjsjw (mgr.14197) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-06T15:01:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.545310+0000 mgr.smithi003.ghjsjw (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"}]: dispatch 2024-09-06T15:01:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.545310+0000 mgr.smithi003.ghjsjw (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"}]: dispatch 2024-09-06T15:01:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.573858+0000 mon.smithi003 (mon.0) 346 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-06T15:01:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.573858+0000 mon.smithi003 (mon.0) 346 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-06T15:01:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.574957+0000 mgr.smithi003.ghjsjw (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-06T15:01:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.574957+0000 mgr.smithi003.ghjsjw (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.583863+0000 mon.smithi003 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"} : dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.583863+0000 mon.smithi003 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"} : dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.584715+0000 mgr.smithi003.ghjsjw (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"}]: dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.584715+0000 mgr.smithi003.ghjsjw (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"}]: dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.592354+0000 mon.smithi003 (mon.0) 348 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.592354+0000 mon.smithi003 (mon.0) 348 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.612845+0000 mon.smithi003 (mon.0) 349 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.612845+0000 mon.smithi003 (mon.0) 349 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.613879+0000 mgr.smithi003.ghjsjw (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.613879+0000 mgr.smithi003.ghjsjw (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-06T15:01:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.623019+0000 mon.smithi003 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"} : dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.623019+0000 mon.smithi003 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"} : dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.624394+0000 mgr.smithi003.ghjsjw (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"}]: dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.624394+0000 mgr.smithi003.ghjsjw (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"}]: dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.632623+0000 mon.smithi003 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.632623+0000 mon.smithi003 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.803751+0000 mon.smithi003 (mon.0) 352 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:08.803751+0000 mon.smithi003 (mon.0) 352 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:09.068194+0000 mon.smithi003 (mon.0) 353 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:09.068194+0000 mon.smithi003 (mon.0) 353 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:09.417796+0000 mon.smithi003 (mon.0) 354 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:09.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:09 smithi003 bash[19900]: audit 2024-09-06T15:01:09.417796+0000 mon.smithi003 (mon.0) 354 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:09.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.542162+0000 mgr.smithi003.ghjsjw (mgr.14197) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.542162+0000 mgr.smithi003.ghjsjw (mgr.14197) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.545310+0000 mgr.smithi003.ghjsjw (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"}]: dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.545310+0000 mgr.smithi003.ghjsjw (mgr.14197) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi003.front.sepia.ceph.com:9093"}]: dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.573858+0000 mon.smithi003 (mon.0) 346 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.573858+0000 mon.smithi003 (mon.0) 346 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.574957+0000 mgr.smithi003.ghjsjw (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.574957+0000 mgr.smithi003.ghjsjw (mgr.14197) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.583863+0000 mon.smithi003 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"} : dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.583863+0000 mon.smithi003 (mon.0) 347 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"} : dispatch 2024-09-06T15:01:09.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.584715+0000 mgr.smithi003.ghjsjw (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"}]: dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.584715+0000 mgr.smithi003.ghjsjw (mgr.14197) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi003.front.sepia.ceph.com:3000"}]: dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.592354+0000 mon.smithi003 (mon.0) 348 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.592354+0000 mon.smithi003 (mon.0) 348 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.612845+0000 mon.smithi003 (mon.0) 349 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.612845+0000 mon.smithi003 (mon.0) 349 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.613879+0000 mgr.smithi003.ghjsjw (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.613879+0000 mgr.smithi003.ghjsjw (mgr.14197) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.623019+0000 mon.smithi003 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"} : dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.623019+0000 mon.smithi003 (mon.0) 350 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"} : dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.624394+0000 mgr.smithi003.ghjsjw (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"}]: dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.624394+0000 mgr.smithi003.ghjsjw (mgr.14197) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi003.front.sepia.ceph.com:9095"}]: dispatch 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.632623+0000 mon.smithi003 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.632623+0000 mon.smithi003 (mon.0) 351 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:09.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.803751+0000 mon.smithi003 (mon.0) 352 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:09.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:08.803751+0000 mon.smithi003 (mon.0) 352 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:09.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:09.068194+0000 mon.smithi003 (mon.0) 353 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:01:09.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:09.068194+0000 mon.smithi003 (mon.0) 353 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:01:09.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:09.417796+0000 mon.smithi003 (mon.0) 354 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:09.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:09 smithi120 bash[24835]: audit 2024-09-06T15:01:09.417796+0000 mon.smithi003 (mon.0) 354 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:10 smithi003 bash[19900]: audit 2024-09-06T15:01:08.804464+0000 mgr.smithi003.ghjsjw (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:10 smithi003 bash[19900]: audit 2024-09-06T15:01:08.804464+0000 mgr.smithi003.ghjsjw (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:10 smithi003 bash[19900]: cluster 2024-09-06T15:01:09.104816+0000 mgr.smithi003.ghjsjw (mgr.14197) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:10.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:10 smithi003 bash[19900]: cluster 2024-09-06T15:01:09.104816+0000 mgr.smithi003.ghjsjw (mgr.14197) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:10.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:10 smithi003 bash[19900]: audit 2024-09-06T15:01:09.419436+0000 mgr.smithi003.ghjsjw (mgr.14197) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:10.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:10 smithi003 bash[19900]: audit 2024-09-06T15:01:09.419436+0000 mgr.smithi003.ghjsjw (mgr.14197) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:10.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:10 smithi003 bash[19900]: audit 2024-09-06T15:01:10.034988+0000 mon.smithi003 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:10.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:10 smithi003 bash[19900]: audit 2024-09-06T15:01:10.034988+0000 mon.smithi003 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:10.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:10 smithi120 bash[24835]: audit 2024-09-06T15:01:08.804464+0000 mgr.smithi003.ghjsjw (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:10.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:10 smithi120 bash[24835]: audit 2024-09-06T15:01:08.804464+0000 mgr.smithi003.ghjsjw (mgr.14197) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:10.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:10 smithi120 bash[24835]: cluster 2024-09-06T15:01:09.104816+0000 mgr.smithi003.ghjsjw (mgr.14197) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:10.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:10 smithi120 bash[24835]: cluster 2024-09-06T15:01:09.104816+0000 mgr.smithi003.ghjsjw (mgr.14197) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:10.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:10 smithi120 bash[24835]: audit 2024-09-06T15:01:09.419436+0000 mgr.smithi003.ghjsjw (mgr.14197) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:10.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:10 smithi120 bash[24835]: audit 2024-09-06T15:01:09.419436+0000 mgr.smithi003.ghjsjw (mgr.14197) 87 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:10.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:10 smithi120 bash[24835]: audit 2024-09-06T15:01:10.034988+0000 mon.smithi003 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:10.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:10 smithi120 bash[24835]: audit 2024-09-06T15:01:10.034988+0000 mon.smithi003 (mon.0) 355 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-06T15:01:11.798 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:01:11.891 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:11 smithi003 bash[19900]: audit 2024-09-06T15:01:10.036660+0000 mgr.smithi003.ghjsjw (mgr.14197) 88 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:11.891 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:11 smithi003 bash[19900]: audit 2024-09-06T15:01:10.036660+0000 mgr.smithi003.ghjsjw (mgr.14197) 88 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:11.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:11 smithi120 bash[24835]: audit 2024-09-06T15:01:10.036660+0000 mgr.smithi003.ghjsjw (mgr.14197) 88 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:11.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:11 smithi120 bash[24835]: audit 2024-09-06T15:01:10.036660+0000 mgr.smithi003.ghjsjw (mgr.14197) 88 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-06T15:01:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:12 smithi003 bash[19900]: cluster 2024-09-06T15:01:11.105316+0000 mgr.smithi003.ghjsjw (mgr.14197) 89 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:12 smithi003 bash[19900]: cluster 2024-09-06T15:01:11.105316+0000 mgr.smithi003.ghjsjw (mgr.14197) 89 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:12 smithi003 bash[19900]: audit 2024-09-06T15:01:12.522265+0000 mon.smithi003 (mon.0) 356 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:12 smithi003 bash[19900]: audit 2024-09-06T15:01:12.522265+0000 mon.smithi003 (mon.0) 356 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:12.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:12 smithi120 bash[24835]: cluster 2024-09-06T15:01:11.105316+0000 mgr.smithi003.ghjsjw (mgr.14197) 89 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:12.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:12 smithi120 bash[24835]: cluster 2024-09-06T15:01:11.105316+0000 mgr.smithi003.ghjsjw (mgr.14197) 89 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:12.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:12 smithi120 bash[24835]: audit 2024-09-06T15:01:12.522265+0000 mon.smithi003 (mon.0) 356 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:12.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:12 smithi120 bash[24835]: audit 2024-09-06T15:01:12.522265+0000 mon.smithi003 (mon.0) 356 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:13.178 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:01:13.846 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-06T15:01:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:13 smithi120 bash[24835]: audit 2024-09-06T15:01:13.180501+0000 mon.smithi003 (mon.0) 357 : audit [DBG] from='client.? 172.21.15.3:0/512306029' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:13 smithi120 bash[24835]: audit 2024-09-06T15:01:13.180501+0000 mon.smithi003 (mon.0) 357 : audit [DBG] from='client.? 172.21.15.3:0/512306029' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:14.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:13 smithi003 bash[19900]: audit 2024-09-06T15:01:13.180501+0000 mon.smithi003 (mon.0) 357 : audit [DBG] from='client.? 172.21.15.3:0/512306029' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:14.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:13 smithi003 bash[19900]: audit 2024-09-06T15:01:13.180501+0000 mon.smithi003 (mon.0) 357 : audit [DBG] from='client.? 172.21.15.3:0/512306029' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:14.848 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:01:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:14 smithi120 bash[24835]: cluster 2024-09-06T15:01:13.105745+0000 mgr.smithi003.ghjsjw (mgr.14197) 90 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:14 smithi120 bash[24835]: cluster 2024-09-06T15:01:13.105745+0000 mgr.smithi003.ghjsjw (mgr.14197) 90 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:14 smithi120 bash[24835]: audit 2024-09-06T15:01:14.546223+0000 mon.smithi003 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:14 smithi120 bash[24835]: audit 2024-09-06T15:01:14.546223+0000 mon.smithi003 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:14 smithi120 bash[24835]: audit 2024-09-06T15:01:14.550653+0000 mon.smithi003 (mon.0) 359 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:14 smithi120 bash[24835]: audit 2024-09-06T15:01:14.550653+0000 mon.smithi003 (mon.0) 359 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:14 smithi003 bash[19900]: cluster 2024-09-06T15:01:13.105745+0000 mgr.smithi003.ghjsjw (mgr.14197) 90 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:14 smithi003 bash[19900]: cluster 2024-09-06T15:01:13.105745+0000 mgr.smithi003.ghjsjw (mgr.14197) 90 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:14 smithi003 bash[19900]: audit 2024-09-06T15:01:14.546223+0000 mon.smithi003 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:14 smithi003 bash[19900]: audit 2024-09-06T15:01:14.546223+0000 mon.smithi003 (mon.0) 358 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:14 smithi003 bash[19900]: audit 2024-09-06T15:01:14.550653+0000 mon.smithi003 (mon.0) 359 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:14 smithi003 bash[19900]: audit 2024-09-06T15:01:14.550653+0000 mon.smithi003 (mon.0) 359 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: cluster 2024-09-06T15:01:15.106050+0000 mgr.smithi003.ghjsjw (mgr.14197) 91 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: cluster 2024-09-06T15:01:15.106050+0000 mgr.smithi003.ghjsjw (mgr.14197) 91 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.150261+0000 mon.smithi003 (mon.0) 360 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.150261+0000 mon.smithi003 (mon.0) 360 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.154820+0000 mon.smithi003 (mon.0) 361 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.154820+0000 mon.smithi003 (mon.0) 361 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.160185+0000 mon.smithi003 (mon.0) 362 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.160185+0000 mon.smithi003 (mon.0) 362 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.164887+0000 mon.smithi003 (mon.0) 363 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.164887+0000 mon.smithi003 (mon.0) 363 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.810187+0000 mon.smithi003 (mon.0) 364 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.810187+0000 mon.smithi003 (mon.0) 364 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.819140+0000 mon.smithi003 (mon.0) 365 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.819140+0000 mon.smithi003 (mon.0) 365 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.821163+0000 mon.smithi003 (mon.0) 366 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.821163+0000 mon.smithi003 (mon.0) 366 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.822630+0000 mon.smithi003 (mon.0) 367 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.822630+0000 mon.smithi003 (mon.0) 367 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.830524+0000 mon.smithi003 (mon.0) 368 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.830524+0000 mon.smithi003 (mon.0) 368 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.837076+0000 mon.smithi003 (mon.0) 369 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.837076+0000 mon.smithi003 (mon.0) 369 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.843243+0000 mon.smithi003 (mon.0) 370 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.843243+0000 mon.smithi003 (mon.0) 370 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:01:16.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.844330+0000 mon.smithi003 (mon.0) 371 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.844330+0000 mon.smithi003 (mon.0) 371 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.850508+0000 mon.smithi003 (mon.0) 372 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:01:16.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.850508+0000 mon.smithi003 (mon.0) 372 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:01:16.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.851715+0000 mon.smithi003 (mon.0) 373 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:16 smithi003 bash[19900]: audit 2024-09-06T15:01:15.851715+0000 mon.smithi003 (mon.0) 373 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: cluster 2024-09-06T15:01:15.106050+0000 mgr.smithi003.ghjsjw (mgr.14197) 91 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: cluster 2024-09-06T15:01:15.106050+0000 mgr.smithi003.ghjsjw (mgr.14197) 91 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.150261+0000 mon.smithi003 (mon.0) 360 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.150261+0000 mon.smithi003 (mon.0) 360 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.154820+0000 mon.smithi003 (mon.0) 361 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.154820+0000 mon.smithi003 (mon.0) 361 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.160185+0000 mon.smithi003 (mon.0) 362 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.160185+0000 mon.smithi003 (mon.0) 362 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.164887+0000 mon.smithi003 (mon.0) 363 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.164887+0000 mon.smithi003 (mon.0) 363 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.810187+0000 mon.smithi003 (mon.0) 364 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.810187+0000 mon.smithi003 (mon.0) 364 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.819140+0000 mon.smithi003 (mon.0) 365 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.819140+0000 mon.smithi003 (mon.0) 365 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.821163+0000 mon.smithi003 (mon.0) 366 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.821163+0000 mon.smithi003 (mon.0) 366 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.822630+0000 mon.smithi003 (mon.0) 367 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.822630+0000 mon.smithi003 (mon.0) 367 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.830524+0000 mon.smithi003 (mon.0) 368 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.830524+0000 mon.smithi003 (mon.0) 368 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.837076+0000 mon.smithi003 (mon.0) 369 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.837076+0000 mon.smithi003 (mon.0) 369 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.843243+0000 mon.smithi003 (mon.0) 370 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.843243+0000 mon.smithi003 (mon.0) 370 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:01:16.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.844330+0000 mon.smithi003 (mon.0) 371 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.844330+0000 mon.smithi003 (mon.0) 371 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.850508+0000 mon.smithi003 (mon.0) 372 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:01:16.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.850508+0000 mon.smithi003 (mon.0) 372 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:01:16.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.851715+0000 mon.smithi003 (mon.0) 373 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:16.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:16 smithi120 bash[24835]: audit 2024-09-06T15:01:15.851715+0000 mon.smithi003 (mon.0) 373 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:18.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:18 smithi120 bash[24835]: cluster 2024-09-06T15:01:17.106502+0000 mgr.smithi003.ghjsjw (mgr.14197) 92 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:18.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:18 smithi120 bash[24835]: cluster 2024-09-06T15:01:17.106502+0000 mgr.smithi003.ghjsjw (mgr.14197) 92 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:18.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:18 smithi003 bash[19900]: cluster 2024-09-06T15:01:17.106502+0000 mgr.smithi003.ghjsjw (mgr.14197) 92 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:18.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:18 smithi003 bash[19900]: cluster 2024-09-06T15:01:17.106502+0000 mgr.smithi003.ghjsjw (mgr.14197) 92 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:19.613 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:01:20.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:20 smithi120 bash[24835]: cluster 2024-09-06T15:01:19.106907+0000 mgr.smithi003.ghjsjw (mgr.14197) 93 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:20.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:20 smithi120 bash[24835]: cluster 2024-09-06T15:01:19.106907+0000 mgr.smithi003.ghjsjw (mgr.14197) 93 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:20.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:20 smithi003 bash[19900]: cluster 2024-09-06T15:01:19.106907+0000 mgr.smithi003.ghjsjw (mgr.14197) 93 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:20.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:20 smithi003 bash[19900]: cluster 2024-09-06T15:01:19.106907+0000 mgr.smithi003.ghjsjw (mgr.14197) 93 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:21.655 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:01:22.287 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:22 smithi003 bash[19900]: cluster 2024-09-06T15:01:21.107329+0000 mgr.smithi003.ghjsjw (mgr.14197) 94 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:22.287 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:22 smithi003 bash[19900]: cluster 2024-09-06T15:01:21.107329+0000 mgr.smithi003.ghjsjw (mgr.14197) 94 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:22.287 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:22 smithi003 bash[19900]: audit 2024-09-06T15:01:21.657088+0000 mon.smithi003 (mon.0) 374 : audit [DBG] from='client.? 172.21.15.3:0/3902456706' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:22.287 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:22 smithi003 bash[19900]: audit 2024-09-06T15:01:21.657088+0000 mon.smithi003 (mon.0) 374 : audit [DBG] from='client.? 172.21.15.3:0/3902456706' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:22.433 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-09-06T15:01:22.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:22 smithi120 bash[24835]: cluster 2024-09-06T15:01:21.107329+0000 mgr.smithi003.ghjsjw (mgr.14197) 94 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:22.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:22 smithi120 bash[24835]: cluster 2024-09-06T15:01:21.107329+0000 mgr.smithi003.ghjsjw (mgr.14197) 94 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:22.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:22 smithi120 bash[24835]: audit 2024-09-06T15:01:21.657088+0000 mon.smithi003 (mon.0) 374 : audit [DBG] from='client.? 172.21.15.3:0/3902456706' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:22.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:22 smithi120 bash[24835]: audit 2024-09-06T15:01:21.657088+0000 mon.smithi003 (mon.0) 374 : audit [DBG] from='client.? 172.21.15.3:0/3902456706' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:23.434 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:01:24.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:24 smithi120 bash[24835]: cluster 2024-09-06T15:01:23.107842+0000 mgr.smithi003.ghjsjw (mgr.14197) 95 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:24.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:24 smithi120 bash[24835]: cluster 2024-09-06T15:01:23.107842+0000 mgr.smithi003.ghjsjw (mgr.14197) 95 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:24.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:24 smithi003 bash[19900]: cluster 2024-09-06T15:01:23.107842+0000 mgr.smithi003.ghjsjw (mgr.14197) 95 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:24.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:24 smithi003 bash[19900]: cluster 2024-09-06T15:01:23.107842+0000 mgr.smithi003.ghjsjw (mgr.14197) 95 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:25.479 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: audit 2024-09-06T15:01:24.715449+0000 mon.smithi120 (mon.1) 2 : audit [INF] from='client.? 172.21.15.120:0/1842403815' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"} : dispatch 2024-09-06T15:01:25.479 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: audit 2024-09-06T15:01:24.715449+0000 mon.smithi120 (mon.1) 2 : audit [INF] from='client.? 172.21.15.120:0/1842403815' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"} : dispatch 2024-09-06T15:01:25.479 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: audit 2024-09-06T15:01:24.716906+0000 mon.smithi003 (mon.0) 375 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"} : dispatch 2024-09-06T15:01:25.479 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: audit 2024-09-06T15:01:24.716906+0000 mon.smithi003 (mon.0) 375 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"} : dispatch 2024-09-06T15:01:25.480 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: audit 2024-09-06T15:01:24.720253+0000 mon.smithi003 (mon.0) 376 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"}]': finished 2024-09-06T15:01:25.480 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: audit 2024-09-06T15:01:24.720253+0000 mon.smithi003 (mon.0) 376 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"}]': finished 2024-09-06T15:01:25.480 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: cluster 2024-09-06T15:01:24.725273+0000 mon.smithi003 (mon.0) 377 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-06T15:01:25.480 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: cluster 2024-09-06T15:01:24.725273+0000 mon.smithi003 (mon.0) 377 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-06T15:01:25.480 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: audit 2024-09-06T15:01:24.725743+0000 mon.smithi003 (mon.0) 378 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:25.480 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:25 smithi003 bash[19900]: audit 2024-09-06T15:01:24.725743+0000 mon.smithi003 (mon.0) 378 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: audit 2024-09-06T15:01:24.715449+0000 mon.smithi120 (mon.1) 2 : audit [INF] from='client.? 172.21.15.120:0/1842403815' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"} : dispatch 2024-09-06T15:01:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: audit 2024-09-06T15:01:24.715449+0000 mon.smithi120 (mon.1) 2 : audit [INF] from='client.? 172.21.15.120:0/1842403815' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"} : dispatch 2024-09-06T15:01:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: audit 2024-09-06T15:01:24.716906+0000 mon.smithi003 (mon.0) 375 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"} : dispatch 2024-09-06T15:01:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: audit 2024-09-06T15:01:24.716906+0000 mon.smithi003 (mon.0) 375 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"} : dispatch 2024-09-06T15:01:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: audit 2024-09-06T15:01:24.720253+0000 mon.smithi003 (mon.0) 376 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"}]': finished 2024-09-06T15:01:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: audit 2024-09-06T15:01:24.720253+0000 mon.smithi003 (mon.0) 376 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4656dc11-7da5-492e-b90e-69eb07eb3805"}]': finished 2024-09-06T15:01:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: cluster 2024-09-06T15:01:24.725273+0000 mon.smithi003 (mon.0) 377 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-06T15:01:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: cluster 2024-09-06T15:01:24.725273+0000 mon.smithi003 (mon.0) 377 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-06T15:01:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: audit 2024-09-06T15:01:24.725743+0000 mon.smithi003 (mon.0) 378 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:25 smithi120 bash[24835]: audit 2024-09-06T15:01:24.725743+0000 mon.smithi003 (mon.0) 378 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:26.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: cluster 2024-09-06T15:01:25.108163+0000 mgr.smithi003.ghjsjw (mgr.14197) 96 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:26.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: cluster 2024-09-06T15:01:25.108163+0000 mgr.smithi003.ghjsjw (mgr.14197) 96 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:26.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: audit 2024-09-06T15:01:25.296624+0000 mon.smithi003 (mon.0) 379 : audit [INF] from='client.? 172.21.15.3:0/2185212791' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7a884759-ea10-46df-b47f-6ddda8b4d213"} : dispatch 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: audit 2024-09-06T15:01:25.296624+0000 mon.smithi003 (mon.0) 379 : audit [INF] from='client.? 172.21.15.3:0/2185212791' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7a884759-ea10-46df-b47f-6ddda8b4d213"} : dispatch 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: audit 2024-09-06T15:01:25.300500+0000 mon.smithi003 (mon.0) 380 : audit [INF] from='client.? 172.21.15.3:0/2185212791' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a884759-ea10-46df-b47f-6ddda8b4d213"}]': finished 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: audit 2024-09-06T15:01:25.300500+0000 mon.smithi003 (mon.0) 380 : audit [INF] from='client.? 172.21.15.3:0/2185212791' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a884759-ea10-46df-b47f-6ddda8b4d213"}]': finished 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: cluster 2024-09-06T15:01:25.305772+0000 mon.smithi003 (mon.0) 381 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: cluster 2024-09-06T15:01:25.305772+0000 mon.smithi003 (mon.0) 381 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: audit 2024-09-06T15:01:25.306067+0000 mon.smithi003 (mon.0) 382 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: audit 2024-09-06T15:01:25.306067+0000 mon.smithi003 (mon.0) 382 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: audit 2024-09-06T15:01:25.306336+0000 mon.smithi003 (mon.0) 383 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:26 smithi003 bash[19900]: audit 2024-09-06T15:01:25.306336+0000 mon.smithi003 (mon.0) 383 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:26.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: cluster 2024-09-06T15:01:25.108163+0000 mgr.smithi003.ghjsjw (mgr.14197) 96 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:26.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: cluster 2024-09-06T15:01:25.108163+0000 mgr.smithi003.ghjsjw (mgr.14197) 96 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:26.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: audit 2024-09-06T15:01:25.296624+0000 mon.smithi003 (mon.0) 379 : audit [INF] from='client.? 172.21.15.3:0/2185212791' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7a884759-ea10-46df-b47f-6ddda8b4d213"} : dispatch 2024-09-06T15:01:26.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: audit 2024-09-06T15:01:25.296624+0000 mon.smithi003 (mon.0) 379 : audit [INF] from='client.? 172.21.15.3:0/2185212791' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7a884759-ea10-46df-b47f-6ddda8b4d213"} : dispatch 2024-09-06T15:01:26.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: audit 2024-09-06T15:01:25.300500+0000 mon.smithi003 (mon.0) 380 : audit [INF] from='client.? 172.21.15.3:0/2185212791' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a884759-ea10-46df-b47f-6ddda8b4d213"}]': finished 2024-09-06T15:01:26.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: audit 2024-09-06T15:01:25.300500+0000 mon.smithi003 (mon.0) 380 : audit [INF] from='client.? 172.21.15.3:0/2185212791' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a884759-ea10-46df-b47f-6ddda8b4d213"}]': finished 2024-09-06T15:01:26.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: cluster 2024-09-06T15:01:25.305772+0000 mon.smithi003 (mon.0) 381 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-06T15:01:26.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: cluster 2024-09-06T15:01:25.305772+0000 mon.smithi003 (mon.0) 381 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-06T15:01:26.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: audit 2024-09-06T15:01:25.306067+0000 mon.smithi003 (mon.0) 382 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:26.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: audit 2024-09-06T15:01:25.306067+0000 mon.smithi003 (mon.0) 382 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:26.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: audit 2024-09-06T15:01:25.306336+0000 mon.smithi003 (mon.0) 383 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:26.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:26 smithi120 bash[24835]: audit 2024-09-06T15:01:25.306336+0000 mon.smithi003 (mon.0) 383 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:27 smithi120 bash[24835]: audit 2024-09-06T15:01:26.190368+0000 mon.smithi120 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.120:0/2410274265' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:27 smithi120 bash[24835]: audit 2024-09-06T15:01:26.190368+0000 mon.smithi120 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.120:0/2410274265' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:27 smithi120 bash[24835]: audit 2024-09-06T15:01:26.843247+0000 mon.smithi003 (mon.0) 384 : audit [DBG] from='client.? 172.21.15.3:0/1140276640' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:27 smithi120 bash[24835]: audit 2024-09-06T15:01:26.843247+0000 mon.smithi003 (mon.0) 384 : audit [DBG] from='client.? 172.21.15.3:0/1140276640' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:27.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:27 smithi003 bash[19900]: audit 2024-09-06T15:01:26.190368+0000 mon.smithi120 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.120:0/2410274265' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:27.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:27 smithi003 bash[19900]: audit 2024-09-06T15:01:26.190368+0000 mon.smithi120 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.120:0/2410274265' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:27.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:27 smithi003 bash[19900]: audit 2024-09-06T15:01:26.843247+0000 mon.smithi003 (mon.0) 384 : audit [DBG] from='client.? 172.21.15.3:0/1140276640' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:27.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:27 smithi003 bash[19900]: audit 2024-09-06T15:01:26.843247+0000 mon.smithi003 (mon.0) 384 : audit [DBG] from='client.? 172.21.15.3:0/1140276640' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:28.224 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:01:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:28 smithi003 bash[19900]: cluster 2024-09-06T15:01:27.108625+0000 mgr.smithi003.ghjsjw (mgr.14197) 97 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:28 smithi003 bash[19900]: cluster 2024-09-06T15:01:27.108625+0000 mgr.smithi003.ghjsjw (mgr.14197) 97 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:28 smithi003 bash[19900]: audit 2024-09-06T15:01:27.522375+0000 mon.smithi003 (mon.0) 385 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:28 smithi003 bash[19900]: audit 2024-09-06T15:01:27.522375+0000 mon.smithi003 (mon.0) 385 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:28 smithi120 bash[24835]: cluster 2024-09-06T15:01:27.108625+0000 mgr.smithi003.ghjsjw (mgr.14197) 97 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:28 smithi120 bash[24835]: cluster 2024-09-06T15:01:27.108625+0000 mgr.smithi003.ghjsjw (mgr.14197) 97 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:28 smithi120 bash[24835]: audit 2024-09-06T15:01:27.522375+0000 mon.smithi003 (mon.0) 385 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:28 smithi120 bash[24835]: audit 2024-09-06T15:01:27.522375+0000 mon.smithi003 (mon.0) 385 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:29.752 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:01:30.387 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1725634885,"num_remapped_pgs":0} 2024-09-06T15:01:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: cluster 2024-09-06T15:01:29.109120+0000 mgr.smithi003.ghjsjw (mgr.14197) 98 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: cluster 2024-09-06T15:01:29.109120+0000 mgr.smithi003.ghjsjw (mgr.14197) 98 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.754168+0000 mon.smithi003 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.3:0/556774715' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.754168+0000 mon.smithi003 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.3:0/556774715' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.945681+0000 mon.smithi120 (mon.1) 4 : audit [INF] from='client.? 172.21.15.120:0/3510474715' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.945681+0000 mon.smithi120 (mon.1) 4 : audit [INF] from='client.? 172.21.15.120:0/3510474715' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.946778+0000 mon.smithi003 (mon.0) 387 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.946778+0000 mon.smithi003 (mon.0) 387 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.949394+0000 mon.smithi003 (mon.0) 388 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"}]': finished 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.949394+0000 mon.smithi003 (mon.0) 388 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"}]': finished 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: cluster 2024-09-06T15:01:29.952802+0000 mon.smithi003 (mon.0) 389 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: cluster 2024-09-06T15:01:29.952802+0000 mon.smithi003 (mon.0) 389 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.953052+0000 mon.smithi003 (mon.0) 390 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.953052+0000 mon.smithi003 (mon.0) 390 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.953285+0000 mon.smithi003 (mon.0) 391 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.953285+0000 mon.smithi003 (mon.0) 391 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:30.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.953529+0000 mon.smithi003 (mon.0) 392 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:30.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:30 smithi120 bash[24835]: audit 2024-09-06T15:01:29.953529+0000 mon.smithi003 (mon.0) 392 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:30.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: cluster 2024-09-06T15:01:29.109120+0000 mgr.smithi003.ghjsjw (mgr.14197) 98 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: cluster 2024-09-06T15:01:29.109120+0000 mgr.smithi003.ghjsjw (mgr.14197) 98 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.754168+0000 mon.smithi003 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.3:0/556774715' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.754168+0000 mon.smithi003 (mon.0) 386 : audit [DBG] from='client.? 172.21.15.3:0/556774715' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.945681+0000 mon.smithi120 (mon.1) 4 : audit [INF] from='client.? 172.21.15.120:0/3510474715' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"} : dispatch 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.945681+0000 mon.smithi120 (mon.1) 4 : audit [INF] from='client.? 172.21.15.120:0/3510474715' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"} : dispatch 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.946778+0000 mon.smithi003 (mon.0) 387 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"} : dispatch 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.946778+0000 mon.smithi003 (mon.0) 387 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"} : dispatch 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.949394+0000 mon.smithi003 (mon.0) 388 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"}]': finished 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.949394+0000 mon.smithi003 (mon.0) 388 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2fff739c-26dc-4805-9826-939da49fd35c"}]': finished 2024-09-06T15:01:30.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: cluster 2024-09-06T15:01:29.952802+0000 mon.smithi003 (mon.0) 389 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-06T15:01:30.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: cluster 2024-09-06T15:01:29.952802+0000 mon.smithi003 (mon.0) 389 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-06T15:01:30.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.953052+0000 mon.smithi003 (mon.0) 390 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:30.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.953052+0000 mon.smithi003 (mon.0) 390 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:30.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.953285+0000 mon.smithi003 (mon.0) 391 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:30.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.953285+0000 mon.smithi003 (mon.0) 391 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:30.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.953529+0000 mon.smithi003 (mon.0) 392 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:30.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:30 smithi003 bash[19900]: audit 2024-09-06T15:01:29.953529+0000 mon.smithi003 (mon.0) 392 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:31.388 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:01:31.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.617529+0000 mon.smithi003 (mon.0) 393 : audit [INF] from='client.? 172.21.15.3:0/2339373070' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ab3c8364-e692-4ea2-9177-2b00d0d828d9"} : dispatch 2024-09-06T15:01:31.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.617529+0000 mon.smithi003 (mon.0) 393 : audit [INF] from='client.? 172.21.15.3:0/2339373070' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ab3c8364-e692-4ea2-9177-2b00d0d828d9"} : dispatch 2024-09-06T15:01:31.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.620520+0000 mon.smithi003 (mon.0) 394 : audit [INF] from='client.? 172.21.15.3:0/2339373070' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ab3c8364-e692-4ea2-9177-2b00d0d828d9"}]': finished 2024-09-06T15:01:31.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.620520+0000 mon.smithi003 (mon.0) 394 : audit [INF] from='client.? 172.21.15.3:0/2339373070' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ab3c8364-e692-4ea2-9177-2b00d0d828d9"}]': finished 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: cluster 2024-09-06T15:01:30.624482+0000 mon.smithi003 (mon.0) 395 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: cluster 2024-09-06T15:01:30.624482+0000 mon.smithi003 (mon.0) 395 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.624671+0000 mon.smithi003 (mon.0) 396 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.624671+0000 mon.smithi003 (mon.0) 396 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.624836+0000 mon.smithi003 (mon.0) 397 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.624836+0000 mon.smithi003 (mon.0) 397 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.624988+0000 mon.smithi003 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.624988+0000 mon.smithi003 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.625146+0000 mon.smithi003 (mon.0) 399 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:31 smithi003 bash[19900]: audit 2024-09-06T15:01:30.625146+0000 mon.smithi003 (mon.0) 399 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.617529+0000 mon.smithi003 (mon.0) 393 : audit [INF] from='client.? 172.21.15.3:0/2339373070' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ab3c8364-e692-4ea2-9177-2b00d0d828d9"} : dispatch 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.617529+0000 mon.smithi003 (mon.0) 393 : audit [INF] from='client.? 172.21.15.3:0/2339373070' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ab3c8364-e692-4ea2-9177-2b00d0d828d9"} : dispatch 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.620520+0000 mon.smithi003 (mon.0) 394 : audit [INF] from='client.? 172.21.15.3:0/2339373070' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ab3c8364-e692-4ea2-9177-2b00d0d828d9"}]': finished 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.620520+0000 mon.smithi003 (mon.0) 394 : audit [INF] from='client.? 172.21.15.3:0/2339373070' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ab3c8364-e692-4ea2-9177-2b00d0d828d9"}]': finished 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: cluster 2024-09-06T15:01:30.624482+0000 mon.smithi003 (mon.0) 395 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: cluster 2024-09-06T15:01:30.624482+0000 mon.smithi003 (mon.0) 395 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.624671+0000 mon.smithi003 (mon.0) 396 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.624671+0000 mon.smithi003 (mon.0) 396 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.624836+0000 mon.smithi003 (mon.0) 397 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.624836+0000 mon.smithi003 (mon.0) 397 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.624988+0000 mon.smithi003 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:31.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.624988+0000 mon.smithi003 (mon.0) 398 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:31.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.625146+0000 mon.smithi003 (mon.0) 399 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:31.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:31 smithi120 bash[24835]: audit 2024-09-06T15:01:30.625146+0000 mon.smithi003 (mon.0) 399 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:32 smithi120 bash[24835]: cluster 2024-09-06T15:01:31.109590+0000 mgr.smithi003.ghjsjw (mgr.14197) 99 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:32 smithi120 bash[24835]: cluster 2024-09-06T15:01:31.109590+0000 mgr.smithi003.ghjsjw (mgr.14197) 99 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:32 smithi120 bash[24835]: audit 2024-09-06T15:01:31.415991+0000 mon.smithi120 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.120:0/1451730229' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:32 smithi120 bash[24835]: audit 2024-09-06T15:01:31.415991+0000 mon.smithi120 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.120:0/1451730229' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:32 smithi120 bash[24835]: audit 2024-09-06T15:01:32.095276+0000 mon.smithi003 (mon.0) 400 : audit [DBG] from='client.? 172.21.15.3:0/3279756982' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:32 smithi120 bash[24835]: audit 2024-09-06T15:01:32.095276+0000 mon.smithi003 (mon.0) 400 : audit [DBG] from='client.? 172.21.15.3:0/3279756982' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:32 smithi003 bash[19900]: cluster 2024-09-06T15:01:31.109590+0000 mgr.smithi003.ghjsjw (mgr.14197) 99 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:32 smithi003 bash[19900]: cluster 2024-09-06T15:01:31.109590+0000 mgr.smithi003.ghjsjw (mgr.14197) 99 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:32 smithi003 bash[19900]: audit 2024-09-06T15:01:31.415991+0000 mon.smithi120 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.120:0/1451730229' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:32 smithi003 bash[19900]: audit 2024-09-06T15:01:31.415991+0000 mon.smithi120 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.120:0/1451730229' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:32.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:32 smithi003 bash[19900]: audit 2024-09-06T15:01:32.095276+0000 mon.smithi003 (mon.0) 400 : audit [DBG] from='client.? 172.21.15.3:0/3279756982' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:32.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:32 smithi003 bash[19900]: audit 2024-09-06T15:01:32.095276+0000 mon.smithi003 (mon.0) 400 : audit [DBG] from='client.? 172.21.15.3:0/3279756982' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:34 smithi120 bash[24835]: cluster 2024-09-06T15:01:33.110105+0000 mgr.smithi003.ghjsjw (mgr.14197) 100 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:34 smithi120 bash[24835]: cluster 2024-09-06T15:01:33.110105+0000 mgr.smithi003.ghjsjw (mgr.14197) 100 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:34.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:34 smithi003 bash[19900]: cluster 2024-09-06T15:01:33.110105+0000 mgr.smithi003.ghjsjw (mgr.14197) 100 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:34.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:34 smithi003 bash[19900]: cluster 2024-09-06T15:01:33.110105+0000 mgr.smithi003.ghjsjw (mgr.14197) 100 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:35.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.886590+0000 mon.smithi120 (mon.1) 6 : audit [INF] from='client.? 172.21.15.120:0/748709705' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"} : dispatch 2024-09-06T15:01:35.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.886590+0000 mon.smithi120 (mon.1) 6 : audit [INF] from='client.? 172.21.15.120:0/748709705' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"} : dispatch 2024-09-06T15:01:35.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.887996+0000 mon.smithi003 (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"} : dispatch 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.887996+0000 mon.smithi003 (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"} : dispatch 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.891501+0000 mon.smithi003 (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"}]': finished 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.891501+0000 mon.smithi003 (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"}]': finished 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: cluster 2024-09-06T15:01:34.897162+0000 mon.smithi003 (mon.0) 403 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: cluster 2024-09-06T15:01:34.897162+0000 mon.smithi003 (mon.0) 403 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.897655+0000 mon.smithi003 (mon.0) 404 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.897655+0000 mon.smithi003 (mon.0) 404 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.898017+0000 mon.smithi003 (mon.0) 405 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.898017+0000 mon.smithi003 (mon.0) 405 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.898335+0000 mon.smithi003 (mon.0) 406 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.898335+0000 mon.smithi003 (mon.0) 406 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:35.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.898650+0000 mon.smithi003 (mon.0) 407 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:35.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.898650+0000 mon.smithi003 (mon.0) 407 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:35.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.898948+0000 mon.smithi003 (mon.0) 408 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:35.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:35 smithi120 bash[24835]: audit 2024-09-06T15:01:34.898948+0000 mon.smithi003 (mon.0) 408 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:35.538 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.886590+0000 mon.smithi120 (mon.1) 6 : audit [INF] from='client.? 172.21.15.120:0/748709705' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"} : dispatch 2024-09-06T15:01:35.538 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.886590+0000 mon.smithi120 (mon.1) 6 : audit [INF] from='client.? 172.21.15.120:0/748709705' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"} : dispatch 2024-09-06T15:01:35.538 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.887996+0000 mon.smithi003 (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"} : dispatch 2024-09-06T15:01:35.538 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.887996+0000 mon.smithi003 (mon.0) 401 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"} : dispatch 2024-09-06T15:01:35.538 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.891501+0000 mon.smithi003 (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"}]': finished 2024-09-06T15:01:35.538 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.891501+0000 mon.smithi003 (mon.0) 402 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b34b627f-1ad6-489d-931b-b7cfe8f002f7"}]': finished 2024-09-06T15:01:35.538 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: cluster 2024-09-06T15:01:34.897162+0000 mon.smithi003 (mon.0) 403 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: cluster 2024-09-06T15:01:34.897162+0000 mon.smithi003 (mon.0) 403 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.897655+0000 mon.smithi003 (mon.0) 404 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.897655+0000 mon.smithi003 (mon.0) 404 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.898017+0000 mon.smithi003 (mon.0) 405 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.898017+0000 mon.smithi003 (mon.0) 405 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.898335+0000 mon.smithi003 (mon.0) 406 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.898335+0000 mon.smithi003 (mon.0) 406 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.898650+0000 mon.smithi003 (mon.0) 407 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.898650+0000 mon.smithi003 (mon.0) 407 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.898948+0000 mon.smithi003 (mon.0) 408 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:35.539 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:35 smithi003 bash[19900]: audit 2024-09-06T15:01:34.898948+0000 mon.smithi003 (mon.0) 408 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:36.175 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:01:36.311 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: cluster 2024-09-06T15:01:35.110614+0000 mgr.smithi003.ghjsjw (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:36.311 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: cluster 2024-09-06T15:01:35.110614+0000 mgr.smithi003.ghjsjw (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:36.311 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.833415+0000 mon.smithi003 (mon.0) 409 : audit [INF] from='client.? 172.21.15.3:0/52824150' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9dd0206-bcb6-4cd4-8577-90da26341c94"} : dispatch 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.833415+0000 mon.smithi003 (mon.0) 409 : audit [INF] from='client.? 172.21.15.3:0/52824150' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9dd0206-bcb6-4cd4-8577-90da26341c94"} : dispatch 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.836338+0000 mon.smithi003 (mon.0) 410 : audit [INF] from='client.? 172.21.15.3:0/52824150' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c9dd0206-bcb6-4cd4-8577-90da26341c94"}]': finished 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.836338+0000 mon.smithi003 (mon.0) 410 : audit [INF] from='client.? 172.21.15.3:0/52824150' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c9dd0206-bcb6-4cd4-8577-90da26341c94"}]': finished 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: cluster 2024-09-06T15:01:35.839925+0000 mon.smithi003 (mon.0) 411 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: cluster 2024-09-06T15:01:35.839925+0000 mon.smithi003 (mon.0) 411 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.840372+0000 mon.smithi003 (mon.0) 412 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.840372+0000 mon.smithi003 (mon.0) 412 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.840602+0000 mon.smithi003 (mon.0) 413 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.840602+0000 mon.smithi003 (mon.0) 413 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.840814+0000 mon.smithi003 (mon.0) 414 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:36.312 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.840814+0000 mon.smithi003 (mon.0) 414 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:36.313 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.841036+0000 mon.smithi003 (mon.0) 415 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:36.313 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.841036+0000 mon.smithi003 (mon.0) 415 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:36.313 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.841229+0000 mon.smithi003 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:36.313 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.841229+0000 mon.smithi003 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:36.313 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.841433+0000 mon.smithi003 (mon.0) 417 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:36.313 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:36 smithi003 bash[19900]: audit 2024-09-06T15:01:35.841433+0000 mon.smithi003 (mon.0) 417 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: cluster 2024-09-06T15:01:35.110614+0000 mgr.smithi003.ghjsjw (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: cluster 2024-09-06T15:01:35.110614+0000 mgr.smithi003.ghjsjw (mgr.14197) 101 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.833415+0000 mon.smithi003 (mon.0) 409 : audit [INF] from='client.? 172.21.15.3:0/52824150' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9dd0206-bcb6-4cd4-8577-90da26341c94"} : dispatch 2024-09-06T15:01:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.833415+0000 mon.smithi003 (mon.0) 409 : audit [INF] from='client.? 172.21.15.3:0/52824150' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9dd0206-bcb6-4cd4-8577-90da26341c94"} : dispatch 2024-09-06T15:01:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.836338+0000 mon.smithi003 (mon.0) 410 : audit [INF] from='client.? 172.21.15.3:0/52824150' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c9dd0206-bcb6-4cd4-8577-90da26341c94"}]': finished 2024-09-06T15:01:36.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.836338+0000 mon.smithi003 (mon.0) 410 : audit [INF] from='client.? 172.21.15.3:0/52824150' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c9dd0206-bcb6-4cd4-8577-90da26341c94"}]': finished 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: cluster 2024-09-06T15:01:35.839925+0000 mon.smithi003 (mon.0) 411 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: cluster 2024-09-06T15:01:35.839925+0000 mon.smithi003 (mon.0) 411 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.840372+0000 mon.smithi003 (mon.0) 412 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.840372+0000 mon.smithi003 (mon.0) 412 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.840602+0000 mon.smithi003 (mon.0) 413 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.840602+0000 mon.smithi003 (mon.0) 413 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.840814+0000 mon.smithi003 (mon.0) 414 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.840814+0000 mon.smithi003 (mon.0) 414 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:36.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.841036+0000 mon.smithi003 (mon.0) 415 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:36.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.841036+0000 mon.smithi003 (mon.0) 415 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:36.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.841229+0000 mon.smithi003 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:36.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.841229+0000 mon.smithi003 (mon.0) 416 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:36.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.841433+0000 mon.smithi003 (mon.0) 417 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:36.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:36 smithi120 bash[24835]: audit 2024-09-06T15:01:35.841433+0000 mon.smithi003 (mon.0) 417 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:37 smithi120 bash[24835]: audit 2024-09-06T15:01:36.344668+0000 mon.smithi120 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.120:0/487914334' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:37 smithi120 bash[24835]: audit 2024-09-06T15:01:36.344668+0000 mon.smithi120 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.120:0/487914334' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:37 smithi003 bash[19900]: audit 2024-09-06T15:01:36.344668+0000 mon.smithi120 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.120:0/487914334' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:37 smithi003 bash[19900]: audit 2024-09-06T15:01:36.344668+0000 mon.smithi120 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.120:0/487914334' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:38.059 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:01:38.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:38 smithi003 bash[19900]: cluster 2024-09-06T15:01:37.111128+0000 mgr.smithi003.ghjsjw (mgr.14197) 102 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:38.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:38 smithi003 bash[19900]: cluster 2024-09-06T15:01:37.111128+0000 mgr.smithi003.ghjsjw (mgr.14197) 102 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:38.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:38 smithi003 bash[19900]: audit 2024-09-06T15:01:38.057187+0000 mon.smithi003 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.3:0/3380718890' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:38.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:38 smithi003 bash[19900]: audit 2024-09-06T15:01:38.057187+0000 mon.smithi003 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.3:0/3380718890' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:38.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:38 smithi003 bash[19900]: audit 2024-09-06T15:01:38.061199+0000 mon.smithi003 (mon.0) 419 : audit [DBG] from='client.? 172.21.15.3:0/1633235577' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:38.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:38 smithi003 bash[19900]: audit 2024-09-06T15:01:38.061199+0000 mon.smithi003 (mon.0) 419 : audit [DBG] from='client.? 172.21.15.3:0/1633235577' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:38 smithi120 bash[24835]: cluster 2024-09-06T15:01:37.111128+0000 mgr.smithi003.ghjsjw (mgr.14197) 102 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:38 smithi120 bash[24835]: cluster 2024-09-06T15:01:37.111128+0000 mgr.smithi003.ghjsjw (mgr.14197) 102 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:38 smithi120 bash[24835]: audit 2024-09-06T15:01:38.057187+0000 mon.smithi003 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.3:0/3380718890' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:38 smithi120 bash[24835]: audit 2024-09-06T15:01:38.057187+0000 mon.smithi003 (mon.0) 418 : audit [DBG] from='client.? 172.21.15.3:0/3380718890' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:38 smithi120 bash[24835]: audit 2024-09-06T15:01:38.061199+0000 mon.smithi003 (mon.0) 419 : audit [DBG] from='client.? 172.21.15.3:0/1633235577' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:38 smithi120 bash[24835]: audit 2024-09-06T15:01:38.061199+0000 mon.smithi003 (mon.0) 419 : audit [DBG] from='client.? 172.21.15.3:0/1633235577' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:38.793 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1725634895,"num_remapped_pgs":0} 2024-09-06T15:01:39.797 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: cluster 2024-09-06T15:01:39.111749+0000 mgr.smithi003.ghjsjw (mgr.14197) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: cluster 2024-09-06T15:01:39.111749+0000 mgr.smithi003.ghjsjw (mgr.14197) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.045520+0000 mon.smithi120 (mon.1) 8 : audit [INF] from='client.? 172.21.15.120:0/3582889397' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"} : dispatch 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.045520+0000 mon.smithi120 (mon.1) 8 : audit [INF] from='client.? 172.21.15.120:0/3582889397' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"} : dispatch 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.046662+0000 mon.smithi003 (mon.0) 420 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"} : dispatch 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.046662+0000 mon.smithi003 (mon.0) 420 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"} : dispatch 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.049244+0000 mon.smithi003 (mon.0) 421 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"}]': finished 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.049244+0000 mon.smithi003 (mon.0) 421 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"}]': finished 2024-09-06T15:01:40.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: cluster 2024-09-06T15:01:40.054000+0000 mon.smithi003 (mon.0) 422 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: cluster 2024-09-06T15:01:40.054000+0000 mon.smithi003 (mon.0) 422 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.054252+0000 mon.smithi003 (mon.0) 423 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.054252+0000 mon.smithi003 (mon.0) 423 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.054508+0000 mon.smithi003 (mon.0) 424 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.054508+0000 mon.smithi003 (mon.0) 424 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.054730+0000 mon.smithi003 (mon.0) 425 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.054730+0000 mon.smithi003 (mon.0) 425 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.054947+0000 mon.smithi003 (mon.0) 426 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.054947+0000 mon.smithi003 (mon.0) 426 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.055165+0000 mon.smithi003 (mon.0) 427 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.055165+0000 mon.smithi003 (mon.0) 427 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.055376+0000 mon.smithi003 (mon.0) 428 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.055376+0000 mon.smithi003 (mon.0) 428 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:40.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.055589+0000 mon.smithi003 (mon.0) 429 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:01:40.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:40 smithi003 bash[19900]: audit 2024-09-06T15:01:40.055589+0000 mon.smithi003 (mon.0) 429 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:01:40.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: cluster 2024-09-06T15:01:39.111749+0000 mgr.smithi003.ghjsjw (mgr.14197) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: cluster 2024-09-06T15:01:39.111749+0000 mgr.smithi003.ghjsjw (mgr.14197) 103 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.045520+0000 mon.smithi120 (mon.1) 8 : audit [INF] from='client.? 172.21.15.120:0/3582889397' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"} : dispatch 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.045520+0000 mon.smithi120 (mon.1) 8 : audit [INF] from='client.? 172.21.15.120:0/3582889397' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"} : dispatch 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.046662+0000 mon.smithi003 (mon.0) 420 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"} : dispatch 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.046662+0000 mon.smithi003 (mon.0) 420 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"} : dispatch 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.049244+0000 mon.smithi003 (mon.0) 421 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"}]': finished 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.049244+0000 mon.smithi003 (mon.0) 421 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c5476be0-03fd-46e2-b287-2ddc93c89193"}]': finished 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: cluster 2024-09-06T15:01:40.054000+0000 mon.smithi003 (mon.0) 422 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: cluster 2024-09-06T15:01:40.054000+0000 mon.smithi003 (mon.0) 422 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.054252+0000 mon.smithi003 (mon.0) 423 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.054252+0000 mon.smithi003 (mon.0) 423 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.054508+0000 mon.smithi003 (mon.0) 424 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:40.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.054508+0000 mon.smithi003 (mon.0) 424 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.054730+0000 mon.smithi003 (mon.0) 425 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.054730+0000 mon.smithi003 (mon.0) 425 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.054947+0000 mon.smithi003 (mon.0) 426 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.054947+0000 mon.smithi003 (mon.0) 426 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.055165+0000 mon.smithi003 (mon.0) 427 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.055165+0000 mon.smithi003 (mon.0) 427 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.055376+0000 mon.smithi003 (mon.0) 428 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.055376+0000 mon.smithi003 (mon.0) 428 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.055589+0000 mon.smithi003 (mon.0) 429 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:01:40.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:40 smithi120 bash[24835]: audit 2024-09-06T15:01:40.055589+0000 mon.smithi003 (mon.0) 429 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:01:42.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: cluster 2024-09-06T15:01:41.112233+0000 mgr.smithi003.ghjsjw (mgr.14197) 104 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:42.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: cluster 2024-09-06T15:01:41.112233+0000 mgr.smithi003.ghjsjw (mgr.14197) 104 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:42.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.464691+0000 mon.smithi120 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.120:0/3449679206' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:42.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.464691+0000 mon.smithi120 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.120:0/3449679206' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.812490+0000 mon.smithi003 (mon.0) 430 : audit [INF] from='client.? 172.21.15.3:0/4183659751' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bc7dbee8-4565-4faa-a483-0b3e6afd8e0b"} : dispatch 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.812490+0000 mon.smithi003 (mon.0) 430 : audit [INF] from='client.? 172.21.15.3:0/4183659751' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bc7dbee8-4565-4faa-a483-0b3e6afd8e0b"} : dispatch 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.815650+0000 mon.smithi003 (mon.0) 431 : audit [INF] from='client.? 172.21.15.3:0/4183659751' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bc7dbee8-4565-4faa-a483-0b3e6afd8e0b"}]': finished 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.815650+0000 mon.smithi003 (mon.0) 431 : audit [INF] from='client.? 172.21.15.3:0/4183659751' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bc7dbee8-4565-4faa-a483-0b3e6afd8e0b"}]': finished 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: cluster 2024-09-06T15:01:41.820471+0000 mon.smithi003 (mon.0) 432 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: cluster 2024-09-06T15:01:41.820471+0000 mon.smithi003 (mon.0) 432 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.820868+0000 mon.smithi003 (mon.0) 433 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.820868+0000 mon.smithi003 (mon.0) 433 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.821245+0000 mon.smithi003 (mon.0) 434 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.821245+0000 mon.smithi003 (mon.0) 434 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.821551+0000 mon.smithi003 (mon.0) 435 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:42.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.821551+0000 mon.smithi003 (mon.0) 435 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.821883+0000 mon.smithi003 (mon.0) 436 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.821883+0000 mon.smithi003 (mon.0) 436 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.822179+0000 mon.smithi003 (mon.0) 437 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.822179+0000 mon.smithi003 (mon.0) 437 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.822506+0000 mon.smithi003 (mon.0) 438 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.822506+0000 mon.smithi003 (mon.0) 438 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.822810+0000 mon.smithi003 (mon.0) 439 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.822810+0000 mon.smithi003 (mon.0) 439 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.823114+0000 mon.smithi003 (mon.0) 440 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:01:42.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:42 smithi120 bash[24835]: audit 2024-09-06T15:01:41.823114+0000 mon.smithi003 (mon.0) 440 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: cluster 2024-09-06T15:01:41.112233+0000 mgr.smithi003.ghjsjw (mgr.14197) 104 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: cluster 2024-09-06T15:01:41.112233+0000 mgr.smithi003.ghjsjw (mgr.14197) 104 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.464691+0000 mon.smithi120 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.120:0/3449679206' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.464691+0000 mon.smithi120 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.120:0/3449679206' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.812490+0000 mon.smithi003 (mon.0) 430 : audit [INF] from='client.? 172.21.15.3:0/4183659751' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bc7dbee8-4565-4faa-a483-0b3e6afd8e0b"} : dispatch 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.812490+0000 mon.smithi003 (mon.0) 430 : audit [INF] from='client.? 172.21.15.3:0/4183659751' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bc7dbee8-4565-4faa-a483-0b3e6afd8e0b"} : dispatch 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.815650+0000 mon.smithi003 (mon.0) 431 : audit [INF] from='client.? 172.21.15.3:0/4183659751' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bc7dbee8-4565-4faa-a483-0b3e6afd8e0b"}]': finished 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.815650+0000 mon.smithi003 (mon.0) 431 : audit [INF] from='client.? 172.21.15.3:0/4183659751' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bc7dbee8-4565-4faa-a483-0b3e6afd8e0b"}]': finished 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: cluster 2024-09-06T15:01:41.820471+0000 mon.smithi003 (mon.0) 432 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: cluster 2024-09-06T15:01:41.820471+0000 mon.smithi003 (mon.0) 432 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-06T15:01:42.654 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.820868+0000 mon.smithi003 (mon.0) 433 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.820868+0000 mon.smithi003 (mon.0) 433 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.821245+0000 mon.smithi003 (mon.0) 434 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.821245+0000 mon.smithi003 (mon.0) 434 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.821551+0000 mon.smithi003 (mon.0) 435 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.821551+0000 mon.smithi003 (mon.0) 435 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.821883+0000 mon.smithi003 (mon.0) 436 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.821883+0000 mon.smithi003 (mon.0) 436 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.822179+0000 mon.smithi003 (mon.0) 437 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.822179+0000 mon.smithi003 (mon.0) 437 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.822506+0000 mon.smithi003 (mon.0) 438 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.822506+0000 mon.smithi003 (mon.0) 438 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.822810+0000 mon.smithi003 (mon.0) 439 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:01:42.655 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.822810+0000 mon.smithi003 (mon.0) 439 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:01:42.656 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.823114+0000 mon.smithi003 (mon.0) 440 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:01:42.656 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:42 smithi003 bash[19900]: audit 2024-09-06T15:01:41.823114+0000 mon.smithi003 (mon.0) 440 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:01:43.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:43 smithi120 bash[24835]: audit 2024-09-06T15:01:42.523064+0000 mon.smithi003 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:43.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:43 smithi120 bash[24835]: audit 2024-09-06T15:01:42.523064+0000 mon.smithi003 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:43.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:43 smithi003 bash[19900]: audit 2024-09-06T15:01:42.523064+0000 mon.smithi003 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:43.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:43 smithi003 bash[19900]: audit 2024-09-06T15:01:42.523064+0000 mon.smithi003 (mon.0) 441 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:44.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:44 smithi120 bash[24835]: cluster 2024-09-06T15:01:43.112635+0000 mgr.smithi003.ghjsjw (mgr.14197) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:44.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:44 smithi120 bash[24835]: cluster 2024-09-06T15:01:43.112635+0000 mgr.smithi003.ghjsjw (mgr.14197) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:44.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:44 smithi120 bash[24835]: audit 2024-09-06T15:01:43.245715+0000 mon.smithi003 (mon.0) 442 : audit [DBG] from='client.? 172.21.15.3:0/3161429480' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:44.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:44 smithi120 bash[24835]: audit 2024-09-06T15:01:43.245715+0000 mon.smithi003 (mon.0) 442 : audit [DBG] from='client.? 172.21.15.3:0/3161429480' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:44.582 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:01:44.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:44 smithi003 bash[19900]: cluster 2024-09-06T15:01:43.112635+0000 mgr.smithi003.ghjsjw (mgr.14197) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:44.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:44 smithi003 bash[19900]: cluster 2024-09-06T15:01:43.112635+0000 mgr.smithi003.ghjsjw (mgr.14197) 105 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:44.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:44 smithi003 bash[19900]: audit 2024-09-06T15:01:43.245715+0000 mon.smithi003 (mon.0) 442 : audit [DBG] from='client.? 172.21.15.3:0/3161429480' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:44.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:44 smithi003 bash[19900]: audit 2024-09-06T15:01:43.245715+0000 mon.smithi003 (mon.0) 442 : audit [DBG] from='client.? 172.21.15.3:0/3161429480' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-06T15:01:46.094 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:01:46.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:46 smithi003 bash[19900]: cluster 2024-09-06T15:01:45.113107+0000 mgr.smithi003.ghjsjw (mgr.14197) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:46.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:46 smithi003 bash[19900]: cluster 2024-09-06T15:01:45.113107+0000 mgr.smithi003.ghjsjw (mgr.14197) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:46.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:46 smithi003 bash[19900]: audit 2024-09-06T15:01:46.096674+0000 mon.smithi003 (mon.0) 443 : audit [DBG] from='client.? 172.21.15.3:0/2123230436' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:46.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:46 smithi003 bash[19900]: audit 2024-09-06T15:01:46.096674+0000 mon.smithi003 (mon.0) 443 : audit [DBG] from='client.? 172.21.15.3:0/2123230436' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:46.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:46 smithi120 bash[24835]: cluster 2024-09-06T15:01:45.113107+0000 mgr.smithi003.ghjsjw (mgr.14197) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:46.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:46 smithi120 bash[24835]: cluster 2024-09-06T15:01:45.113107+0000 mgr.smithi003.ghjsjw (mgr.14197) 106 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:46.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:46 smithi120 bash[24835]: audit 2024-09-06T15:01:46.096674+0000 mon.smithi003 (mon.0) 443 : audit [DBG] from='client.? 172.21.15.3:0/2123230436' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:46.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:46 smithi120 bash[24835]: audit 2024-09-06T15:01:46.096674+0000 mon.smithi003 (mon.0) 443 : audit [DBG] from='client.? 172.21.15.3:0/2123230436' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:46.743 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725634901,"num_remapped_pgs":0} 2024-09-06T15:01:47.744 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:01:48.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:48 smithi120 bash[24835]: cluster 2024-09-06T15:01:47.113571+0000 mgr.smithi003.ghjsjw (mgr.14197) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:48.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:48 smithi120 bash[24835]: cluster 2024-09-06T15:01:47.113571+0000 mgr.smithi003.ghjsjw (mgr.14197) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:48 smithi003 bash[19900]: cluster 2024-09-06T15:01:47.113571+0000 mgr.smithi003.ghjsjw (mgr.14197) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:48.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:48 smithi003 bash[19900]: cluster 2024-09-06T15:01:47.113571+0000 mgr.smithi003.ghjsjw (mgr.14197) 107 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:50.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:50 smithi120 bash[24835]: cluster 2024-09-06T15:01:49.114054+0000 mgr.smithi003.ghjsjw (mgr.14197) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:50.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:50 smithi120 bash[24835]: cluster 2024-09-06T15:01:49.114054+0000 mgr.smithi003.ghjsjw (mgr.14197) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:50 smithi003 bash[19900]: cluster 2024-09-06T15:01:49.114054+0000 mgr.smithi003.ghjsjw (mgr.14197) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:50.652 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:50 smithi003 bash[19900]: cluster 2024-09-06T15:01:49.114054+0000 mgr.smithi003.ghjsjw (mgr.14197) 108 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:52.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:52 smithi120 bash[24835]: cluster 2024-09-06T15:01:51.114539+0000 mgr.smithi003.ghjsjw (mgr.14197) 109 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:52.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:52 smithi120 bash[24835]: cluster 2024-09-06T15:01:51.114539+0000 mgr.smithi003.ghjsjw (mgr.14197) 109 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:52.531 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:01:52.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:52 smithi003 bash[19900]: cluster 2024-09-06T15:01:51.114539+0000 mgr.smithi003.ghjsjw (mgr.14197) 109 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:52.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:52 smithi003 bash[19900]: cluster 2024-09-06T15:01:51.114539+0000 mgr.smithi003.ghjsjw (mgr.14197) 109 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:54.302 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:54 smithi003 bash[19900]: cluster 2024-09-06T15:01:53.115107+0000 mgr.smithi003.ghjsjw (mgr.14197) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:54.302 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:54 smithi003 bash[19900]: cluster 2024-09-06T15:01:53.115107+0000 mgr.smithi003.ghjsjw (mgr.14197) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:54.302 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:54 smithi003 bash[19900]: audit 2024-09-06T15:01:54.014556+0000 mon.smithi003 (mon.0) 444 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-06T15:01:54.302 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:54 smithi003 bash[19900]: audit 2024-09-06T15:01:54.014556+0000 mon.smithi003 (mon.0) 444 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-06T15:01:54.302 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:54 smithi003 bash[19900]: audit 2024-09-06T15:01:54.015581+0000 mon.smithi003 (mon.0) 445 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:54.302 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:54 smithi003 bash[19900]: audit 2024-09-06T15:01:54.015581+0000 mon.smithi003 (mon.0) 445 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:54.390 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:01:54.585 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:54 smithi120 bash[24835]: cluster 2024-09-06T15:01:53.115107+0000 mgr.smithi003.ghjsjw (mgr.14197) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:54.585 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:54 smithi120 bash[24835]: cluster 2024-09-06T15:01:53.115107+0000 mgr.smithi003.ghjsjw (mgr.14197) 110 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:54.585 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:54 smithi120 bash[24835]: audit 2024-09-06T15:01:54.014556+0000 mon.smithi003 (mon.0) 444 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-06T15:01:54.585 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:54 smithi120 bash[24835]: audit 2024-09-06T15:01:54.014556+0000 mon.smithi003 (mon.0) 444 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-06T15:01:54.585 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:54 smithi120 bash[24835]: audit 2024-09-06T15:01:54.015581+0000 mon.smithi003 (mon.0) 445 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:54.585 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:54 smithi120 bash[24835]: audit 2024-09-06T15:01:54.015581+0000 mon.smithi003 (mon.0) 445 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:55.430 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:55 smithi003 bash[19900]: cephadm 2024-09-06T15:01:54.016477+0000 mgr.smithi003.ghjsjw (mgr.14197) 111 : cephadm [INF] Deploying daemon osd.0 on smithi120 2024-09-06T15:01:55.430 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:55 smithi003 bash[19900]: cephadm 2024-09-06T15:01:54.016477+0000 mgr.smithi003.ghjsjw (mgr.14197) 111 : cephadm [INF] Deploying daemon osd.0 on smithi120 2024-09-06T15:01:55.430 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:55 smithi003 bash[19900]: audit 2024-09-06T15:01:54.392085+0000 mon.smithi003 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.3:0/622542856' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:55.430 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:55 smithi003 bash[19900]: audit 2024-09-06T15:01:54.392085+0000 mon.smithi003 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.3:0/622542856' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:55.431 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725634901,"num_remapped_pgs":0} 2024-09-06T15:01:55.508 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:55 smithi120 bash[24835]: cephadm 2024-09-06T15:01:54.016477+0000 mgr.smithi003.ghjsjw (mgr.14197) 111 : cephadm [INF] Deploying daemon osd.0 on smithi120 2024-09-06T15:01:55.508 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:55 smithi120 bash[24835]: cephadm 2024-09-06T15:01:54.016477+0000 mgr.smithi003.ghjsjw (mgr.14197) 111 : cephadm [INF] Deploying daemon osd.0 on smithi120 2024-09-06T15:01:55.508 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:55 smithi120 bash[24835]: audit 2024-09-06T15:01:54.392085+0000 mon.smithi003 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.3:0/622542856' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:55.508 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:55 smithi120 bash[24835]: audit 2024-09-06T15:01:54.392085+0000 mon.smithi003 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.3:0/622542856' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:01:56.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:56 smithi003 bash[19900]: cluster 2024-09-06T15:01:55.115630+0000 mgr.smithi003.ghjsjw (mgr.14197) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:56.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:56 smithi003 bash[19900]: cluster 2024-09-06T15:01:55.115630+0000 mgr.smithi003.ghjsjw (mgr.14197) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:56.433 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:01:56.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:56 smithi120 bash[24835]: cluster 2024-09-06T15:01:55.115630+0000 mgr.smithi003.ghjsjw (mgr.14197) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:56.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:56 smithi120 bash[24835]: cluster 2024-09-06T15:01:55.115630+0000 mgr.smithi003.ghjsjw (mgr.14197) 112 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:57.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:57 smithi120 bash[24835]: audit 2024-09-06T15:01:57.141971+0000 mon.smithi003 (mon.0) 447 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-06T15:01:57.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:57 smithi120 bash[24835]: audit 2024-09-06T15:01:57.141971+0000 mon.smithi003 (mon.0) 447 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-06T15:01:57.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:57 smithi120 bash[24835]: audit 2024-09-06T15:01:57.143693+0000 mon.smithi003 (mon.0) 448 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:57.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:57 smithi120 bash[24835]: audit 2024-09-06T15:01:57.143693+0000 mon.smithi003 (mon.0) 448 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:57.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:57 smithi003 bash[19900]: audit 2024-09-06T15:01:57.141971+0000 mon.smithi003 (mon.0) 447 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-06T15:01:57.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:57 smithi003 bash[19900]: audit 2024-09-06T15:01:57.141971+0000 mon.smithi003 (mon.0) 447 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-06T15:01:57.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:57 smithi003 bash[19900]: audit 2024-09-06T15:01:57.143693+0000 mon.smithi003 (mon.0) 448 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:57.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:57 smithi003 bash[19900]: audit 2024-09-06T15:01:57.143693+0000 mon.smithi003 (mon.0) 448 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:57.949 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:57 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:01:58.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:01:58.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:58 smithi003 bash[19900]: cluster 2024-09-06T15:01:57.116104+0000 mgr.smithi003.ghjsjw (mgr.14197) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:58.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:58 smithi003 bash[19900]: cluster 2024-09-06T15:01:57.116104+0000 mgr.smithi003.ghjsjw (mgr.14197) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:58.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:58 smithi003 bash[19900]: cephadm 2024-09-06T15:01:57.145366+0000 mgr.smithi003.ghjsjw (mgr.14197) 114 : cephadm [INF] Deploying daemon osd.1 on smithi003 2024-09-06T15:01:58.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:58 smithi003 bash[19900]: cephadm 2024-09-06T15:01:57.145366+0000 mgr.smithi003.ghjsjw (mgr.14197) 114 : cephadm [INF] Deploying daemon osd.1 on smithi003 2024-09-06T15:01:58.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:58 smithi003 bash[19900]: audit 2024-09-06T15:01:57.523705+0000 mon.smithi003 (mon.0) 449 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:58.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:58 smithi003 bash[19900]: audit 2024-09-06T15:01:57.523705+0000 mon.smithi003 (mon.0) 449 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:58.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:58 smithi003 bash[19900]: audit 2024-09-06T15:01:58.256421+0000 mon.smithi003 (mon.0) 450 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:58.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:58 smithi003 bash[19900]: audit 2024-09-06T15:01:58.256421+0000 mon.smithi003 (mon.0) 450 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:58.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 bash[24835]: cluster 2024-09-06T15:01:57.116104+0000 mgr.smithi003.ghjsjw (mgr.14197) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:58.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 bash[24835]: cluster 2024-09-06T15:01:57.116104+0000 mgr.smithi003.ghjsjw (mgr.14197) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:01:58.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 bash[24835]: cephadm 2024-09-06T15:01:57.145366+0000 mgr.smithi003.ghjsjw (mgr.14197) 114 : cephadm [INF] Deploying daemon osd.1 on smithi003 2024-09-06T15:01:58.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 bash[24835]: cephadm 2024-09-06T15:01:57.145366+0000 mgr.smithi003.ghjsjw (mgr.14197) 114 : cephadm [INF] Deploying daemon osd.1 on smithi003 2024-09-06T15:01:58.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 bash[24835]: audit 2024-09-06T15:01:57.523705+0000 mon.smithi003 (mon.0) 449 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:58.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 bash[24835]: audit 2024-09-06T15:01:57.523705+0000 mon.smithi003 (mon.0) 449 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:01:58.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 bash[24835]: audit 2024-09-06T15:01:58.256421+0000 mon.smithi003 (mon.0) 450 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:58.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:58 smithi120 bash[24835]: audit 2024-09-06T15:01:58.256421+0000 mon.smithi003 (mon.0) 450 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:59.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:59 smithi003 bash[19900]: audit 2024-09-06T15:01:58.265036+0000 mon.smithi003 (mon.0) 451 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:59.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:59 smithi003 bash[19900]: audit 2024-09-06T15:01:58.265036+0000 mon.smithi003 (mon.0) 451 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:59.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:59 smithi003 bash[19900]: audit 2024-09-06T15:01:58.266852+0000 mon.smithi003 (mon.0) 452 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-06T15:01:59.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:59 smithi003 bash[19900]: audit 2024-09-06T15:01:58.266852+0000 mon.smithi003 (mon.0) 452 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-06T15:01:59.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:59 smithi003 bash[19900]: audit 2024-09-06T15:01:58.274812+0000 mon.smithi003 (mon.0) 453 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:59.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:59 smithi003 bash[19900]: audit 2024-09-06T15:01:58.274812+0000 mon.smithi003 (mon.0) 453 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:59.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:59 smithi003 bash[19900]: cephadm 2024-09-06T15:01:58.276301+0000 mgr.smithi003.ghjsjw (mgr.14197) 115 : cephadm [INF] Deploying daemon osd.2 on smithi120 2024-09-06T15:01:59.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:01:59 smithi003 bash[19900]: cephadm 2024-09-06T15:01:58.276301+0000 mgr.smithi003.ghjsjw (mgr.14197) 115 : cephadm [INF] Deploying daemon osd.2 on smithi120 2024-09-06T15:01:59.542 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:59 smithi120 bash[24835]: audit 2024-09-06T15:01:58.265036+0000 mon.smithi003 (mon.0) 451 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:59.542 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:59 smithi120 bash[24835]: audit 2024-09-06T15:01:58.265036+0000 mon.smithi003 (mon.0) 451 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:01:59.542 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:59 smithi120 bash[24835]: audit 2024-09-06T15:01:58.266852+0000 mon.smithi003 (mon.0) 452 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-06T15:01:59.543 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:59 smithi120 bash[24835]: audit 2024-09-06T15:01:58.266852+0000 mon.smithi003 (mon.0) 452 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-06T15:01:59.543 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:59 smithi120 bash[24835]: audit 2024-09-06T15:01:58.274812+0000 mon.smithi003 (mon.0) 453 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:59.543 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:59 smithi120 bash[24835]: audit 2024-09-06T15:01:58.274812+0000 mon.smithi003 (mon.0) 453 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:01:59.543 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:59 smithi120 bash[24835]: cephadm 2024-09-06T15:01:58.276301+0000 mgr.smithi003.ghjsjw (mgr.14197) 115 : cephadm [INF] Deploying daemon osd.2 on smithi120 2024-09-06T15:01:59.543 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:01:59 smithi120 bash[24835]: cephadm 2024-09-06T15:01:58.276301+0000 mgr.smithi003.ghjsjw (mgr.14197) 115 : cephadm [INF] Deploying daemon osd.2 on smithi120 2024-09-06T15:02:00.550 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:00 smithi003 bash[19900]: cluster 2024-09-06T15:01:59.116587+0000 mgr.smithi003.ghjsjw (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:00.550 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:00 smithi003 bash[19900]: cluster 2024-09-06T15:01:59.116587+0000 mgr.smithi003.ghjsjw (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:00.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:00 smithi120 bash[24835]: cluster 2024-09-06T15:01:59.116587+0000 mgr.smithi003.ghjsjw (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:00.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:00 smithi120 bash[24835]: cluster 2024-09-06T15:01:59.116587+0000 mgr.smithi003.ghjsjw (mgr.14197) 116 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:01.786 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:02:01.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:01 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:02.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:01 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:02.601 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: cluster 2024-09-06T15:02:01.117097+0000 mgr.smithi003.ghjsjw (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:02.601 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: cluster 2024-09-06T15:02:01.117097+0000 mgr.smithi003.ghjsjw (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:02.601 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: audit 2024-09-06T15:02:02.148961+0000 mon.smithi003 (mon.0) 454 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:02.602 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: audit 2024-09-06T15:02:02.148961+0000 mon.smithi003 (mon.0) 454 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:02.602 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: audit 2024-09-06T15:02:02.154001+0000 mon.smithi003 (mon.0) 455 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:02.602 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: audit 2024-09-06T15:02:02.154001+0000 mon.smithi003 (mon.0) 455 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:02.602 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: audit 2024-09-06T15:02:02.154776+0000 mon.smithi003 (mon.0) 456 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-06T15:02:02.602 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: audit 2024-09-06T15:02:02.154776+0000 mon.smithi003 (mon.0) 456 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-06T15:02:02.602 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: audit 2024-09-06T15:02:02.155435+0000 mon.smithi003 (mon.0) 457 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:02.602 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 bash[24835]: audit 2024-09-06T15:02:02.155435+0000 mon.smithi003 (mon.0) 457 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:02.629 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: cluster 2024-09-06T15:02:01.117097+0000 mgr.smithi003.ghjsjw (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:02.629 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: cluster 2024-09-06T15:02:01.117097+0000 mgr.smithi003.ghjsjw (mgr.14197) 117 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:02.629 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: audit 2024-09-06T15:02:02.148961+0000 mon.smithi003 (mon.0) 454 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:02.629 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: audit 2024-09-06T15:02:02.148961+0000 mon.smithi003 (mon.0) 454 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:02.629 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: audit 2024-09-06T15:02:02.154001+0000 mon.smithi003 (mon.0) 455 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:02.629 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: audit 2024-09-06T15:02:02.154001+0000 mon.smithi003 (mon.0) 455 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:02.630 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: audit 2024-09-06T15:02:02.154776+0000 mon.smithi003 (mon.0) 456 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-06T15:02:02.630 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: audit 2024-09-06T15:02:02.154776+0000 mon.smithi003 (mon.0) 456 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-06T15:02:02.630 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: audit 2024-09-06T15:02:02.155435+0000 mon.smithi003 (mon.0) 457 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:02.630 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:02 smithi003 bash[19900]: audit 2024-09-06T15:02:02.155435+0000 mon.smithi003 (mon.0) 457 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:02.853 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:03.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:02 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:03.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: cephadm 2024-09-06T15:02:02.155988+0000 mgr.smithi003.ghjsjw (mgr.14197) 118 : cephadm [INF] Deploying daemon osd.3 on smithi003 2024-09-06T15:02:03.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: cephadm 2024-09-06T15:02:02.155988+0000 mgr.smithi003.ghjsjw (mgr.14197) 118 : cephadm [INF] Deploying daemon osd.3 on smithi003 2024-09-06T15:02:03.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: audit 2024-09-06T15:02:03.021593+0000 mon.smithi003 (mon.0) 458 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:03.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: audit 2024-09-06T15:02:03.021593+0000 mon.smithi003 (mon.0) 458 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:03.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: audit 2024-09-06T15:02:03.028424+0000 mon.smithi003 (mon.0) 459 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:03.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: audit 2024-09-06T15:02:03.028424+0000 mon.smithi003 (mon.0) 459 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:03.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: audit 2024-09-06T15:02:03.030051+0000 mon.smithi003 (mon.0) 460 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-06T15:02:03.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: audit 2024-09-06T15:02:03.030051+0000 mon.smithi003 (mon.0) 460 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-06T15:02:03.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: audit 2024-09-06T15:02:03.031739+0000 mon.smithi003 (mon.0) 461 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:03.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:03 smithi120 bash[24835]: audit 2024-09-06T15:02:03.031739+0000 mon.smithi003 (mon.0) 461 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:03.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: cephadm 2024-09-06T15:02:02.155988+0000 mgr.smithi003.ghjsjw (mgr.14197) 118 : cephadm [INF] Deploying daemon osd.3 on smithi003 2024-09-06T15:02:03.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: cephadm 2024-09-06T15:02:02.155988+0000 mgr.smithi003.ghjsjw (mgr.14197) 118 : cephadm [INF] Deploying daemon osd.3 on smithi003 2024-09-06T15:02:03.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: audit 2024-09-06T15:02:03.021593+0000 mon.smithi003 (mon.0) 458 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:03.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: audit 2024-09-06T15:02:03.021593+0000 mon.smithi003 (mon.0) 458 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:03.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: audit 2024-09-06T15:02:03.028424+0000 mon.smithi003 (mon.0) 459 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:03.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: audit 2024-09-06T15:02:03.028424+0000 mon.smithi003 (mon.0) 459 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:03.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: audit 2024-09-06T15:02:03.030051+0000 mon.smithi003 (mon.0) 460 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-06T15:02:03.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: audit 2024-09-06T15:02:03.030051+0000 mon.smithi003 (mon.0) 460 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-06T15:02:03.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: audit 2024-09-06T15:02:03.031739+0000 mon.smithi003 (mon.0) 461 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:03.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:03 smithi003 bash[19900]: audit 2024-09-06T15:02:03.031739+0000 mon.smithi003 (mon.0) 461 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:04.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:04 smithi003 bash[19900]: cephadm 2024-09-06T15:02:03.033319+0000 mgr.smithi003.ghjsjw (mgr.14197) 119 : cephadm [INF] Deploying daemon osd.4 on smithi120 2024-09-06T15:02:04.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:04 smithi003 bash[19900]: cephadm 2024-09-06T15:02:03.033319+0000 mgr.smithi003.ghjsjw (mgr.14197) 119 : cephadm [INF] Deploying daemon osd.4 on smithi120 2024-09-06T15:02:04.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:04 smithi003 bash[19900]: cluster 2024-09-06T15:02:03.117557+0000 mgr.smithi003.ghjsjw (mgr.14197) 120 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:04.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:04 smithi003 bash[19900]: cluster 2024-09-06T15:02:03.117557+0000 mgr.smithi003.ghjsjw (mgr.14197) 120 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:04.484 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:02:04.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:04 smithi120 bash[24835]: cephadm 2024-09-06T15:02:03.033319+0000 mgr.smithi003.ghjsjw (mgr.14197) 119 : cephadm [INF] Deploying daemon osd.4 on smithi120 2024-09-06T15:02:04.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:04 smithi120 bash[24835]: cephadm 2024-09-06T15:02:03.033319+0000 mgr.smithi003.ghjsjw (mgr.14197) 119 : cephadm [INF] Deploying daemon osd.4 on smithi120 2024-09-06T15:02:04.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:04 smithi120 bash[24835]: cluster 2024-09-06T15:02:03.117557+0000 mgr.smithi003.ghjsjw (mgr.14197) 120 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:04.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:04 smithi120 bash[24835]: cluster 2024-09-06T15:02:03.117557+0000 mgr.smithi003.ghjsjw (mgr.14197) 120 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:05.361 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:05 smithi003 bash[19900]: audit 2024-09-06T15:02:04.486195+0000 mon.smithi003 (mon.0) 462 : audit [DBG] from='client.? 172.21.15.3:0/2950029978' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:05.361 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:05 smithi003 bash[19900]: audit 2024-09-06T15:02:04.486195+0000 mon.smithi003 (mon.0) 462 : audit [DBG] from='client.? 172.21.15.3:0/2950029978' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:05.362 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725634901,"num_remapped_pgs":0} 2024-09-06T15:02:05.375 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:05 smithi120 bash[24835]: audit 2024-09-06T15:02:04.486195+0000 mon.smithi003 (mon.0) 462 : audit [DBG] from='client.? 172.21.15.3:0/2950029978' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:05.375 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:05 smithi120 bash[24835]: audit 2024-09-06T15:02:04.486195+0000 mon.smithi003 (mon.0) 462 : audit [DBG] from='client.? 172.21.15.3:0/2950029978' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:06.363 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:02:06.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:06 smithi120 bash[24835]: cluster 2024-09-06T15:02:05.117988+0000 mgr.smithi003.ghjsjw (mgr.14197) 121 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:06.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:06 smithi120 bash[24835]: cluster 2024-09-06T15:02:05.117988+0000 mgr.smithi003.ghjsjw (mgr.14197) 121 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:06.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:06 smithi003 bash[19900]: cluster 2024-09-06T15:02:05.117988+0000 mgr.smithi003.ghjsjw (mgr.14197) 121 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:06.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:06 smithi003 bash[19900]: cluster 2024-09-06T15:02:05.117988+0000 mgr.smithi003.ghjsjw (mgr.14197) 121 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:08.368 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:08 smithi003 bash[19900]: cluster 2024-09-06T15:02:07.118310+0000 mgr.smithi003.ghjsjw (mgr.14197) 122 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:08.368 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:08 smithi003 bash[19900]: cluster 2024-09-06T15:02:07.118310+0000 mgr.smithi003.ghjsjw (mgr.14197) 122 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:08.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:08 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:08.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:08 smithi120 bash[24835]: cluster 2024-09-06T15:02:07.118310+0000 mgr.smithi003.ghjsjw (mgr.14197) 122 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:08.476 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:08 smithi120 bash[24835]: cluster 2024-09-06T15:02:07.118310+0000 mgr.smithi003.ghjsjw (mgr.14197) 122 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:08.628 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:08 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:08.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:08 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:08.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:08 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.640077+0000 mon.smithi003 (mon.0) 463 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.640077+0000 mon.smithi003 (mon.0) 463 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.644888+0000 mon.smithi003 (mon.0) 464 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.644888+0000 mon.smithi003 (mon.0) 464 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.645595+0000 mon.smithi003 (mon.0) 465 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.645595+0000 mon.smithi003 (mon.0) 465 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.646337+0000 mon.smithi003 (mon.0) 466 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.646337+0000 mon.smithi003 (mon.0) 466 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: cephadm 2024-09-06T15:02:08.646953+0000 mgr.smithi003.ghjsjw (mgr.14197) 123 : cephadm [INF] Deploying daemon osd.6 on smithi120 2024-09-06T15:02:09.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: cephadm 2024-09-06T15:02:08.646953+0000 mgr.smithi003.ghjsjw (mgr.14197) 123 : cephadm [INF] Deploying daemon osd.6 on smithi120 2024-09-06T15:02:09.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.805865+0000 mon.smithi003 (mon.0) 467 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.805865+0000 mon.smithi003 (mon.0) 467 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.811857+0000 mon.smithi003 (mon.0) 468 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.811857+0000 mon.smithi003 (mon.0) 468 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.812519+0000 mon.smithi003 (mon.0) 469 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-06T15:02:09.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.812519+0000 mon.smithi003 (mon.0) 469 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-06T15:02:09.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.813180+0000 mon.smithi003 (mon.0) 470 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:09.746 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:09 smithi120 bash[24835]: audit 2024-09-06T15:02:08.813180+0000 mon.smithi003 (mon.0) 470 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:09.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.640077+0000 mon.smithi003 (mon.0) 463 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.640077+0000 mon.smithi003 (mon.0) 463 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.644888+0000 mon.smithi003 (mon.0) 464 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.644888+0000 mon.smithi003 (mon.0) 464 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.645595+0000 mon.smithi003 (mon.0) 465 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.645595+0000 mon.smithi003 (mon.0) 465 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.646337+0000 mon.smithi003 (mon.0) 466 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.646337+0000 mon.smithi003 (mon.0) 466 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: cephadm 2024-09-06T15:02:08.646953+0000 mgr.smithi003.ghjsjw (mgr.14197) 123 : cephadm [INF] Deploying daemon osd.6 on smithi120 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: cephadm 2024-09-06T15:02:08.646953+0000 mgr.smithi003.ghjsjw (mgr.14197) 123 : cephadm [INF] Deploying daemon osd.6 on smithi120 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.805865+0000 mon.smithi003 (mon.0) 467 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.805865+0000 mon.smithi003 (mon.0) 467 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.811857+0000 mon.smithi003 (mon.0) 468 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.811857+0000 mon.smithi003 (mon.0) 468 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.812519+0000 mon.smithi003 (mon.0) 469 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-06T15:02:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.812519+0000 mon.smithi003 (mon.0) 469 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-06T15:02:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.813180+0000 mon.smithi003 (mon.0) 470 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:09.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:09 smithi003 bash[19900]: audit 2024-09-06T15:02:08.813180+0000 mon.smithi003 (mon.0) 470 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:10 smithi003 bash[19900]: cephadm 2024-09-06T15:02:08.813721+0000 mgr.smithi003.ghjsjw (mgr.14197) 124 : cephadm [INF] Deploying daemon osd.5 on smithi003 2024-09-06T15:02:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:10 smithi003 bash[19900]: cephadm 2024-09-06T15:02:08.813721+0000 mgr.smithi003.ghjsjw (mgr.14197) 124 : cephadm [INF] Deploying daemon osd.5 on smithi003 2024-09-06T15:02:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:10 smithi003 bash[19900]: cluster 2024-09-06T15:02:09.118792+0000 mgr.smithi003.ghjsjw (mgr.14197) 125 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:10.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:10 smithi003 bash[19900]: cluster 2024-09-06T15:02:09.118792+0000 mgr.smithi003.ghjsjw (mgr.14197) 125 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:10.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:10 smithi120 bash[24835]: cephadm 2024-09-06T15:02:08.813721+0000 mgr.smithi003.ghjsjw (mgr.14197) 124 : cephadm [INF] Deploying daemon osd.5 on smithi003 2024-09-06T15:02:10.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:10 smithi120 bash[24835]: cephadm 2024-09-06T15:02:08.813721+0000 mgr.smithi003.ghjsjw (mgr.14197) 124 : cephadm [INF] Deploying daemon osd.5 on smithi003 2024-09-06T15:02:10.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:10 smithi120 bash[24835]: cluster 2024-09-06T15:02:09.118792+0000 mgr.smithi003.ghjsjw (mgr.14197) 125 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:10.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:10 smithi120 bash[24835]: cluster 2024-09-06T15:02:09.118792+0000 mgr.smithi003.ghjsjw (mgr.14197) 125 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:11.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:11 smithi120 bash[24835]: audit 2024-09-06T15:02:11.060642+0000 mon.smithi120 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T15:02:11.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:11 smithi120 bash[24835]: audit 2024-09-06T15:02:11.060642+0000 mon.smithi120 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T15:02:11.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:11 smithi120 bash[24835]: audit 2024-09-06T15:02:11.061375+0000 mon.smithi003 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T15:02:11.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:11 smithi120 bash[24835]: audit 2024-09-06T15:02:11.061375+0000 mon.smithi003 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T15:02:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:11 smithi003 bash[19900]: audit 2024-09-06T15:02:11.060642+0000 mon.smithi120 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T15:02:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:11 smithi003 bash[19900]: audit 2024-09-06T15:02:11.060642+0000 mon.smithi120 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T15:02:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:11 smithi003 bash[19900]: audit 2024-09-06T15:02:11.061375+0000 mon.smithi003 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T15:02:12.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:11 smithi003 bash[19900]: audit 2024-09-06T15:02:11.061375+0000 mon.smithi003 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-06T15:02:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: cluster 2024-09-06T15:02:11.119183+0000 mgr.smithi003.ghjsjw (mgr.14197) 126 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: cluster 2024-09-06T15:02:11.119183+0000 mgr.smithi003.ghjsjw (mgr.14197) 126 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.649892+0000 mon.smithi003 (mon.0) 472 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.649892+0000 mon.smithi003 (mon.0) 472 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: cluster 2024-09-06T15:02:11.654742+0000 mon.smithi003 (mon.0) 473 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: cluster 2024-09-06T15:02:11.654742+0000 mon.smithi003 (mon.0) 473 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.655122+0000 mon.smithi003 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.655122+0000 mon.smithi003 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.655348+0000 mon.smithi003 (mon.0) 475 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.655348+0000 mon.smithi003 (mon.0) 475 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:12.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.655628+0000 mon.smithi003 (mon.0) 476 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.655628+0000 mon.smithi003 (mon.0) 476 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.655836+0000 mon.smithi003 (mon.0) 477 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.655836+0000 mon.smithi003 (mon.0) 477 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.656064+0000 mon.smithi003 (mon.0) 478 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.656064+0000 mon.smithi003 (mon.0) 478 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.656307+0000 mon.smithi003 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.656307+0000 mon.smithi003 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.656652+0000 mon.smithi003 (mon.0) 480 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.656652+0000 mon.smithi003 (mon.0) 480 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.657080+0000 mon.smithi003 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.657080+0000 mon.smithi003 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.658978+0000 mon.smithi120 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.658978+0000 mon.smithi120 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:12.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.659618+0000 mon.smithi003 (mon.0) 482 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:12.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:11.659618+0000 mon.smithi003 (mon.0) 482 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:12.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:12.524072+0000 mon.smithi003 (mon.0) 483 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:12.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:12 smithi003 bash[19900]: audit 2024-09-06T15:02:12.524072+0000 mon.smithi003 (mon.0) 483 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:12.974 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: cluster 2024-09-06T15:02:11.119183+0000 mgr.smithi003.ghjsjw (mgr.14197) 126 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:12.974 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: cluster 2024-09-06T15:02:11.119183+0000 mgr.smithi003.ghjsjw (mgr.14197) 126 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:12.974 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.649892+0000 mon.smithi003 (mon.0) 472 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-06T15:02:12.974 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.649892+0000 mon.smithi003 (mon.0) 472 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-06T15:02:12.974 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: cluster 2024-09-06T15:02:11.654742+0000 mon.smithi003 (mon.0) 473 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: cluster 2024-09-06T15:02:11.654742+0000 mon.smithi003 (mon.0) 473 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.655122+0000 mon.smithi003 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.655122+0000 mon.smithi003 (mon.0) 474 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.655348+0000 mon.smithi003 (mon.0) 475 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.655348+0000 mon.smithi003 (mon.0) 475 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.655628+0000 mon.smithi003 (mon.0) 476 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.655628+0000 mon.smithi003 (mon.0) 476 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.655836+0000 mon.smithi003 (mon.0) 477 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.655836+0000 mon.smithi003 (mon.0) 477 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.656064+0000 mon.smithi003 (mon.0) 478 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:12.975 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.656064+0000 mon.smithi003 (mon.0) 478 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.656307+0000 mon.smithi003 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.656307+0000 mon.smithi003 (mon.0) 479 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.656652+0000 mon.smithi003 (mon.0) 480 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.656652+0000 mon.smithi003 (mon.0) 480 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.657080+0000 mon.smithi003 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.657080+0000 mon.smithi003 (mon.0) 481 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.658978+0000 mon.smithi120 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.658978+0000 mon.smithi120 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.659618+0000 mon.smithi003 (mon.0) 482 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:12.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:11.659618+0000 mon.smithi003 (mon.0) 482 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:12.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:12.524072+0000 mon.smithi003 (mon.0) 483 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:12.977 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:12 smithi120 bash[24835]: audit 2024-09-06T15:02:12.524072+0000 mon.smithi003 (mon.0) 483 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:13.156 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:02:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.651632+0000 mon.smithi003 (mon.0) 484 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.651632+0000 mon.smithi003 (mon.0) 484 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: cluster 2024-09-06T15:02:12.655465+0000 mon.smithi003 (mon.0) 485 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-06T15:02:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: cluster 2024-09-06T15:02:12.655465+0000 mon.smithi003 (mon.0) 485 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-06T15:02:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.655962+0000 mon.smithi003 (mon.0) 486 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.655962+0000 mon.smithi003 (mon.0) 486 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656142+0000 mon.smithi003 (mon.0) 487 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:13.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656142+0000 mon.smithi003 (mon.0) 487 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656328+0000 mon.smithi003 (mon.0) 488 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656328+0000 mon.smithi003 (mon.0) 488 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656531+0000 mon.smithi003 (mon.0) 489 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656531+0000 mon.smithi003 (mon.0) 489 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656711+0000 mon.smithi003 (mon.0) 490 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656711+0000 mon.smithi003 (mon.0) 490 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656924+0000 mon.smithi003 (mon.0) 491 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.656924+0000 mon.smithi003 (mon.0) 491 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.657098+0000 mon.smithi003 (mon.0) 492 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.657098+0000 mon.smithi003 (mon.0) 492 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.657277+0000 mon.smithi003 (mon.0) 493 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.657277+0000 mon.smithi003 (mon.0) 493 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:13.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.665101+0000 mon.smithi003 (mon.0) 494 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:13.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:13 smithi120 bash[24835]: audit 2024-09-06T15:02:12.665101+0000 mon.smithi003 (mon.0) 494 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.169 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.651632+0000 mon.smithi003 (mon.0) 484 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:14.169 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.651632+0000 mon.smithi003 (mon.0) 484 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:14.169 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: cluster 2024-09-06T15:02:12.655465+0000 mon.smithi003 (mon.0) 485 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-06T15:02:14.169 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: cluster 2024-09-06T15:02:12.655465+0000 mon.smithi003 (mon.0) 485 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.655962+0000 mon.smithi003 (mon.0) 486 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.655962+0000 mon.smithi003 (mon.0) 486 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656142+0000 mon.smithi003 (mon.0) 487 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656142+0000 mon.smithi003 (mon.0) 487 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656328+0000 mon.smithi003 (mon.0) 488 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656328+0000 mon.smithi003 (mon.0) 488 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656531+0000 mon.smithi003 (mon.0) 489 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656531+0000 mon.smithi003 (mon.0) 489 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656711+0000 mon.smithi003 (mon.0) 490 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656711+0000 mon.smithi003 (mon.0) 490 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:14.170 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656924+0000 mon.smithi003 (mon.0) 491 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:14.171 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.656924+0000 mon.smithi003 (mon.0) 491 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:14.171 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.657098+0000 mon.smithi003 (mon.0) 492 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:14.171 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.657098+0000 mon.smithi003 (mon.0) 492 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:14.171 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.657277+0000 mon.smithi003 (mon.0) 493 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:14.171 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.657277+0000 mon.smithi003 (mon.0) 493 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:14.171 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.665101+0000 mon.smithi003 (mon.0) 494 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.171 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:13 smithi003 bash[19900]: audit 2024-09-06T15:02:12.665101+0000 mon.smithi003 (mon.0) 494 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.611 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:14.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:12.009475+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:14.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:12.009475+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:14.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:12.009554+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:14.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:12.009554+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:14.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:13.119615+0000 mgr.smithi003.ghjsjw (mgr.14197) 127 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:14.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:13.119615+0000 mgr.smithi003.ghjsjw (mgr.14197) 127 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:14.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:13.668806+0000 mon.smithi003 (mon.0) 495 : cluster [INF] osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416] boot 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:13.668806+0000 mon.smithi003 (mon.0) 495 : cluster [INF] osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416] boot 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:13.668951+0000 mon.smithi003 (mon.0) 496 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: cluster 2024-09-06T15:02:13.668951+0000 mon.smithi003 (mon.0) 496 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.669697+0000 mon.smithi003 (mon.0) 497 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.669697+0000 mon.smithi003 (mon.0) 497 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.670720+0000 mon.smithi003 (mon.0) 498 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.670720+0000 mon.smithi003 (mon.0) 498 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.671263+0000 mon.smithi003 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.671263+0000 mon.smithi003 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.671798+0000 mon.smithi003 (mon.0) 500 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.671798+0000 mon.smithi003 (mon.0) 500 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.680360+0000 mon.smithi003 (mon.0) 501 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:14.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.680360+0000 mon.smithi003 (mon.0) 501 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:14.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.680711+0000 mon.smithi003 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:14.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.680711+0000 mon.smithi003 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:14.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.681105+0000 mon.smithi003 (mon.0) 503 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:14.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.681105+0000 mon.smithi003 (mon.0) 503 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:14.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.681433+0000 mon.smithi003 (mon.0) 504 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:14.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 bash[24835]: audit 2024-09-06T15:02:13.681433+0000 mon.smithi003 (mon.0) 504 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:14.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:14 smithi120 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:14.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:12.009475+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:12.009475+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:12.009554+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:12.009554+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:13.119615+0000 mgr.smithi003.ghjsjw (mgr.14197) 127 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:13.119615+0000 mgr.smithi003.ghjsjw (mgr.14197) 127 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:13.668806+0000 mon.smithi003 (mon.0) 495 : cluster [INF] osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416] boot 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:13.668806+0000 mon.smithi003 (mon.0) 495 : cluster [INF] osd.0 [v2:172.21.15.120:6800/4229138416,v1:172.21.15.120:6801/4229138416] boot 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:13.668951+0000 mon.smithi003 (mon.0) 496 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: cluster 2024-09-06T15:02:13.668951+0000 mon.smithi003 (mon.0) 496 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.669697+0000 mon.smithi003 (mon.0) 497 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.669697+0000 mon.smithi003 (mon.0) 497 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.670720+0000 mon.smithi003 (mon.0) 498 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:14.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.670720+0000 mon.smithi003 (mon.0) 498 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.671263+0000 mon.smithi003 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.671263+0000 mon.smithi003 (mon.0) 499 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.671798+0000 mon.smithi003 (mon.0) 500 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.671798+0000 mon.smithi003 (mon.0) 500 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.680360+0000 mon.smithi003 (mon.0) 501 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.680360+0000 mon.smithi003 (mon.0) 501 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.680711+0000 mon.smithi003 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.680711+0000 mon.smithi003 (mon.0) 502 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.681105+0000 mon.smithi003 (mon.0) 503 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.681105+0000 mon.smithi003 (mon.0) 503 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.681433+0000 mon.smithi003 (mon.0) 504 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:14.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:14 smithi003 bash[19900]: audit 2024-09-06T15:02:13.681433+0000 mon.smithi003 (mon.0) 504 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:15.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: cluster 2024-09-06T15:02:14.690104+0000 mon.smithi003 (mon.0) 505 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-06T15:02:15.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: cluster 2024-09-06T15:02:14.690104+0000 mon.smithi003 (mon.0) 505 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-06T15:02:15.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.690300+0000 mon.smithi003 (mon.0) 506 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:15.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.690300+0000 mon.smithi003 (mon.0) 506 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:15.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.690806+0000 mon.smithi003 (mon.0) 507 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:15.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.690806+0000 mon.smithi003 (mon.0) 507 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:15.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.691135+0000 mon.smithi003 (mon.0) 508 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:15.819 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.691135+0000 mon.smithi003 (mon.0) 508 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.691457+0000 mon.smithi003 (mon.0) 509 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.691457+0000 mon.smithi003 (mon.0) 509 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.691768+0000 mon.smithi003 (mon.0) 510 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.691768+0000 mon.smithi003 (mon.0) 510 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.692075+0000 mon.smithi003 (mon.0) 511 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.692075+0000 mon.smithi003 (mon.0) 511 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.692382+0000 mon.smithi003 (mon.0) 512 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.692382+0000 mon.smithi003 (mon.0) 512 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.930395+0000 mon.smithi003 (mon.0) 513 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.930395+0000 mon.smithi003 (mon.0) 513 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.939139+0000 mon.smithi003 (mon.0) 514 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:15.820 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:14.939139+0000 mon.smithi003 (mon.0) 514 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:15.821 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:15.559183+0000 mon.smithi003 (mon.0) 515 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T15:02:15.821 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 bash[19900]: audit 2024-09-06T15:02:15.559183+0000 mon.smithi003 (mon.0) 515 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T15:02:15.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: cluster 2024-09-06T15:02:14.690104+0000 mon.smithi003 (mon.0) 505 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-06T15:02:15.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: cluster 2024-09-06T15:02:14.690104+0000 mon.smithi003 (mon.0) 505 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-06T15:02:15.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.690300+0000 mon.smithi003 (mon.0) 506 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:15.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.690300+0000 mon.smithi003 (mon.0) 506 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:15.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.690806+0000 mon.smithi003 (mon.0) 507 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.690806+0000 mon.smithi003 (mon.0) 507 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.691135+0000 mon.smithi003 (mon.0) 508 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.691135+0000 mon.smithi003 (mon.0) 508 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.691457+0000 mon.smithi003 (mon.0) 509 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.691457+0000 mon.smithi003 (mon.0) 509 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.691768+0000 mon.smithi003 (mon.0) 510 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.691768+0000 mon.smithi003 (mon.0) 510 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.692075+0000 mon.smithi003 (mon.0) 511 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.692075+0000 mon.smithi003 (mon.0) 511 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.692382+0000 mon.smithi003 (mon.0) 512 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.692382+0000 mon.smithi003 (mon.0) 512 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.930395+0000 mon.smithi003 (mon.0) 513 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:15.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.930395+0000 mon.smithi003 (mon.0) 513 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:15.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.939139+0000 mon.smithi003 (mon.0) 514 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:15.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:14.939139+0000 mon.smithi003 (mon.0) 514 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:15.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:15.559183+0000 mon.smithi003 (mon.0) 515 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T15:02:15.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:15 smithi120 bash[24835]: audit 2024-09-06T15:02:15.559183+0000 mon.smithi003 (mon.0) 515 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-06T15:02:16.084 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:15 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:16.340 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:16.639 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: cluster 2024-09-06T15:02:15.120142+0000 mgr.smithi003.ghjsjw (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: cluster 2024-09-06T15:02:15.120142+0000 mgr.smithi003.ghjsjw (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.944343+0000 mon.smithi003 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.944343+0000 mon.smithi003 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: cluster 2024-09-06T15:02:15.946495+0000 mon.smithi003 (mon.0) 517 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: cluster 2024-09-06T15:02:15.946495+0000 mon.smithi003 (mon.0) 517 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.946714+0000 mon.smithi003 (mon.0) 518 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.946714+0000 mon.smithi003 (mon.0) 518 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.946912+0000 mon.smithi003 (mon.0) 519 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:16.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.946912+0000 mon.smithi003 (mon.0) 519 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947057+0000 mon.smithi003 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947057+0000 mon.smithi003 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947203+0000 mon.smithi003 (mon.0) 521 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947203+0000 mon.smithi003 (mon.0) 521 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947343+0000 mon.smithi003 (mon.0) 522 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947343+0000 mon.smithi003 (mon.0) 522 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947479+0000 mon.smithi003 (mon.0) 523 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947479+0000 mon.smithi003 (mon.0) 523 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947617+0000 mon.smithi003 (mon.0) 524 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947617+0000 mon.smithi003 (mon.0) 524 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947753+0000 mon.smithi003 (mon.0) 525 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:15.947753+0000 mon.smithi003 (mon.0) 525 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:16.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.409847+0000 mon.smithi003 (mon.0) 526 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.409847+0000 mon.smithi003 (mon.0) 526 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.414550+0000 mon.smithi003 (mon.0) 527 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.414550+0000 mon.smithi003 (mon.0) 527 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.415390+0000 mon.smithi003 (mon.0) 528 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.415390+0000 mon.smithi003 (mon.0) 528 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.416166+0000 mon.smithi003 (mon.0) 529 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.416166+0000 mon.smithi003 (mon.0) 529 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.641490+0000 mon.smithi003 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.3:0/91124751' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:16.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:16 smithi120 bash[24835]: audit 2024-09-06T15:02:16.641490+0000 mon.smithi003 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.3:0/91124751' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: cluster 2024-09-06T15:02:15.120142+0000 mgr.smithi003.ghjsjw (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: cluster 2024-09-06T15:02:15.120142+0000 mgr.smithi003.ghjsjw (mgr.14197) 128 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.944343+0000 mon.smithi003 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.944343+0000 mon.smithi003 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: cluster 2024-09-06T15:02:15.946495+0000 mon.smithi003 (mon.0) 517 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: cluster 2024-09-06T15:02:15.946495+0000 mon.smithi003 (mon.0) 517 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.946714+0000 mon.smithi003 (mon.0) 518 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.946714+0000 mon.smithi003 (mon.0) 518 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.946912+0000 mon.smithi003 (mon.0) 519 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.946912+0000 mon.smithi003 (mon.0) 519 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947057+0000 mon.smithi003 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947057+0000 mon.smithi003 (mon.0) 520 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:17.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947203+0000 mon.smithi003 (mon.0) 521 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947203+0000 mon.smithi003 (mon.0) 521 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947343+0000 mon.smithi003 (mon.0) 522 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947343+0000 mon.smithi003 (mon.0) 522 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947479+0000 mon.smithi003 (mon.0) 523 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947479+0000 mon.smithi003 (mon.0) 523 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947617+0000 mon.smithi003 (mon.0) 524 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947617+0000 mon.smithi003 (mon.0) 524 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947753+0000 mon.smithi003 (mon.0) 525 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:15.947753+0000 mon.smithi003 (mon.0) 525 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.409847+0000 mon.smithi003 (mon.0) 526 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.409847+0000 mon.smithi003 (mon.0) 526 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.414550+0000 mon.smithi003 (mon.0) 527 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:17.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.414550+0000 mon.smithi003 (mon.0) 527 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:17.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.415390+0000 mon.smithi003 (mon.0) 528 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-06T15:02:17.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.415390+0000 mon.smithi003 (mon.0) 528 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-06T15:02:17.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.416166+0000 mon.smithi003 (mon.0) 529 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:17.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.416166+0000 mon.smithi003 (mon.0) 529 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:17.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.641490+0000 mon.smithi003 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.3:0/91124751' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:17.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:16 smithi003 bash[19900]: audit 2024-09-06T15:02:16.641490+0000 mon.smithi003 (mon.0) 530 : audit [DBG] from='client.? 172.21.15.3:0/91124751' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:17.851 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: cephadm 2024-09-06T15:02:16.416842+0000 mgr.smithi003.ghjsjw (mgr.14197) 129 : cephadm [INF] Deploying daemon osd.7 on smithi003 2024-09-06T15:02:17.851 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: cephadm 2024-09-06T15:02:16.416842+0000 mgr.smithi003.ghjsjw (mgr.14197) 129 : cephadm [INF] Deploying daemon osd.7 on smithi003 2024-09-06T15:02:17.851 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.946011+0000 mon.smithi003 (mon.0) 531 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:17.851 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.946011+0000 mon.smithi003 (mon.0) 531 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:17.851 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: cluster 2024-09-06T15:02:16.948770+0000 mon.smithi003 (mon.0) 532 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: cluster 2024-09-06T15:02:16.948770+0000 mon.smithi003 (mon.0) 532 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.949365+0000 mon.smithi003 (mon.0) 533 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.949365+0000 mon.smithi003 (mon.0) 533 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.949625+0000 mon.smithi003 (mon.0) 534 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.949625+0000 mon.smithi003 (mon.0) 534 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.949848+0000 mon.smithi003 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.949848+0000 mon.smithi003 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.950055+0000 mon.smithi003 (mon.0) 536 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.950055+0000 mon.smithi003 (mon.0) 536 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.950259+0000 mon.smithi003 (mon.0) 537 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.950259+0000 mon.smithi003 (mon.0) 537 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.950455+0000 mon.smithi003 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:17.852 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.950455+0000 mon.smithi003 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.950650+0000 mon.smithi003 (mon.0) 539 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.950650+0000 mon.smithi003 (mon.0) 539 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.952459+0000 mon.smithi003 (mon.0) 540 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:16.952459+0000 mon.smithi003 (mon.0) 540 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:17.070371+0000 mon.smithi120 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:17.070371+0000 mon.smithi120 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:17.071127+0000 mon.smithi003 (mon.0) 541 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:17.071127+0000 mon.smithi003 (mon.0) 541 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:17.515721+0000 mon.smithi003 (mon.0) 542 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' 2024-09-06T15:02:17.853 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:17 smithi003 bash[19900]: audit 2024-09-06T15:02:17.515721+0000 mon.smithi003 (mon.0) 542 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: cephadm 2024-09-06T15:02:16.416842+0000 mgr.smithi003.ghjsjw (mgr.14197) 129 : cephadm [INF] Deploying daemon osd.7 on smithi003 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: cephadm 2024-09-06T15:02:16.416842+0000 mgr.smithi003.ghjsjw (mgr.14197) 129 : cephadm [INF] Deploying daemon osd.7 on smithi003 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.946011+0000 mon.smithi003 (mon.0) 531 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.946011+0000 mon.smithi003 (mon.0) 531 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: cluster 2024-09-06T15:02:16.948770+0000 mon.smithi003 (mon.0) 532 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: cluster 2024-09-06T15:02:16.948770+0000 mon.smithi003 (mon.0) 532 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.949365+0000 mon.smithi003 (mon.0) 533 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.949365+0000 mon.smithi003 (mon.0) 533 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.949625+0000 mon.smithi003 (mon.0) 534 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.949625+0000 mon.smithi003 (mon.0) 534 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.949848+0000 mon.smithi003 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.949848+0000 mon.smithi003 (mon.0) 535 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.950055+0000 mon.smithi003 (mon.0) 536 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.950055+0000 mon.smithi003 (mon.0) 536 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.950259+0000 mon.smithi003 (mon.0) 537 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.950259+0000 mon.smithi003 (mon.0) 537 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.950455+0000 mon.smithi003 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.950455+0000 mon.smithi003 (mon.0) 538 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.950650+0000 mon.smithi003 (mon.0) 539 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.950650+0000 mon.smithi003 (mon.0) 539 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.952459+0000 mon.smithi003 (mon.0) 540 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:16.952459+0000 mon.smithi003 (mon.0) 540 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:17.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:17.070371+0000 mon.smithi120 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T15:02:17.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:17.070371+0000 mon.smithi120 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T15:02:17.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:17.071127+0000 mon.smithi003 (mon.0) 541 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T15:02:17.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:17.071127+0000 mon.smithi003 (mon.0) 541 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-06T15:02:17.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:17.515721+0000 mon.smithi003 (mon.0) 542 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' 2024-09-06T15:02:17.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:17 smithi120 bash[24835]: audit 2024-09-06T15:02:17.515721+0000 mon.smithi003 (mon.0) 542 : audit [INF] from='osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061]' entity='osd.1' 2024-09-06T15:02:18.779 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":18,"num_osds":8,"num_up_osds":1,"osd_up_since":1725634933,"num_in_osds":8,"osd_in_since":1725634901,"num_remapped_pgs":0} 2024-09-06T15:02:18.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:16.555893+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:16.555893+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:16.555986+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:16.555986+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:17.120738+0000 mgr.smithi003.ghjsjw (mgr.14197) 130 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:17.120738+0000 mgr.smithi003.ghjsjw (mgr.14197) 130 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.954410+0000 mon.smithi003 (mon.0) 543 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.954410+0000 mon.smithi003 (mon.0) 543 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.956990+0000 mon.smithi003 (mon.0) 544 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.956990+0000 mon.smithi003 (mon.0) 544 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.963498+0000 mon.smithi120 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:18.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.963498+0000 mon.smithi120 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:17.963659+0000 mon.smithi003 (mon.0) 545 : cluster [INF] osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061] boot 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:17.963659+0000 mon.smithi003 (mon.0) 545 : cluster [INF] osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061] boot 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:17.963725+0000 mon.smithi003 (mon.0) 546 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: cluster 2024-09-06T15:02:17.963725+0000 mon.smithi003 (mon.0) 546 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.964388+0000 mon.smithi003 (mon.0) 547 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.964388+0000 mon.smithi003 (mon.0) 547 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.964980+0000 mon.smithi003 (mon.0) 548 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.964980+0000 mon.smithi003 (mon.0) 548 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.965394+0000 mon.smithi003 (mon.0) 549 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.965394+0000 mon.smithi003 (mon.0) 549 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.965750+0000 mon.smithi003 (mon.0) 550 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.965750+0000 mon.smithi003 (mon.0) 550 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:18.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.966124+0000 mon.smithi003 (mon.0) 551 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:18.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.966124+0000 mon.smithi003 (mon.0) 551 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:18.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.966437+0000 mon.smithi003 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:18.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.966437+0000 mon.smithi003 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:18.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.966790+0000 mon.smithi003 (mon.0) 553 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:18.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.966790+0000 mon.smithi003 (mon.0) 553 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:18.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.967114+0000 mon.smithi003 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:18.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:18 smithi120 bash[24835]: audit 2024-09-06T15:02:17.967114+0000 mon.smithi003 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:19.095 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:16.555893+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:19.095 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:16.555893+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:19.095 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:16.555986+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:19.095 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:16.555986+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:19.095 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:17.120738+0000 mgr.smithi003.ghjsjw (mgr.14197) 130 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-06T15:02:19.095 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:17.120738+0000 mgr.smithi003.ghjsjw (mgr.14197) 130 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.954410+0000 mon.smithi003 (mon.0) 543 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.954410+0000 mon.smithi003 (mon.0) 543 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.956990+0000 mon.smithi003 (mon.0) 544 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.956990+0000 mon.smithi003 (mon.0) 544 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.963498+0000 mon.smithi120 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.963498+0000 mon.smithi120 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:17.963659+0000 mon.smithi003 (mon.0) 545 : cluster [INF] osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061] boot 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:17.963659+0000 mon.smithi003 (mon.0) 545 : cluster [INF] osd.1 [v2:172.21.15.3:6802/1655309061,v1:172.21.15.3:6803/1655309061] boot 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:17.963725+0000 mon.smithi003 (mon.0) 546 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: cluster 2024-09-06T15:02:17.963725+0000 mon.smithi003 (mon.0) 546 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.964388+0000 mon.smithi003 (mon.0) 547 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:19.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.964388+0000 mon.smithi003 (mon.0) 547 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.964980+0000 mon.smithi003 (mon.0) 548 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.964980+0000 mon.smithi003 (mon.0) 548 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.965394+0000 mon.smithi003 (mon.0) 549 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.965394+0000 mon.smithi003 (mon.0) 549 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.965750+0000 mon.smithi003 (mon.0) 550 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.965750+0000 mon.smithi003 (mon.0) 550 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.966124+0000 mon.smithi003 (mon.0) 551 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.966124+0000 mon.smithi003 (mon.0) 551 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.966437+0000 mon.smithi003 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.966437+0000 mon.smithi003 (mon.0) 552 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.966790+0000 mon.smithi003 (mon.0) 553 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:19.097 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.966790+0000 mon.smithi003 (mon.0) 553 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:19.098 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.967114+0000 mon.smithi003 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:19.098 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:18 smithi003 bash[19900]: audit 2024-09-06T15:02:17.967114+0000 mon.smithi003 (mon.0) 554 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:19.781 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:02:20.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.959542+0000 mon.smithi003 (mon.0) 555 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:20.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.959542+0000 mon.smithi003 (mon.0) 555 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: cluster 2024-09-06T15:02:18.967655+0000 mon.smithi003 (mon.0) 556 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: cluster 2024-09-06T15:02:18.967655+0000 mon.smithi003 (mon.0) 556 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.968247+0000 mon.smithi003 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.968247+0000 mon.smithi003 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.968706+0000 mon.smithi003 (mon.0) 558 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.968706+0000 mon.smithi003 (mon.0) 558 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.969272+0000 mon.smithi003 (mon.0) 559 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.969272+0000 mon.smithi003 (mon.0) 559 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.969787+0000 mon.smithi003 (mon.0) 560 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:20.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.969787+0000 mon.smithi003 (mon.0) 560 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:20.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.970229+0000 mon.smithi003 (mon.0) 561 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:20.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.970229+0000 mon.smithi003 (mon.0) 561 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:20.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.970737+0000 mon.smithi003 (mon.0) 562 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:20.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:18.970737+0000 mon.smithi003 (mon.0) 562 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:20.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: cluster 2024-09-06T15:02:19.121150+0000 mgr.smithi003.ghjsjw (mgr.14197) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-06T15:02:20.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: cluster 2024-09-06T15:02:19.121150+0000 mgr.smithi003.ghjsjw (mgr.14197) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-06T15:02:20.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:19.501499+0000 mon.smithi003 (mon.0) 563 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-06T15:02:20.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:19 smithi003 bash[19900]: audit 2024-09-06T15:02:19.501499+0000 mon.smithi003 (mon.0) 563 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-06T15:02:20.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.959542+0000 mon.smithi003 (mon.0) 555 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:20.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.959542+0000 mon.smithi003 (mon.0) 555 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:20.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: cluster 2024-09-06T15:02:18.967655+0000 mon.smithi003 (mon.0) 556 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-09-06T15:02:20.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: cluster 2024-09-06T15:02:18.967655+0000 mon.smithi003 (mon.0) 556 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-09-06T15:02:20.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.968247+0000 mon.smithi003 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.968247+0000 mon.smithi003 (mon.0) 557 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.968706+0000 mon.smithi003 (mon.0) 558 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.968706+0000 mon.smithi003 (mon.0) 558 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.969272+0000 mon.smithi003 (mon.0) 559 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.969272+0000 mon.smithi003 (mon.0) 559 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.969787+0000 mon.smithi003 (mon.0) 560 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.969787+0000 mon.smithi003 (mon.0) 560 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.970229+0000 mon.smithi003 (mon.0) 561 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.970229+0000 mon.smithi003 (mon.0) 561 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.970737+0000 mon.smithi003 (mon.0) 562 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:18.970737+0000 mon.smithi003 (mon.0) 562 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: cluster 2024-09-06T15:02:19.121150+0000 mgr.smithi003.ghjsjw (mgr.14197) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: cluster 2024-09-06T15:02:19.121150+0000 mgr.smithi003.ghjsjw (mgr.14197) 131 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-06T15:02:20.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:19.501499+0000 mon.smithi003 (mon.0) 563 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-06T15:02:20.247 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:19 smithi120 bash[24835]: audit 2024-09-06T15:02:19.501499+0000 mon.smithi003 (mon.0) 563 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-06T15:02:21.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: cluster 2024-09-06T15:02:18.056806+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:21.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: cluster 2024-09-06T15:02:18.056806+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:21.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: cluster 2024-09-06T15:02:18.056904+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:21.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: cluster 2024-09-06T15:02:18.056904+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:21.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:19.972300+0000 mon.smithi003 (mon.0) 564 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:21.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:19.972300+0000 mon.smithi003 (mon.0) 564 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:21.247 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: cluster 2024-09-06T15:02:20.506599+0000 mon.smithi003 (mon.0) 565 : cluster [INF] osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884] boot 2024-09-06T15:02:21.247 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: cluster 2024-09-06T15:02:20.506599+0000 mon.smithi003 (mon.0) 565 : cluster [INF] osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884] boot 2024-09-06T15:02:21.247 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: cluster 2024-09-06T15:02:20.506702+0000 mon.smithi003 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-06T15:02:21.247 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: cluster 2024-09-06T15:02:20.506702+0000 mon.smithi003 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-06T15:02:21.247 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.506963+0000 mon.smithi003 (mon.0) 567 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:21.248 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.506963+0000 mon.smithi003 (mon.0) 567 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:21.248 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.507615+0000 mon.smithi003 (mon.0) 568 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:21.248 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.507615+0000 mon.smithi003 (mon.0) 568 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:21.248 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.507957+0000 mon.smithi003 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:21.248 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.507957+0000 mon.smithi003 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:21.248 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.508277+0000 mon.smithi003 (mon.0) 570 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:21.249 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.508277+0000 mon.smithi003 (mon.0) 570 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:21.249 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.508588+0000 mon.smithi003 (mon.0) 571 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:21.249 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.508588+0000 mon.smithi003 (mon.0) 571 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:21.249 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.508927+0000 mon.smithi003 (mon.0) 572 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:21.249 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:20 smithi120 bash[24835]: audit 2024-09-06T15:02:20.508927+0000 mon.smithi003 (mon.0) 572 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:21.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: cluster 2024-09-06T15:02:18.056806+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:21.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: cluster 2024-09-06T15:02:18.056806+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:21.378 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: cluster 2024-09-06T15:02:18.056904+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: cluster 2024-09-06T15:02:18.056904+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:19.972300+0000 mon.smithi003 (mon.0) 564 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:19.972300+0000 mon.smithi003 (mon.0) 564 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: cluster 2024-09-06T15:02:20.506599+0000 mon.smithi003 (mon.0) 565 : cluster [INF] osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884] boot 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: cluster 2024-09-06T15:02:20.506599+0000 mon.smithi003 (mon.0) 565 : cluster [INF] osd.2 [v2:172.21.15.120:6808/2259511884,v1:172.21.15.120:6809/2259511884] boot 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: cluster 2024-09-06T15:02:20.506702+0000 mon.smithi003 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: cluster 2024-09-06T15:02:20.506702+0000 mon.smithi003 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.506963+0000 mon.smithi003 (mon.0) 567 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.506963+0000 mon.smithi003 (mon.0) 567 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.507615+0000 mon.smithi003 (mon.0) 568 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.507615+0000 mon.smithi003 (mon.0) 568 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.507957+0000 mon.smithi003 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:21.379 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.507957+0000 mon.smithi003 (mon.0) 569 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:21.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.508277+0000 mon.smithi003 (mon.0) 570 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:21.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.508277+0000 mon.smithi003 (mon.0) 570 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:21.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.508588+0000 mon.smithi003 (mon.0) 571 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:21.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.508588+0000 mon.smithi003 (mon.0) 571 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:21.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.508927+0000 mon.smithi003 (mon.0) 572 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:21.380 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:20 smithi003 bash[19900]: audit 2024-09-06T15:02:20.508927+0000 mon.smithi003 (mon.0) 572 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:22.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:21 smithi003 bash[19900]: cluster 2024-09-06T15:02:21.121704+0000 mgr.smithi003.ghjsjw (mgr.14197) 132 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T15:02:22.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:21 smithi003 bash[19900]: cluster 2024-09-06T15:02:21.121704+0000 mgr.smithi003.ghjsjw (mgr.14197) 132 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T15:02:22.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:21 smithi003 bash[19900]: audit 2024-09-06T15:02:21.415039+0000 mon.smithi120 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T15:02:22.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:21 smithi003 bash[19900]: audit 2024-09-06T15:02:21.415039+0000 mon.smithi120 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T15:02:22.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:21 smithi003 bash[19900]: audit 2024-09-06T15:02:21.415498+0000 mon.smithi003 (mon.0) 573 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T15:02:22.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:21 smithi003 bash[19900]: audit 2024-09-06T15:02:21.415498+0000 mon.smithi003 (mon.0) 573 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T15:02:22.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:21 smithi003 bash[19900]: audit 2024-09-06T15:02:21.581640+0000 mon.smithi003 (mon.0) 574 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-06T15:02:22.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:21 smithi003 bash[19900]: audit 2024-09-06T15:02:21.581640+0000 mon.smithi003 (mon.0) 574 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-06T15:02:22.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:21 smithi120 bash[24835]: cluster 2024-09-06T15:02:21.121704+0000 mgr.smithi003.ghjsjw (mgr.14197) 132 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T15:02:22.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:21 smithi120 bash[24835]: cluster 2024-09-06T15:02:21.121704+0000 mgr.smithi003.ghjsjw (mgr.14197) 132 : cluster [DBG] pgmap v83: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T15:02:22.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:21 smithi120 bash[24835]: audit 2024-09-06T15:02:21.415039+0000 mon.smithi120 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T15:02:22.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:21 smithi120 bash[24835]: audit 2024-09-06T15:02:21.415039+0000 mon.smithi120 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T15:02:22.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:21 smithi120 bash[24835]: audit 2024-09-06T15:02:21.415498+0000 mon.smithi003 (mon.0) 573 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T15:02:22.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:21 smithi120 bash[24835]: audit 2024-09-06T15:02:21.415498+0000 mon.smithi003 (mon.0) 573 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-06T15:02:22.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:21 smithi120 bash[24835]: audit 2024-09-06T15:02:21.581640+0000 mon.smithi003 (mon.0) 574 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-06T15:02:22.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:21 smithi120 bash[24835]: audit 2024-09-06T15:02:21.581640+0000 mon.smithi003 (mon.0) 574 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-06T15:02:23.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.976209+0000 mon.smithi003 (mon.0) 575 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.976209+0000 mon.smithi003 (mon.0) 575 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.976304+0000 mon.smithi003 (mon.0) 576 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.976304+0000 mon.smithi003 (mon.0) 576 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: cluster 2024-09-06T15:02:21.979986+0000 mon.smithi003 (mon.0) 577 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: cluster 2024-09-06T15:02:21.979986+0000 mon.smithi003 (mon.0) 577 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.980283+0000 mon.smithi003 (mon.0) 578 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.980283+0000 mon.smithi003 (mon.0) 578 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.980595+0000 mon.smithi003 (mon.0) 579 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.980595+0000 mon.smithi003 (mon.0) 579 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.980902+0000 mon.smithi003 (mon.0) 580 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.980902+0000 mon.smithi003 (mon.0) 580 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.981167+0000 mon.smithi003 (mon.0) 581 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:23.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.981167+0000 mon.smithi003 (mon.0) 581 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:23.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.981386+0000 mon.smithi003 (mon.0) 582 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:23.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.981386+0000 mon.smithi003 (mon.0) 582 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:23.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.981632+0000 mon.smithi003 (mon.0) 583 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-06T15:02:23.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.981632+0000 mon.smithi003 (mon.0) 583 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-06T15:02:23.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.982963+0000 mon.smithi120 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:23.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.982963+0000 mon.smithi120 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:23.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.983548+0000 mon.smithi003 (mon.0) 584 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:23.028 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:22 smithi120 bash[24835]: audit 2024-09-06T15:02:21.983548+0000 mon.smithi003 (mon.0) 584 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:23.250 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.976209+0000 mon.smithi003 (mon.0) 575 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.976209+0000 mon.smithi003 (mon.0) 575 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.976304+0000 mon.smithi003 (mon.0) 576 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.976304+0000 mon.smithi003 (mon.0) 576 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: cluster 2024-09-06T15:02:21.979986+0000 mon.smithi003 (mon.0) 577 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: cluster 2024-09-06T15:02:21.979986+0000 mon.smithi003 (mon.0) 577 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.980283+0000 mon.smithi003 (mon.0) 578 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.980283+0000 mon.smithi003 (mon.0) 578 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.980595+0000 mon.smithi003 (mon.0) 579 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.980595+0000 mon.smithi003 (mon.0) 579 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.980902+0000 mon.smithi003 (mon.0) 580 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.980902+0000 mon.smithi003 (mon.0) 580 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:23.251 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.981167+0000 mon.smithi003 (mon.0) 581 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.981167+0000 mon.smithi003 (mon.0) 581 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.981386+0000 mon.smithi003 (mon.0) 582 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.981386+0000 mon.smithi003 (mon.0) 582 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.981632+0000 mon.smithi003 (mon.0) 583 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.981632+0000 mon.smithi003 (mon.0) 583 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.982963+0000 mon.smithi120 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.982963+0000 mon.smithi120 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.983548+0000 mon.smithi003 (mon.0) 584 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:22 smithi003 bash[19900]: audit 2024-09-06T15:02:21.983548+0000 mon.smithi003 (mon.0) 584 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:23.252 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:23.511 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 systemd[1]: /etc/systemd/system/ceph-0f20e064-6c60-11ef-bce4-c7b262605968@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-06T15:02:24.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.979217+0000 mon.smithi003 (mon.0) 585 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.979217+0000 mon.smithi003 (mon.0) 585 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.979335+0000 mon.smithi003 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.979335+0000 mon.smithi003 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: cluster 2024-09-06T15:02:22.985182+0000 mon.smithi003 (mon.0) 587 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: cluster 2024-09-06T15:02:22.985182+0000 mon.smithi003 (mon.0) 587 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.985839+0000 mon.smithi003 (mon.0) 588 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.985839+0000 mon.smithi003 (mon.0) 588 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.986262+0000 mon.smithi003 (mon.0) 589 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.986262+0000 mon.smithi003 (mon.0) 589 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.986795+0000 mon.smithi003 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:24.245 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.986795+0000 mon.smithi003 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.987273+0000 mon.smithi003 (mon.0) 591 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.987273+0000 mon.smithi003 (mon.0) 591 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.987725+0000 mon.smithi003 (mon.0) 592 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.987725+0000 mon.smithi003 (mon.0) 592 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.996194+0000 mon.smithi003 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:22.996194+0000 mon.smithi003 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: cluster 2024-09-06T15:02:23.122149+0000 mgr.smithi003.ghjsjw (mgr.14197) 133 : cluster [DBG] pgmap v86: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: cluster 2024-09-06T15:02:23.122149+0000 mgr.smithi003.ghjsjw (mgr.14197) 133 : cluster [DBG] pgmap v86: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:23.557323+0000 mon.smithi003 (mon.0) 594 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:23.557323+0000 mon.smithi003 (mon.0) 594 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:23.564160+0000 mon.smithi003 (mon.0) 595 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:24.246 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:23 smithi120 bash[24835]: audit 2024-09-06T15:02:23.564160+0000 mon.smithi003 (mon.0) 595 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:24.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.979217+0000 mon.smithi003 (mon.0) 585 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-06T15:02:24.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.979217+0000 mon.smithi003 (mon.0) 585 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-06T15:02:24.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.979335+0000 mon.smithi003 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:24.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.979335+0000 mon.smithi003 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: cluster 2024-09-06T15:02:22.985182+0000 mon.smithi003 (mon.0) 587 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: cluster 2024-09-06T15:02:22.985182+0000 mon.smithi003 (mon.0) 587 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.985839+0000 mon.smithi003 (mon.0) 588 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.985839+0000 mon.smithi003 (mon.0) 588 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.986262+0000 mon.smithi003 (mon.0) 589 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.986262+0000 mon.smithi003 (mon.0) 589 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.986795+0000 mon.smithi003 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.986795+0000 mon.smithi003 (mon.0) 590 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.987273+0000 mon.smithi003 (mon.0) 591 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.987273+0000 mon.smithi003 (mon.0) 591 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.987725+0000 mon.smithi003 (mon.0) 592 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.987725+0000 mon.smithi003 (mon.0) 592 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.996194+0000 mon.smithi003 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:24.402 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:22.996194+0000 mon.smithi003 (mon.0) 593 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:24.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: cluster 2024-09-06T15:02:23.122149+0000 mgr.smithi003.ghjsjw (mgr.14197) 133 : cluster [DBG] pgmap v86: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T15:02:24.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: cluster 2024-09-06T15:02:23.122149+0000 mgr.smithi003.ghjsjw (mgr.14197) 133 : cluster [DBG] pgmap v86: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-06T15:02:24.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:23.557323+0000 mon.smithi003 (mon.0) 594 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:24.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:23.557323+0000 mon.smithi003 (mon.0) 594 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:24.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:23.564160+0000 mon.smithi003 (mon.0) 595 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:24.403 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:23 smithi003 bash[19900]: audit 2024-09-06T15:02:23.564160+0000 mon.smithi003 (mon.0) 595 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: cluster 2024-09-06T15:02:22.414455+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:25.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: cluster 2024-09-06T15:02:22.414455+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:25.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: cluster 2024-09-06T15:02:22.414552+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:25.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: cluster 2024-09-06T15:02:22.414552+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:25.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: cluster 2024-09-06T15:02:23.999100+0000 mon.smithi003 (mon.0) 596 : cluster [INF] osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282] boot 2024-09-06T15:02:25.256 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: cluster 2024-09-06T15:02:23.999100+0000 mon.smithi003 (mon.0) 596 : cluster [INF] osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282] boot 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: cluster 2024-09-06T15:02:23.999157+0000 mon.smithi003 (mon.0) 597 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: cluster 2024-09-06T15:02:23.999157+0000 mon.smithi003 (mon.0) 597 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999447+0000 mon.smithi003 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999447+0000 mon.smithi003 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999619+0000 mon.smithi003 (mon.0) 599 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999619+0000 mon.smithi003 (mon.0) 599 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999728+0000 mon.smithi003 (mon.0) 600 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:24 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999728+0000 mon.smithi003 (mon.0) 600 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999842+0000 mon.smithi003 (mon.0) 601 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999842+0000 mon.smithi003 (mon.0) 601 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999982+0000 mon.smithi003 (mon.0) 602 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:23.999982+0000 mon.smithi003 (mon.0) 602 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:25.257 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.112117+0000 mon.smithi003 (mon.0) 603 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.112117+0000 mon.smithi003 (mon.0) 603 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.178960+0000 mon.smithi003 (mon.0) 604 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.178960+0000 mon.smithi003 (mon.0) 604 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.251677+0000 mon.smithi003 (mon.0) 605 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.251677+0000 mon.smithi003 (mon.0) 605 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.317821+0000 mon.smithi003 (mon.0) 606 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.317821+0000 mon.smithi003 (mon.0) 606 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.320296+0000 mon.smithi003 (mon.0) 607 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.320296+0000 mon.smithi003 (mon.0) 607 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.359867+0000 mon.smithi003 (mon.0) 608 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.359867+0000 mon.smithi003 (mon.0) 608 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.360154+0000 mon.smithi003 (mon.0) 609 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:02:25.258 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.360154+0000 mon.smithi003 (mon.0) 609 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.360393+0000 mon.smithi003 (mon.0) 610 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.360393+0000 mon.smithi003 (mon.0) 610 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.397923+0000 mon.smithi003 (mon.0) 611 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.397923+0000 mon.smithi003 (mon.0) 611 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.400164+0000 mon.smithi120 (mon.1) 16 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.400164+0000 mon.smithi120 (mon.1) 16 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.400307+0000 mon.smithi003 (mon.0) 612 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.400307+0000 mon.smithi003 (mon.0) 612 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.400459+0000 mon.smithi003 (mon.0) 613 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.400459+0000 mon.smithi003 (mon.0) 613 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.446810+0000 mon.smithi120 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.446810+0000 mon.smithi120 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T15:02:25.259 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.483967+0000 mon.smithi003 (mon.0) 614 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.483967+0000 mon.smithi003 (mon.0) 614 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.654057+0000 mon.smithi003 (mon.0) 615 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-06T15:02:25.260 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:25 smithi003 bash[19900]: audit 2024-09-06T15:02:24.654057+0000 mon.smithi003 (mon.0) 615 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: cluster 2024-09-06T15:02:22.414455+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: cluster 2024-09-06T15:02:22.414455+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: cluster 2024-09-06T15:02:22.414552+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: cluster 2024-09-06T15:02:22.414552+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: cluster 2024-09-06T15:02:23.999100+0000 mon.smithi003 (mon.0) 596 : cluster [INF] osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282] boot 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: cluster 2024-09-06T15:02:23.999100+0000 mon.smithi003 (mon.0) 596 : cluster [INF] osd.4 [v2:172.21.15.120:6816/1674533282,v1:172.21.15.120:6817/1674533282] boot 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: cluster 2024-09-06T15:02:23.999157+0000 mon.smithi003 (mon.0) 597 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: cluster 2024-09-06T15:02:23.999157+0000 mon.smithi003 (mon.0) 597 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999447+0000 mon.smithi003 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:25.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999447+0000 mon.smithi003 (mon.0) 598 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999619+0000 mon.smithi003 (mon.0) 599 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999619+0000 mon.smithi003 (mon.0) 599 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999728+0000 mon.smithi003 (mon.0) 600 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999728+0000 mon.smithi003 (mon.0) 600 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999842+0000 mon.smithi003 (mon.0) 601 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999842+0000 mon.smithi003 (mon.0) 601 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999982+0000 mon.smithi003 (mon.0) 602 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:23.999982+0000 mon.smithi003 (mon.0) 602 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.112117+0000 mon.smithi003 (mon.0) 603 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.112117+0000 mon.smithi003 (mon.0) 603 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.178960+0000 mon.smithi003 (mon.0) 604 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.178960+0000 mon.smithi003 (mon.0) 604 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.251677+0000 mon.smithi003 (mon.0) 605 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.251677+0000 mon.smithi003 (mon.0) 605 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.317821+0000 mon.smithi003 (mon.0) 606 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.317821+0000 mon.smithi003 (mon.0) 606 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.320296+0000 mon.smithi003 (mon.0) 607 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.320296+0000 mon.smithi003 (mon.0) 607 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.359867+0000 mon.smithi003 (mon.0) 608 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.359867+0000 mon.smithi003 (mon.0) 608 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.360154+0000 mon.smithi003 (mon.0) 609 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.360154+0000 mon.smithi003 (mon.0) 609 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.360393+0000 mon.smithi003 (mon.0) 610 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:02:25.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.360393+0000 mon.smithi003 (mon.0) 610 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.397923+0000 mon.smithi003 (mon.0) 611 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.397923+0000 mon.smithi003 (mon.0) 611 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.400164+0000 mon.smithi120 (mon.1) 16 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.400164+0000 mon.smithi120 (mon.1) 16 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.400307+0000 mon.smithi003 (mon.0) 612 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.400307+0000 mon.smithi003 (mon.0) 612 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi003"} : dispatch 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.400459+0000 mon.smithi003 (mon.0) 613 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.400459+0000 mon.smithi003 (mon.0) 613 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.446810+0000 mon.smithi120 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.446810+0000 mon.smithi120 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.483967+0000 mon.smithi003 (mon.0) 614 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.483967+0000 mon.smithi003 (mon.0) 614 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:25.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.654057+0000 mon.smithi003 (mon.0) 615 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-06T15:02:25.499 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:24 smithi120 bash[24835]: audit 2024-09-06T15:02:24.654057+0000 mon.smithi003 (mon.0) 615 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-06T15:02:25.565 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:02:26.199 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.008550+0000 mon.smithi003 (mon.0) 616 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-06T15:02:26.199 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.008550+0000 mon.smithi003 (mon.0) 616 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.013903+0000 mon.smithi003 (mon.0) 617 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.013903+0000 mon.smithi003 (mon.0) 617 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.014455+0000 mon.smithi003 (mon.0) 618 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.014455+0000 mon.smithi003 (mon.0) 618 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.014912+0000 mon.smithi003 (mon.0) 619 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.014912+0000 mon.smithi003 (mon.0) 619 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.015282+0000 mon.smithi003 (mon.0) 620 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.015282+0000 mon.smithi003 (mon.0) 620 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.015668+0000 mon.smithi003 (mon.0) 621 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.015668+0000 mon.smithi003 (mon.0) 621 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:26.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.016007+0000 mon.smithi003 (mon.0) 622 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:26.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: audit 2024-09-06T15:02:25.016007+0000 mon.smithi003 (mon.0) 622 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:26.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.122484+0000 mgr.smithi003.ghjsjw (mgr.14197) 134 : cluster [DBG] pgmap v89: 1 pgs: 1 unknown; 0 B data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-06T15:02:26.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.122484+0000 mgr.smithi003.ghjsjw (mgr.14197) 134 : cluster [DBG] pgmap v89: 1 pgs: 1 unknown; 0 B data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-06T15:02:26.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.260519+0000 mon.smithi003 (mon.0) 623 : cluster [DBG] mgrmap e19: smithi003.ghjsjw(active, since 2m), standbys: smithi120.nvkvbd 2024-09-06T15:02:26.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:26 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.260519+0000 mon.smithi003 (mon.0) 623 : cluster [DBG] mgrmap e19: smithi003.ghjsjw(active, since 2m), standbys: smithi120.nvkvbd 2024-09-06T15:02:26.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.008550+0000 mon.smithi003 (mon.0) 616 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.008550+0000 mon.smithi003 (mon.0) 616 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.013903+0000 mon.smithi003 (mon.0) 617 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.013903+0000 mon.smithi003 (mon.0) 617 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.014455+0000 mon.smithi003 (mon.0) 618 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.014455+0000 mon.smithi003 (mon.0) 618 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.014912+0000 mon.smithi003 (mon.0) 619 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.014912+0000 mon.smithi003 (mon.0) 619 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.015282+0000 mon.smithi003 (mon.0) 620 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.015282+0000 mon.smithi003 (mon.0) 620 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:26.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.015668+0000 mon.smithi003 (mon.0) 621 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:26.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.015668+0000 mon.smithi003 (mon.0) 621 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:26.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.016007+0000 mon.smithi003 (mon.0) 622 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:26.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: audit 2024-09-06T15:02:25.016007+0000 mon.smithi003 (mon.0) 622 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:26.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.122484+0000 mgr.smithi003.ghjsjw (mgr.14197) 134 : cluster [DBG] pgmap v89: 1 pgs: 1 unknown; 0 B data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-06T15:02:26.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.122484+0000 mgr.smithi003.ghjsjw (mgr.14197) 134 : cluster [DBG] pgmap v89: 1 pgs: 1 unknown; 0 B data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-06T15:02:26.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.260519+0000 mon.smithi003 (mon.0) 623 : cluster [DBG] mgrmap e19: smithi003.ghjsjw(active, since 2m), standbys: smithi120.nvkvbd 2024-09-06T15:02:26.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:26 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.260519+0000 mon.smithi003 (mon.0) 623 : cluster [DBG] mgrmap e19: smithi003.ghjsjw(active, since 2m), standbys: smithi120.nvkvbd 2024-09-06T15:02:27.243 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.011216+0000 mon.smithi003 (mon.0) 624 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.011216+0000 mon.smithi003 (mon.0) 624 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: cluster 2024-09-06T15:02:26.017325+0000 mon.smithi003 (mon.0) 625 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: cluster 2024-09-06T15:02:26.017325+0000 mon.smithi003 (mon.0) 625 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.018847+0000 mon.smithi003 (mon.0) 626 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.018847+0000 mon.smithi003 (mon.0) 626 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.019370+0000 mon.smithi003 (mon.0) 627 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.019370+0000 mon.smithi003 (mon.0) 627 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.019747+0000 mon.smithi003 (mon.0) 628 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:27.288 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.019747+0000 mon.smithi003 (mon.0) 628 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.020133+0000 mon.smithi003 (mon.0) 629 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.020133+0000 mon.smithi003 (mon.0) 629 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.030845+0000 mon.smithi003 (mon.0) 630 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.030845+0000 mon.smithi003 (mon.0) 630 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.206903+0000 mon.smithi003 (mon.0) 631 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.206903+0000 mon.smithi003 (mon.0) 631 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.656235+0000 mon.smithi003 (mon.0) 632 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.656235+0000 mon.smithi003 (mon.0) 632 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.663962+0000 mon.smithi003 (mon.0) 633 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:26.663962+0000 mon.smithi003 (mon.0) 633 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.012900+0000 mon.smithi003 (mon.0) 634 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.012900+0000 mon.smithi003 (mon.0) 634 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-06T15:02:27.289 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.016048+0000 mon.smithi003 (mon.0) 635 : cluster [INF] osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275] boot 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.016048+0000 mon.smithi003 (mon.0) 635 : cluster [INF] osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275] boot 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.016085+0000 mon.smithi003 (mon.0) 636 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.016085+0000 mon.smithi003 (mon.0) 636 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.016499+0000 mon.smithi003 (mon.0) 637 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.016499+0000 mon.smithi003 (mon.0) 637 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.016899+0000 mon.smithi003 (mon.0) 638 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.016899+0000 mon.smithi003 (mon.0) 638 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.017254+0000 mon.smithi003 (mon.0) 639 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.017254+0000 mon.smithi003 (mon.0) 639 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.017531+0000 mon.smithi003 (mon.0) 640 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.017531+0000 mon.smithi003 (mon.0) 640 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:27.290 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.017708+0000 mon.smithi003 (mon.0) 641 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:27.291 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:27 smithi003 bash[19900]: audit 2024-09-06T15:02:27.017708+0000 mon.smithi003 (mon.0) 641 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.011216+0000 mon.smithi003 (mon.0) 624 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.011216+0000 mon.smithi003 (mon.0) 624 : audit [INF] from='osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: cluster 2024-09-06T15:02:26.017325+0000 mon.smithi003 (mon.0) 625 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: cluster 2024-09-06T15:02:26.017325+0000 mon.smithi003 (mon.0) 625 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.018847+0000 mon.smithi003 (mon.0) 626 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.018847+0000 mon.smithi003 (mon.0) 626 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.019370+0000 mon.smithi003 (mon.0) 627 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.019370+0000 mon.smithi003 (mon.0) 627 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:27.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.019747+0000 mon.smithi003 (mon.0) 628 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:27.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.019747+0000 mon.smithi003 (mon.0) 628 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:27.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.020133+0000 mon.smithi003 (mon.0) 629 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:27.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.020133+0000 mon.smithi003 (mon.0) 629 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:27.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.030845+0000 mon.smithi003 (mon.0) 630 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.030845+0000 mon.smithi003 (mon.0) 630 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.206903+0000 mon.smithi003 (mon.0) 631 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T15:02:27.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.206903+0000 mon.smithi003 (mon.0) 631 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-06T15:02:27.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.656235+0000 mon.smithi003 (mon.0) 632 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.656235+0000 mon.smithi003 (mon.0) 632 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.663962+0000 mon.smithi003 (mon.0) 633 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:26.663962+0000 mon.smithi003 (mon.0) 633 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.012900+0000 mon.smithi003 (mon.0) 634 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.012900+0000 mon.smithi003 (mon.0) 634 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.016048+0000 mon.smithi003 (mon.0) 635 : cluster [INF] osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275] boot 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.016048+0000 mon.smithi003 (mon.0) 635 : cluster [INF] osd.3 [v2:172.21.15.3:6810/3584823275,v1:172.21.15.3:6811/3584823275] boot 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.016085+0000 mon.smithi003 (mon.0) 636 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.016085+0000 mon.smithi003 (mon.0) 636 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.016499+0000 mon.smithi003 (mon.0) 637 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.016499+0000 mon.smithi003 (mon.0) 637 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.016899+0000 mon.smithi003 (mon.0) 638 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.497 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.016899+0000 mon.smithi003 (mon.0) 638 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-06T15:02:27.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.017254+0000 mon.smithi003 (mon.0) 639 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:27.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.017254+0000 mon.smithi003 (mon.0) 639 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:27.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.017531+0000 mon.smithi003 (mon.0) 640 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:27.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.017531+0000 mon.smithi003 (mon.0) 640 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:27.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.017708+0000 mon.smithi003 (mon.0) 641 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:27.498 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:27 smithi120 bash[24835]: audit 2024-09-06T15:02:27.017708+0000 mon.smithi003 (mon.0) 641 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:28.044 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":28,"num_osds":8,"num_up_osds":5,"osd_up_since":1725634947,"num_in_osds":8,"osd_in_since":1725634901,"num_remapped_pgs":1} 2024-09-06T15:02:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.648796+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.648796+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.648905+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: cluster 2024-09-06T15:02:25.648905+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:28.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.122853+0000 mgr.smithi003.ghjsjw (mgr.14197) 135 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 142 MiB used, 447 GiB / 447 GiB avail 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.122853+0000 mgr.smithi003.ghjsjw (mgr.14197) 135 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 142 MiB used, 447 GiB / 447 GiB avail 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:27.244666+0000 mon.smithi003 (mon.0) 642 : audit [DBG] from='client.? 172.21.15.3:0/1141837877' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:27.244666+0000 mon.smithi003 (mon.0) 642 : audit [DBG] from='client.? 172.21.15.3:0/1141837877' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:27.524631+0000 mon.smithi003 (mon.0) 643 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:27.524631+0000 mon.smithi003 (mon.0) 643 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:28.015583+0000 mon.smithi003 (mon.0) 644 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:28.015583+0000 mon.smithi003 (mon.0) 644 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: cluster 2024-09-06T15:02:28.021302+0000 mon.smithi003 (mon.0) 645 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: cluster 2024-09-06T15:02:28.021302+0000 mon.smithi003 (mon.0) 645 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:28.022088+0000 mon.smithi003 (mon.0) 646 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:28.022088+0000 mon.smithi003 (mon.0) 646 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:28.022310+0000 mon.smithi003 (mon.0) 647 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:28.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:28.022310+0000 mon.smithi003 (mon.0) 647 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:28.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:28.022485+0000 mon.smithi003 (mon.0) 648 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:28.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:28 smithi003 bash[19900]: audit 2024-09-06T15:02:28.022485+0000 mon.smithi003 (mon.0) 648 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.648796+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.648796+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.648905+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: cluster 2024-09-06T15:02:25.648905+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.122853+0000 mgr.smithi003.ghjsjw (mgr.14197) 135 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 142 MiB used, 447 GiB / 447 GiB avail 2024-09-06T15:02:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.122853+0000 mgr.smithi003.ghjsjw (mgr.14197) 135 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 142 MiB used, 447 GiB / 447 GiB avail 2024-09-06T15:02:28.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:27.244666+0000 mon.smithi003 (mon.0) 642 : audit [DBG] from='client.? 172.21.15.3:0/1141837877' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:27.244666+0000 mon.smithi003 (mon.0) 642 : audit [DBG] from='client.? 172.21.15.3:0/1141837877' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:27.524631+0000 mon.smithi003 (mon.0) 643 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:27.524631+0000 mon.smithi003 (mon.0) 643 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:28.015583+0000 mon.smithi003 (mon.0) 644 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:28.015583+0000 mon.smithi003 (mon.0) 644 : audit [INF] from='osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537]' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: cluster 2024-09-06T15:02:28.021302+0000 mon.smithi003 (mon.0) 645 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: cluster 2024-09-06T15:02:28.021302+0000 mon.smithi003 (mon.0) 645 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:28.022088+0000 mon.smithi003 (mon.0) 646 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:28.022088+0000 mon.smithi003 (mon.0) 646 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:28.022310+0000 mon.smithi003 (mon.0) 647 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:28.022310+0000 mon.smithi003 (mon.0) 647 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:28.022485+0000 mon.smithi003 (mon.0) 648 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:28.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:28 smithi120 bash[24835]: audit 2024-09-06T15:02:28.022485+0000 mon.smithi003 (mon.0) 648 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:29.045 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:02:29.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:28.033215+0000 mon.smithi003 (mon.0) 649 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:28.033215+0000 mon.smithi003 (mon.0) 649 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:28.672107+0000 mgr.smithi003.ghjsjw (mgr.14197) 136 : audit [DBG] from='client.14374 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:28.672107+0000 mgr.smithi003.ghjsjw (mgr.14197) 136 : audit [DBG] from='client.14374 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:28.679065+0000 mon.smithi003 (mon.0) 650 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:28.679065+0000 mon.smithi003 (mon.0) 650 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: cluster 2024-09-06T15:02:28.680211+0000 mgr.smithi003.ghjsjw (mgr.14197) 137 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 142 MiB used, 447 GiB / 447 GiB avail 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: cluster 2024-09-06T15:02:28.680211+0000 mgr.smithi003.ghjsjw (mgr.14197) 137 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 142 MiB used, 447 GiB / 447 GiB avail 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.022879+0000 mon.smithi003 (mon.0) 651 : cluster [INF] osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537] boot 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.022879+0000 mon.smithi003 (mon.0) 651 : cluster [INF] osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537] boot 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.023002+0000 mon.smithi003 (mon.0) 652 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.023002+0000 mon.smithi003 (mon.0) 652 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-06T15:02:29.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:29.023355+0000 mon.smithi003 (mon.0) 653 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:29.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:29.023355+0000 mon.smithi003 (mon.0) 653 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:29.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:29.024175+0000 mon.smithi003 (mon.0) 654 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:29.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:29.024175+0000 mon.smithi003 (mon.0) 654 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:29.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:29.025023+0000 mon.smithi003 (mon.0) 655 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:29.401 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:29 smithi003 bash[19900]: audit 2024-09-06T15:02:29.025023+0000 mon.smithi003 (mon.0) 655 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:28.033215+0000 mon.smithi003 (mon.0) 649 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:28.033215+0000 mon.smithi003 (mon.0) 649 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:28.672107+0000 mgr.smithi003.ghjsjw (mgr.14197) 136 : audit [DBG] from='client.14374 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:28.672107+0000 mgr.smithi003.ghjsjw (mgr.14197) 136 : audit [DBG] from='client.14374 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:28.679065+0000 mon.smithi003 (mon.0) 650 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:28.679065+0000 mon.smithi003 (mon.0) 650 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: cluster 2024-09-06T15:02:28.680211+0000 mgr.smithi003.ghjsjw (mgr.14197) 137 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 142 MiB used, 447 GiB / 447 GiB avail 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: cluster 2024-09-06T15:02:28.680211+0000 mgr.smithi003.ghjsjw (mgr.14197) 137 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 142 MiB used, 447 GiB / 447 GiB avail 2024-09-06T15:02:29.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.022879+0000 mon.smithi003 (mon.0) 651 : cluster [INF] osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537] boot 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.022879+0000 mon.smithi003 (mon.0) 651 : cluster [INF] osd.6 [v2:172.21.15.120:6824/1734862537,v1:172.21.15.120:6825/1734862537] boot 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.023002+0000 mon.smithi003 (mon.0) 652 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.023002+0000 mon.smithi003 (mon.0) 652 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:29.023355+0000 mon.smithi003 (mon.0) 653 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:29.023355+0000 mon.smithi003 (mon.0) 653 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:29.024175+0000 mon.smithi003 (mon.0) 654 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:29.024175+0000 mon.smithi003 (mon.0) 654 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:29.025023+0000 mon.smithi003 (mon.0) 655 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:29.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:29 smithi120 bash[24835]: audit 2024-09-06T15:02:29.025023+0000 mon.smithi003 (mon.0) 655 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.252695+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.252695+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.252807+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:27.252807+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: audit 2024-09-06T15:02:29.121025+0000 mgr.smithi003.ghjsjw (mgr.14197) 138 : audit [DBG] from='client.14378 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: audit 2024-09-06T15:02:29.121025+0000 mgr.smithi003.ghjsjw (mgr.14197) 138 : audit [DBG] from='client.14378 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: audit 2024-09-06T15:02:29.125393+0000 mon.smithi003 (mon.0) 656 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: audit 2024-09-06T15:02:29.125393+0000 mon.smithi003 (mon.0) 656 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.126293+0000 mgr.smithi003.ghjsjw (mgr.14197) 139 : cluster [DBG] pgmap v96: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.126293+0000 mgr.smithi003.ghjsjw (mgr.14197) 139 : cluster [DBG] pgmap v96: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: audit 2024-09-06T15:02:29.568914+0000 mgr.smithi003.ghjsjw (mgr.14197) 140 : audit [DBG] from='client.14382 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: audit 2024-09-06T15:02:29.568914+0000 mgr.smithi003.ghjsjw (mgr.14197) 140 : audit [DBG] from='client.14382 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: audit 2024-09-06T15:02:29.575332+0000 mon.smithi003 (mon.0) 657 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: audit 2024-09-06T15:02:29.575332+0000 mon.smithi003 (mon.0) 657 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.576670+0000 mgr.smithi003.ghjsjw (mgr.14197) 141 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.576670+0000 mgr.smithi003.ghjsjw (mgr.14197) 141 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.674993+0000 mon.smithi003 (mon.0) 658 : cluster [WRN] Health check update: 4 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T15:02:30.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:30 smithi003 bash[19900]: cluster 2024-09-06T15:02:29.674993+0000 mon.smithi003 (mon.0) 658 : cluster [WRN] Health check update: 4 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T15:02:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.252695+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.252695+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.252807+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:27.252807+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: audit 2024-09-06T15:02:29.121025+0000 mgr.smithi003.ghjsjw (mgr.14197) 138 : audit [DBG] from='client.14378 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: audit 2024-09-06T15:02:29.121025+0000 mgr.smithi003.ghjsjw (mgr.14197) 138 : audit [DBG] from='client.14378 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: audit 2024-09-06T15:02:29.125393+0000 mon.smithi003 (mon.0) 656 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:30.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: audit 2024-09-06T15:02:29.125393+0000 mon.smithi003 (mon.0) 656 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.126293+0000 mgr.smithi003.ghjsjw (mgr.14197) 139 : cluster [DBG] pgmap v96: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.126293+0000 mgr.smithi003.ghjsjw (mgr.14197) 139 : cluster [DBG] pgmap v96: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: audit 2024-09-06T15:02:29.568914+0000 mgr.smithi003.ghjsjw (mgr.14197) 140 : audit [DBG] from='client.14382 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: audit 2024-09-06T15:02:29.568914+0000 mgr.smithi003.ghjsjw (mgr.14197) 140 : audit [DBG] from='client.14382 -' entity='client.crash.smithi003' cmd=[{"prefix": "crash post", "target": ["mon-mgr", ""]}]: dispatch 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: audit 2024-09-06T15:02:29.575332+0000 mon.smithi003 (mon.0) 657 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: audit 2024-09-06T15:02:29.575332+0000 mon.smithi003 (mon.0) 657 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.576670+0000 mgr.smithi003.ghjsjw (mgr.14197) 141 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.576670+0000 mgr.smithi003.ghjsjw (mgr.14197) 141 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.674993+0000 mon.smithi003 (mon.0) 658 : cluster [WRN] Health check update: 4 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T15:02:30.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:30 smithi120 bash[24835]: cluster 2024-09-06T15:02:29.674993+0000 mon.smithi003 (mon.0) 658 : cluster [WRN] Health check update: 4 mgr modules have recently crashed (RECENT_MGR_MODULE_CRASH) 2024-09-06T15:02:31.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: cluster 2024-09-06T15:02:30.127423+0000 mon.smithi003 (mon.0) 659 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-06T15:02:31.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: cluster 2024-09-06T15:02:30.127423+0000 mon.smithi003 (mon.0) 659 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-06T15:02:31.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: audit 2024-09-06T15:02:30.127765+0000 mon.smithi003 (mon.0) 660 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: audit 2024-09-06T15:02:30.127765+0000 mon.smithi003 (mon.0) 660 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: audit 2024-09-06T15:02:30.127934+0000 mon.smithi003 (mon.0) 661 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: audit 2024-09-06T15:02:30.127934+0000 mon.smithi003 (mon.0) 661 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: audit 2024-09-06T15:02:30.450827+0000 mon.smithi003 (mon.0) 662 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-06T15:02:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: audit 2024-09-06T15:02:30.450827+0000 mon.smithi003 (mon.0) 662 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-06T15:02:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: audit 2024-09-06T15:02:31.127887+0000 mon.smithi003 (mon.0) 663 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-06T15:02:31.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:31 smithi003 bash[19900]: audit 2024-09-06T15:02:31.127887+0000 mon.smithi003 (mon.0) 663 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-06T15:02:31.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: cluster 2024-09-06T15:02:30.127423+0000 mon.smithi003 (mon.0) 659 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: cluster 2024-09-06T15:02:30.127423+0000 mon.smithi003 (mon.0) 659 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: audit 2024-09-06T15:02:30.127765+0000 mon.smithi003 (mon.0) 660 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: audit 2024-09-06T15:02:30.127765+0000 mon.smithi003 (mon.0) 660 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: audit 2024-09-06T15:02:30.127934+0000 mon.smithi003 (mon.0) 661 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: audit 2024-09-06T15:02:30.127934+0000 mon.smithi003 (mon.0) 661 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: audit 2024-09-06T15:02:30.450827+0000 mon.smithi003 (mon.0) 662 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: audit 2024-09-06T15:02:30.450827+0000 mon.smithi003 (mon.0) 662 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: audit 2024-09-06T15:02:31.127887+0000 mon.smithi003 (mon.0) 663 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-06T15:02:31.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:31 smithi120 bash[24835]: audit 2024-09-06T15:02:31.127887+0000 mon.smithi003 (mon.0) 663 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-06T15:02:32.331 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: cluster 2024-09-06T15:02:31.133143+0000 mon.smithi003 (mon.0) 664 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-09-06T15:02:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: cluster 2024-09-06T15:02:31.133143+0000 mon.smithi003 (mon.0) 664 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-09-06T15:02:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: cluster 2024-09-06T15:02:31.133143+0000 mon.smithi003 (mon.0) 664 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-09-06T15:02:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: audit 2024-09-06T15:02:31.134378+0000 mon.smithi003 (mon.0) 665 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: audit 2024-09-06T15:02:31.134378+0000 mon.smithi003 (mon.0) 665 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: audit 2024-09-06T15:02:31.135112+0000 mon.smithi003 (mon.0) 666 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: audit 2024-09-06T15:02:31.135112+0000 mon.smithi003 (mon.0) 666 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: audit 2024-09-06T15:02:31.143665+0000 mon.smithi003 (mon.0) 667 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:32.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: audit 2024-09-06T15:02:31.143665+0000 mon.smithi003 (mon.0) 667 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:32.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: cluster 2024-09-06T15:02:31.577331+0000 mgr.smithi003.ghjsjw (mgr.14197) 142 : cluster [DBG] pgmap v100: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:32.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: cluster 2024-09-06T15:02:31.577331+0000 mgr.smithi003.ghjsjw (mgr.14197) 142 : cluster [DBG] pgmap v100: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:32.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: audit 2024-09-06T15:02:32.130222+0000 mon.smithi003 (mon.0) 668 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:32.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:32 smithi120 bash[24835]: audit 2024-09-06T15:02:32.130222+0000 mon.smithi003 (mon.0) 668 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: cluster 2024-09-06T15:02:31.133143+0000 mon.smithi003 (mon.0) 664 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-09-06T15:02:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: audit 2024-09-06T15:02:31.134378+0000 mon.smithi003 (mon.0) 665 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: audit 2024-09-06T15:02:31.134378+0000 mon.smithi003 (mon.0) 665 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: audit 2024-09-06T15:02:31.135112+0000 mon.smithi003 (mon.0) 666 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: audit 2024-09-06T15:02:31.135112+0000 mon.smithi003 (mon.0) 666 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: audit 2024-09-06T15:02:31.143665+0000 mon.smithi003 (mon.0) 667 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:32.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: audit 2024-09-06T15:02:31.143665+0000 mon.smithi003 (mon.0) 667 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:32.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: cluster 2024-09-06T15:02:31.577331+0000 mgr.smithi003.ghjsjw (mgr.14197) 142 : cluster [DBG] pgmap v100: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:32.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: cluster 2024-09-06T15:02:31.577331+0000 mgr.smithi003.ghjsjw (mgr.14197) 142 : cluster [DBG] pgmap v100: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:32.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: audit 2024-09-06T15:02:32.130222+0000 mon.smithi003 (mon.0) 668 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:32.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:32 smithi003 bash[19900]: audit 2024-09-06T15:02:32.130222+0000 mon.smithi003 (mon.0) 668 : audit [INF] from='osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:33.433 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: cluster 2024-09-06T15:02:32.135599+0000 mon.smithi003 (mon.0) 669 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-09-06T15:02:33.433 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: cluster 2024-09-06T15:02:32.135599+0000 mon.smithi003 (mon.0) 669 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-09-06T15:02:33.433 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: audit 2024-09-06T15:02:32.137341+0000 mon.smithi003 (mon.0) 670 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.433 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: audit 2024-09-06T15:02:32.137341+0000 mon.smithi003 (mon.0) 670 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.433 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: audit 2024-09-06T15:02:32.142587+0000 mon.smithi003 (mon.0) 671 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:33.433 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: audit 2024-09-06T15:02:32.142587+0000 mon.smithi003 (mon.0) 671 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:33.434 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: audit 2024-09-06T15:02:32.340011+0000 mon.smithi003 (mon.0) 672 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.434 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: audit 2024-09-06T15:02:32.340011+0000 mon.smithi003 (mon.0) 672 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.434 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: audit 2024-09-06T15:02:33.142868+0000 mon.smithi003 (mon.0) 673 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.434 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:33 smithi003 bash[19900]: audit 2024-09-06T15:02:33.142868+0000 mon.smithi003 (mon.0) 673 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: cluster 2024-09-06T15:02:32.135599+0000 mon.smithi003 (mon.0) 669 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: cluster 2024-09-06T15:02:32.135599+0000 mon.smithi003 (mon.0) 669 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: audit 2024-09-06T15:02:32.137341+0000 mon.smithi003 (mon.0) 670 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: audit 2024-09-06T15:02:32.137341+0000 mon.smithi003 (mon.0) 670 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: audit 2024-09-06T15:02:32.142587+0000 mon.smithi003 (mon.0) 671 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: audit 2024-09-06T15:02:32.142587+0000 mon.smithi003 (mon.0) 671 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: audit 2024-09-06T15:02:32.340011+0000 mon.smithi003 (mon.0) 672 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: audit 2024-09-06T15:02:32.340011+0000 mon.smithi003 (mon.0) 672 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: audit 2024-09-06T15:02:33.142868+0000 mon.smithi003 (mon.0) 673 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:33.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:33 smithi120 bash[24835]: audit 2024-09-06T15:02:33.142868+0000 mon.smithi003 (mon.0) 673 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:34.028 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:31.463318+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:31.463318+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:31.463489+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:31.463489+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:33.155081+0000 mon.smithi003 (mon.0) 674 : cluster [INF] osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804] boot 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:33.155081+0000 mon.smithi003 (mon.0) 674 : cluster [INF] osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804] boot 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:33.155170+0000 mon.smithi003 (mon.0) 675 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:33.155170+0000 mon.smithi003 (mon.0) 675 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: audit 2024-09-06T15:02:33.156135+0000 mon.smithi003 (mon.0) 676 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: audit 2024-09-06T15:02:33.156135+0000 mon.smithi003 (mon.0) 676 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:34.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: audit 2024-09-06T15:02:33.156804+0000 mon.smithi003 (mon.0) 677 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: audit 2024-09-06T15:02:33.156804+0000 mon.smithi003 (mon.0) 677 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:33.577749+0000 mgr.smithi003.ghjsjw (mgr.14197) 143 : cluster [DBG] pgmap v103: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:34.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:34 smithi120 bash[24835]: cluster 2024-09-06T15:02:33.577749+0000 mgr.smithi003.ghjsjw (mgr.14197) 143 : cluster [DBG] pgmap v103: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:34.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:31.463318+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:34.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:31.463318+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:34.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:31.463489+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:31.463489+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:33.155081+0000 mon.smithi003 (mon.0) 674 : cluster [INF] osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804] boot 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:33.155081+0000 mon.smithi003 (mon.0) 674 : cluster [INF] osd.5 [v2:172.21.15.3:6818/793757804,v1:172.21.15.3:6819/793757804] boot 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:33.155170+0000 mon.smithi003 (mon.0) 675 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:33.155170+0000 mon.smithi003 (mon.0) 675 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: audit 2024-09-06T15:02:33.156135+0000 mon.smithi003 (mon.0) 676 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: audit 2024-09-06T15:02:33.156135+0000 mon.smithi003 (mon.0) 676 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: audit 2024-09-06T15:02:33.156804+0000 mon.smithi003 (mon.0) 677 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: audit 2024-09-06T15:02:33.156804+0000 mon.smithi003 (mon.0) 677 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:34.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:33.577749+0000 mgr.smithi003.ghjsjw (mgr.14197) 143 : cluster [DBG] pgmap v103: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:34.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:34 smithi003 bash[19900]: cluster 2024-09-06T15:02:33.577749+0000 mgr.smithi003.ghjsjw (mgr.14197) 143 : cluster [DBG] pgmap v103: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-09-06T15:02:35.458 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:35 smithi003 bash[19900]: cluster 2024-09-06T15:02:34.169648+0000 mon.smithi003 (mon.0) 678 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-06T15:02:35.458 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:35 smithi003 bash[19900]: cluster 2024-09-06T15:02:34.169648+0000 mon.smithi003 (mon.0) 678 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-06T15:02:35.458 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:35 smithi003 bash[19900]: audit 2024-09-06T15:02:34.169986+0000 mon.smithi003 (mon.0) 679 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:35.458 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:35 smithi003 bash[19900]: audit 2024-09-06T15:02:34.169986+0000 mon.smithi003 (mon.0) 679 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:35.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:35 smithi120 bash[24835]: cluster 2024-09-06T15:02:34.169648+0000 mon.smithi003 (mon.0) 678 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-06T15:02:35.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:35 smithi120 bash[24835]: cluster 2024-09-06T15:02:34.169648+0000 mon.smithi003 (mon.0) 678 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-06T15:02:35.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:35 smithi120 bash[24835]: audit 2024-09-06T15:02:34.169986+0000 mon.smithi003 (mon.0) 679 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:35.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:35 smithi120 bash[24835]: audit 2024-09-06T15:02:34.169986+0000 mon.smithi003 (mon.0) 679 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:36 smithi003 bash[19900]: audit 2024-09-06T15:02:35.464569+0000 mon.smithi003 (mon.0) 680 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-06T15:02:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:36 smithi003 bash[19900]: audit 2024-09-06T15:02:35.464569+0000 mon.smithi003 (mon.0) 680 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-06T15:02:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:36 smithi003 bash[19900]: cluster 2024-09-06T15:02:35.578468+0000 mgr.smithi003.ghjsjw (mgr.14197) 144 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 197 MiB used, 626 GiB / 626 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-09-06T15:02:36.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:36 smithi003 bash[19900]: cluster 2024-09-06T15:02:35.578468+0000 mgr.smithi003.ghjsjw (mgr.14197) 144 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 197 MiB used, 626 GiB / 626 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-09-06T15:02:36.487 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:02:36.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:36 smithi120 bash[24835]: audit 2024-09-06T15:02:35.464569+0000 mon.smithi003 (mon.0) 680 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-06T15:02:36.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:36 smithi120 bash[24835]: audit 2024-09-06T15:02:35.464569+0000 mon.smithi003 (mon.0) 680 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-06T15:02:36.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:36 smithi120 bash[24835]: cluster 2024-09-06T15:02:35.578468+0000 mgr.smithi003.ghjsjw (mgr.14197) 144 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 197 MiB used, 626 GiB / 626 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-09-06T15:02:36.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:36 smithi120 bash[24835]: cluster 2024-09-06T15:02:35.578468+0000 mgr.smithi003.ghjsjw (mgr.14197) 144 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 197 MiB used, 626 GiB / 626 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-09-06T15:02:37.209 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":36,"num_osds":8,"num_up_osds":7,"osd_up_since":1725634953,"num_in_osds":8,"osd_in_since":1725634901,"num_remapped_pgs":0} 2024-09-06T15:02:37.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: audit 2024-09-06T15:02:36.175656+0000 mon.smithi003 (mon.0) 681 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: audit 2024-09-06T15:02:36.175656+0000 mon.smithi003 (mon.0) 681 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: cluster 2024-09-06T15:02:36.180664+0000 mon.smithi003 (mon.0) 682 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: cluster 2024-09-06T15:02:36.180664+0000 mon.smithi003 (mon.0) 682 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: audit 2024-09-06T15:02:36.180932+0000 mon.smithi003 (mon.0) 683 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: audit 2024-09-06T15:02:36.180932+0000 mon.smithi003 (mon.0) 683 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: audit 2024-09-06T15:02:36.181194+0000 mon.smithi003 (mon.0) 684 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: audit 2024-09-06T15:02:36.181194+0000 mon.smithi003 (mon.0) 684 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: audit 2024-09-06T15:02:36.489012+0000 mon.smithi003 (mon.0) 685 : audit [DBG] from='client.? 172.21.15.3:0/1476289985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:37.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:37 smithi120 bash[24835]: audit 2024-09-06T15:02:36.489012+0000 mon.smithi003 (mon.0) 685 : audit [DBG] from='client.? 172.21.15.3:0/1476289985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: audit 2024-09-06T15:02:36.175656+0000 mon.smithi003 (mon.0) 681 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-06T15:02:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: audit 2024-09-06T15:02:36.175656+0000 mon.smithi003 (mon.0) 681 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-06T15:02:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: cluster 2024-09-06T15:02:36.180664+0000 mon.smithi003 (mon.0) 682 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-09-06T15:02:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: cluster 2024-09-06T15:02:36.180664+0000 mon.smithi003 (mon.0) 682 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-09-06T15:02:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: audit 2024-09-06T15:02:36.180932+0000 mon.smithi003 (mon.0) 683 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: audit 2024-09-06T15:02:36.180932+0000 mon.smithi003 (mon.0) 683 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]} : dispatch 2024-09-06T15:02:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: audit 2024-09-06T15:02:36.181194+0000 mon.smithi003 (mon.0) 684 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:37.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: audit 2024-09-06T15:02:36.181194+0000 mon.smithi003 (mon.0) 684 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:37.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: audit 2024-09-06T15:02:36.489012+0000 mon.smithi003 (mon.0) 685 : audit [DBG] from='client.? 172.21.15.3:0/1476289985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:37.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:37 smithi003 bash[19900]: audit 2024-09-06T15:02:36.489012+0000 mon.smithi003 (mon.0) 685 : audit [DBG] from='client.? 172.21.15.3:0/1476289985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:38.211 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd stat -f json 2024-09-06T15:02:38.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: audit 2024-09-06T15:02:37.178364+0000 mon.smithi003 (mon.0) 686 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: audit 2024-09-06T15:02:37.178364+0000 mon.smithi003 (mon.0) 686 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: cluster 2024-09-06T15:02:37.184795+0000 mon.smithi003 (mon.0) 687 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: cluster 2024-09-06T15:02:37.184795+0000 mon.smithi003 (mon.0) 687 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: audit 2024-09-06T15:02:37.186048+0000 mon.smithi003 (mon.0) 688 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: audit 2024-09-06T15:02:37.186048+0000 mon.smithi003 (mon.0) 688 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: audit 2024-09-06T15:02:37.203114+0000 mon.smithi003 (mon.0) 689 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: audit 2024-09-06T15:02:37.203114+0000 mon.smithi003 (mon.0) 689 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: cluster 2024-09-06T15:02:37.578996+0000 mgr.smithi003.ghjsjw (mgr.14197) 145 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 197 MiB used, 626 GiB / 626 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: cluster 2024-09-06T15:02:37.578996+0000 mgr.smithi003.ghjsjw (mgr.14197) 145 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 197 MiB used, 626 GiB / 626 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: audit 2024-09-06T15:02:37.706272+0000 mon.smithi003 (mon.0) 690 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' 2024-09-06T15:02:38.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:38 smithi120 bash[24835]: audit 2024-09-06T15:02:37.706272+0000 mon.smithi003 (mon.0) 690 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' 2024-09-06T15:02:38.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: audit 2024-09-06T15:02:37.178364+0000 mon.smithi003 (mon.0) 686 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:38.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: audit 2024-09-06T15:02:37.178364+0000 mon.smithi003 (mon.0) 686 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi003", "root=default"]}]': finished 2024-09-06T15:02:38.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: cluster 2024-09-06T15:02:37.184795+0000 mon.smithi003 (mon.0) 687 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-09-06T15:02:38.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: cluster 2024-09-06T15:02:37.184795+0000 mon.smithi003 (mon.0) 687 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-09-06T15:02:38.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: audit 2024-09-06T15:02:37.186048+0000 mon.smithi003 (mon.0) 688 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:38.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: audit 2024-09-06T15:02:37.186048+0000 mon.smithi003 (mon.0) 688 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:38.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: audit 2024-09-06T15:02:37.203114+0000 mon.smithi003 (mon.0) 689 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:38.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: audit 2024-09-06T15:02:37.203114+0000 mon.smithi003 (mon.0) 689 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:38.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: cluster 2024-09-06T15:02:37.578996+0000 mgr.smithi003.ghjsjw (mgr.14197) 145 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 197 MiB used, 626 GiB / 626 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-09-06T15:02:38.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: cluster 2024-09-06T15:02:37.578996+0000 mgr.smithi003.ghjsjw (mgr.14197) 145 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 197 MiB used, 626 GiB / 626 GiB avail; 130 KiB/s, 0 objects/s recovering 2024-09-06T15:02:38.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: audit 2024-09-06T15:02:37.706272+0000 mon.smithi003 (mon.0) 690 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' 2024-09-06T15:02:38.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:38 smithi003 bash[19900]: audit 2024-09-06T15:02:37.706272+0000 mon.smithi003 (mon.0) 690 : audit [INF] from='osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213]' entity='osd.7' 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:36.457694+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:36.457694+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:36.457782+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:36.457782+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: audit 2024-09-06T15:02:38.193917+0000 mon.smithi003 (mon.0) 691 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: audit 2024-09-06T15:02:38.193917+0000 mon.smithi003 (mon.0) 691 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:38.200523+0000 mon.smithi003 (mon.0) 692 : cluster [INF] osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213] boot 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:38.200523+0000 mon.smithi003 (mon.0) 692 : cluster [INF] osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213] boot 2024-09-06T15:02:39.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:38.200565+0000 mon.smithi003 (mon.0) 693 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:38.200565+0000 mon.smithi003 (mon.0) 693 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: audit 2024-09-06T15:02:38.200940+0000 mon.smithi003 (mon.0) 694 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: audit 2024-09-06T15:02:38.200940+0000 mon.smithi003 (mon.0) 694 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: audit 2024-09-06T15:02:38.964715+0000 mon.smithi003 (mon.0) 695 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: audit 2024-09-06T15:02:38.964715+0000 mon.smithi003 (mon.0) 695 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: audit 2024-09-06T15:02:38.975273+0000 mon.smithi003 (mon.0) 696 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: audit 2024-09-06T15:02:38.975273+0000 mon.smithi003 (mon.0) 696 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:39.083588+0000 mon.smithi003 (mon.0) 697 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-06T15:02:39.496 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:39 smithi120 bash[24835]: cluster 2024-09-06T15:02:39.083588+0000 mon.smithi003 (mon.0) 697 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-06T15:02:39.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:36.457694+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:39.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:36.457694+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:36.457782+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:36.457782+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: audit 2024-09-06T15:02:38.193917+0000 mon.smithi003 (mon.0) 691 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: audit 2024-09-06T15:02:38.193917+0000 mon.smithi003 (mon.0) 691 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:38.200523+0000 mon.smithi003 (mon.0) 692 : cluster [INF] osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213] boot 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:38.200523+0000 mon.smithi003 (mon.0) 692 : cluster [INF] osd.7 [v2:172.21.15.3:6826/517312213,v1:172.21.15.3:6827/517312213] boot 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:38.200565+0000 mon.smithi003 (mon.0) 693 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:38.200565+0000 mon.smithi003 (mon.0) 693 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: audit 2024-09-06T15:02:38.200940+0000 mon.smithi003 (mon.0) 694 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: audit 2024-09-06T15:02:38.200940+0000 mon.smithi003 (mon.0) 694 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: audit 2024-09-06T15:02:38.964715+0000 mon.smithi003 (mon.0) 695 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: audit 2024-09-06T15:02:38.964715+0000 mon.smithi003 (mon.0) 695 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:39.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: audit 2024-09-06T15:02:38.975273+0000 mon.smithi003 (mon.0) 696 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:39.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: audit 2024-09-06T15:02:38.975273+0000 mon.smithi003 (mon.0) 696 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:39.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:39.083588+0000 mon.smithi003 (mon.0) 697 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-06T15:02:39.651 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:39 smithi003 bash[19900]: cluster 2024-09-06T15:02:39.083588+0000 mon.smithi003 (mon.0) 697 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-06T15:02:40.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:40 smithi120 bash[24835]: audit 2024-09-06T15:02:39.506068+0000 mon.smithi003 (mon.0) 698 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:02:40.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:40 smithi120 bash[24835]: audit 2024-09-06T15:02:39.506068+0000 mon.smithi003 (mon.0) 698 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:02:40.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:40 smithi120 bash[24835]: cluster 2024-09-06T15:02:39.579588+0000 mgr.smithi003.ghjsjw (mgr.14197) 146 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:40.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:40 smithi120 bash[24835]: cluster 2024-09-06T15:02:39.579588+0000 mgr.smithi003.ghjsjw (mgr.14197) 146 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:40.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:40 smithi120 bash[24835]: cluster 2024-09-06T15:02:40.083308+0000 mon.smithi003 (mon.0) 699 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-06T15:02:40.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:40 smithi120 bash[24835]: cluster 2024-09-06T15:02:40.083308+0000 mon.smithi003 (mon.0) 699 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-06T15:02:40.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:40 smithi003 bash[19900]: audit 2024-09-06T15:02:39.506068+0000 mon.smithi003 (mon.0) 698 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:02:40.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:40 smithi003 bash[19900]: audit 2024-09-06T15:02:39.506068+0000 mon.smithi003 (mon.0) 698 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:02:40.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:40 smithi003 bash[19900]: cluster 2024-09-06T15:02:39.579588+0000 mgr.smithi003.ghjsjw (mgr.14197) 146 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:40.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:40 smithi003 bash[19900]: cluster 2024-09-06T15:02:39.579588+0000 mgr.smithi003.ghjsjw (mgr.14197) 146 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:40.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:40 smithi003 bash[19900]: cluster 2024-09-06T15:02:40.083308+0000 mon.smithi003 (mon.0) 699 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-06T15:02:40.650 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:40 smithi003 bash[19900]: cluster 2024-09-06T15:02:40.083308+0000 mon.smithi003 (mon.0) 699 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-06T15:02:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:42 smithi003 bash[19900]: cluster 2024-09-06T15:02:41.088120+0000 mon.smithi003 (mon.0) 700 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-06T15:02:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:42 smithi003 bash[19900]: cluster 2024-09-06T15:02:41.088120+0000 mon.smithi003 (mon.0) 700 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-06T15:02:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:42 smithi003 bash[19900]: cluster 2024-09-06T15:02:41.580275+0000 mgr.smithi003.ghjsjw (mgr.14197) 147 : cluster [DBG] pgmap v114: 1 pgs: 1 remapped+peering; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:42.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:42 smithi003 bash[19900]: cluster 2024-09-06T15:02:41.580275+0000 mgr.smithi003.ghjsjw (mgr.14197) 147 : cluster [DBG] pgmap v114: 1 pgs: 1 remapped+peering; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:42.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:42 smithi120 bash[24835]: cluster 2024-09-06T15:02:41.088120+0000 mon.smithi003 (mon.0) 700 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-06T15:02:42.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:42 smithi120 bash[24835]: cluster 2024-09-06T15:02:41.088120+0000 mon.smithi003 (mon.0) 700 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-06T15:02:42.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:42 smithi120 bash[24835]: cluster 2024-09-06T15:02:41.580275+0000 mgr.smithi003.ghjsjw (mgr.14197) 147 : cluster [DBG] pgmap v114: 1 pgs: 1 remapped+peering; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:42.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:42 smithi120 bash[24835]: cluster 2024-09-06T15:02:41.580275+0000 mgr.smithi003.ghjsjw (mgr.14197) 147 : cluster [DBG] pgmap v114: 1 pgs: 1 remapped+peering; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:43.022 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:02:43.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:43 smithi003 bash[19900]: cluster 2024-09-06T15:02:42.092034+0000 mon.smithi003 (mon.0) 701 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-06T15:02:43.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:43 smithi003 bash[19900]: cluster 2024-09-06T15:02:42.092034+0000 mon.smithi003 (mon.0) 701 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-06T15:02:43.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:43 smithi003 bash[19900]: audit 2024-09-06T15:02:42.524585+0000 mon.smithi003 (mon.0) 702 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:43.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:43 smithi003 bash[19900]: audit 2024-09-06T15:02:42.524585+0000 mon.smithi003 (mon.0) 702 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:43.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:43 smithi120 bash[24835]: cluster 2024-09-06T15:02:42.092034+0000 mon.smithi003 (mon.0) 701 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-06T15:02:43.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:43 smithi120 bash[24835]: cluster 2024-09-06T15:02:42.092034+0000 mon.smithi003 (mon.0) 701 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-06T15:02:43.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:43 smithi120 bash[24835]: audit 2024-09-06T15:02:42.524585+0000 mon.smithi003 (mon.0) 702 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:43.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:43 smithi120 bash[24835]: audit 2024-09-06T15:02:42.524585+0000 mon.smithi003 (mon.0) 702 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:44.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:44 smithi003 bash[19900]: cluster 2024-09-06T15:02:43.580999+0000 mgr.smithi003.ghjsjw (mgr.14197) 148 : cluster [DBG] pgmap v116: 1 pgs: 1 remapped+peering; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:44.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:44 smithi003 bash[19900]: cluster 2024-09-06T15:02:43.580999+0000 mgr.smithi003.ghjsjw (mgr.14197) 148 : cluster [DBG] pgmap v116: 1 pgs: 1 remapped+peering; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:44.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:44 smithi120 bash[24835]: cluster 2024-09-06T15:02:43.580999+0000 mgr.smithi003.ghjsjw (mgr.14197) 148 : cluster [DBG] pgmap v116: 1 pgs: 1 remapped+peering; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:44.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:44 smithi120 bash[24835]: cluster 2024-09-06T15:02:43.580999+0000 mgr.smithi003.ghjsjw (mgr.14197) 148 : cluster [DBG] pgmap v116: 1 pgs: 1 remapped+peering; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:44.586 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:02:45.243 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":42,"num_osds":8,"num_up_osds":8,"osd_up_since":1725634958,"num_in_osds":8,"osd_in_since":1725634901,"num_remapped_pgs":0} 2024-09-06T15:02:45.244 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd dump --format=json 2024-09-06T15:02:45.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:45 smithi003 bash[19900]: audit 2024-09-06T15:02:44.588719+0000 mon.smithi003 (mon.0) 703 : audit [DBG] from='client.? 172.21.15.3:0/3423860490' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:45.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:45 smithi003 bash[19900]: audit 2024-09-06T15:02:44.588719+0000 mon.smithi003 (mon.0) 703 : audit [DBG] from='client.? 172.21.15.3:0/3423860490' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:45.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:45 smithi003 bash[19900]: audit 2024-09-06T15:02:44.904044+0000 mon.smithi003 (mon.0) 704 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:45.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:45 smithi003 bash[19900]: audit 2024-09-06T15:02:44.904044+0000 mon.smithi003 (mon.0) 704 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:45.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:45 smithi003 bash[19900]: audit 2024-09-06T15:02:44.907927+0000 mon.smithi003 (mon.0) 705 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:45.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:45 smithi003 bash[19900]: audit 2024-09-06T15:02:44.907927+0000 mon.smithi003 (mon.0) 705 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:45.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:45 smithi120 bash[24835]: audit 2024-09-06T15:02:44.588719+0000 mon.smithi003 (mon.0) 703 : audit [DBG] from='client.? 172.21.15.3:0/3423860490' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:45.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:45 smithi120 bash[24835]: audit 2024-09-06T15:02:44.588719+0000 mon.smithi003 (mon.0) 703 : audit [DBG] from='client.? 172.21.15.3:0/3423860490' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-06T15:02:45.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:45 smithi120 bash[24835]: audit 2024-09-06T15:02:44.904044+0000 mon.smithi003 (mon.0) 704 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:45.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:45 smithi120 bash[24835]: audit 2024-09-06T15:02:44.904044+0000 mon.smithi003 (mon.0) 704 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:45.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:45 smithi120 bash[24835]: audit 2024-09-06T15:02:44.907927+0000 mon.smithi003 (mon.0) 705 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:45.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:45 smithi120 bash[24835]: audit 2024-09-06T15:02:44.907927+0000 mon.smithi003 (mon.0) 705 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:46 smithi003 bash[19900]: audit 2024-09-06T15:02:45.114859+0000 mon.smithi003 (mon.0) 706 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:46 smithi003 bash[19900]: audit 2024-09-06T15:02:45.114859+0000 mon.smithi003 (mon.0) 706 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:46 smithi003 bash[19900]: audit 2024-09-06T15:02:45.124526+0000 mon.smithi003 (mon.0) 707 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:46 smithi003 bash[19900]: audit 2024-09-06T15:02:45.124526+0000 mon.smithi003 (mon.0) 707 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:46 smithi003 bash[19900]: cluster 2024-09-06T15:02:45.581422+0000 mgr.smithi003.ghjsjw (mgr.14197) 149 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:46.400 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:46 smithi003 bash[19900]: cluster 2024-09-06T15:02:45.581422+0000 mgr.smithi003.ghjsjw (mgr.14197) 149 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:46.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:46 smithi120 bash[24835]: audit 2024-09-06T15:02:45.114859+0000 mon.smithi003 (mon.0) 706 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:46 smithi120 bash[24835]: audit 2024-09-06T15:02:45.114859+0000 mon.smithi003 (mon.0) 706 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:46 smithi120 bash[24835]: audit 2024-09-06T15:02:45.124526+0000 mon.smithi003 (mon.0) 707 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:46 smithi120 bash[24835]: audit 2024-09-06T15:02:45.124526+0000 mon.smithi003 (mon.0) 707 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:46.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:46 smithi120 bash[24835]: cluster 2024-09-06T15:02:45.581422+0000 mgr.smithi003.ghjsjw (mgr.14197) 149 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:46.495 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:46 smithi120 bash[24835]: cluster 2024-09-06T15:02:45.581422+0000 mgr.smithi003.ghjsjw (mgr.14197) 149 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:48 smithi003 bash[19900]: cluster 2024-09-06T15:02:47.582074+0000 mgr.smithi003.ghjsjw (mgr.14197) 150 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-06T15:02:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:48 smithi003 bash[19900]: cluster 2024-09-06T15:02:47.582074+0000 mgr.smithi003.ghjsjw (mgr.14197) 150 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-06T15:02:48.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:48 smithi120 bash[24835]: cluster 2024-09-06T15:02:47.582074+0000 mgr.smithi003.ghjsjw (mgr.14197) 150 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-06T15:02:48.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:48 smithi120 bash[24835]: cluster 2024-09-06T15:02:47.582074+0000 mgr.smithi003.ghjsjw (mgr.14197) 150 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-06T15:02:50.056 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:02:50.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:50 smithi003 bash[19900]: cluster 2024-09-06T15:02:49.582627+0000 mgr.smithi003.ghjsjw (mgr.14197) 151 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-06T15:02:50.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:50 smithi003 bash[19900]: cluster 2024-09-06T15:02:49.582627+0000 mgr.smithi003.ghjsjw (mgr.14197) 151 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-06T15:02:50.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:50 smithi120 bash[24835]: cluster 2024-09-06T15:02:49.582627+0000 mgr.smithi003.ghjsjw (mgr.14197) 151 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-06T15:02:50.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:50 smithi120 bash[24835]: cluster 2024-09-06T15:02:49.582627+0000 mgr.smithi003.ghjsjw (mgr.14197) 151 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-06T15:02:52.202 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:02:52.202 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":42,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","created":"2024-09-06T14:57:17.606307+0000","modified":"2024-09-06T15:02:42.082951+0000","last_up_change":"2024-09-06T15:02:38.189723+0000","last_in_change":"2024-09-06T15:01:41.813668+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":18,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-06T15:02:21.585649+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"4656dc11-7da5-492e-b90e-69eb07eb3805","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6800","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6801","nonce":4229138416}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6803","nonce":4229138416}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6807","nonce":4229138416}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6805","nonce":4229138416}]},"public_addr":"172.21.15.120:6801/4229138416","cluster_addr":"172.21.15.120:6803/4229138416","heartbeat_back_addr":"172.21.15.120:6807/4229138416","heartbeat_front_addr":"172.21.15.120:6805/4229138416","state":["exists","up"]},{"osd":1,"uuid":"7a884759-ea10-46df-b47f-6ddda8b4d213","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6802","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6803","nonce":1655309061}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6804","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6805","nonce":1655309061}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6808","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6809","nonce":1655309061}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6806","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6807","nonce":1655309061}]},"public_addr":"172.21.15.3:6803/1655309061","cluster_addr":"172.21.15.3:6805/1655309061","heartbeat_back_addr":"172.21.15.3:6809/1655309061","heartbeat_front_addr":"172.21.15.3:6807/1655309061","state":["exists","up"]},{"osd":2,"uuid":"2fff739c-26dc-4805-9826-939da49fd35c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6809","nonce":2259511884}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6811","nonce":2259511884}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6815","nonce":2259511884}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6813","nonce":2259511884}]},"public_addr":"172.21.15.120:6809/2259511884","cluster_addr":"172.21.15.120:6811/2259511884","heartbeat_back_addr":"172.21.15.120:6815/2259511884","heartbeat_front_addr":"172.21.15.120:6813/2259511884","state":["exists","up"]},{"osd":3,"uuid":"ab3c8364-e692-4ea2-9177-2b00d0d828d9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6810","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6811","nonce":3584823275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6812","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6813","nonce":3584823275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6816","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6817","nonce":3584823275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6814","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6815","nonce":3584823275}]},"public_addr":"172.21.15.3:6811/3584823275","cluster_addr":"172.21.15.3:6813/3584823275","heartbeat_back_addr":"172.21.15.3:6817/3584823275","heartbeat_front_addr":"172.21.15.3:6815/3584823275","state":["exists","up"]},{"osd":4,"uuid":"b34b627f-1ad6-489d-931b-b7cfe8f002f7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6817","nonce":1674533282}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6819","nonce":1674533282}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6823","nonce":1674533282}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6821","nonce":1674533282}]},"public_addr":"172.21.15.120:6817/1674533282","cluster_addr":"172.21.15.120:6819/1674533282","heartbeat_back_addr":"172.21.15.120:6823/1674533282","heartbeat_front_addr":"172.21.15.120:6821/1674533282","state":["exists","up"]},{"osd":5,"uuid":"c9dd0206-bcb6-4cd4-8577-90da26341c94","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.3:6818","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6819","nonce":793757804}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6820","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6821","nonce":793757804}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6824","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6825","nonce":793757804}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6822","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6823","nonce":793757804}]},"public_addr":"172.21.15.3:6819/793757804","cluster_addr":"172.21.15.3:6821/793757804","heartbeat_back_addr":"172.21.15.3:6825/793757804","heartbeat_front_addr":"172.21.15.3:6823/793757804","state":["exists","up"]},{"osd":6,"uuid":"c5476be0-03fd-46e2-b287-2ddc93c89193","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6825","nonce":1734862537}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6827","nonce":1734862537}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6831","nonce":1734862537}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6829","nonce":1734862537}]},"public_addr":"172.21.15.120:6825/1734862537","cluster_addr":"172.21.15.120:6827/1734862537","heartbeat_back_addr":"172.21.15.120:6831/1734862537","heartbeat_front_addr":"172.21.15.120:6829/1734862537","state":["exists","up"]},{"osd":7,"uuid":"bc7dbee8-4565-4faa-a483-0b3e6afd8e0b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6826","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6827","nonce":517312213}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6828","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6829","nonce":517312213}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6832","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6833","nonce":517312213}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6830","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6831","nonce":517312213}]},"public_addr":"172.21.15.3:6827/517312213","cluster_addr":"172.21.15.3:6829/517312213","heartbeat_back_addr":"172.21.15.3:6833/517312213","heartbeat_front_addr":"172.21.15.3:6831/517312213","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:12.009558+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:16.555990+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:18.056908+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:25.648907+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:22.414557+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:31.463499+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:27.252811+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:36.457786+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.3:0/3290527298":"2024-09-07T14:59:57.030647+0000","172.21.15.3:6801/2507950867":"2024-09-07T14:59:57.030647+0000","172.21.15.3:6800/2507950867":"2024-09-07T14:59:57.030647+0000","172.21.15.3:0/3960711045":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6801/2826604878":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6801/2090180094":"2024-09-07T14:57:44.742750+0000","172.21.15.3:0/2556651134":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6800/2090180094":"2024-09-07T14:57:44.742750+0000","172.21.15.3:0/222419432":"2024-09-07T14:59:57.030647+0000","172.21.15.3:0/2553802398":"2024-09-07T14:57:44.742750+0000","172.21.15.3:6800/2826604878":"2024-09-07T14:58:29.450948+0000","172.21.15.3:0/2072436124":"2024-09-07T14:57:44.742750+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-06T15:02:52.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:52 smithi003 bash[19900]: cluster 2024-09-06T15:02:51.583290+0000 mgr.smithi003.ghjsjw (mgr.14197) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-06T15:02:52.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:52 smithi003 bash[19900]: cluster 2024-09-06T15:02:51.583290+0000 mgr.smithi003.ghjsjw (mgr.14197) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-06T15:02:52.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:52 smithi003 bash[19900]: audit 2024-09-06T15:02:52.203077+0000 mon.smithi003 (mon.0) 708 : audit [DBG] from='client.? 172.21.15.3:0/2618062044' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:02:52.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:52 smithi003 bash[19900]: audit 2024-09-06T15:02:52.203077+0000 mon.smithi003 (mon.0) 708 : audit [DBG] from='client.? 172.21.15.3:0/2618062044' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:02:52.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:52 smithi120 bash[24835]: cluster 2024-09-06T15:02:51.583290+0000 mgr.smithi003.ghjsjw (mgr.14197) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-06T15:02:52.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:52 smithi120 bash[24835]: cluster 2024-09-06T15:02:51.583290+0000 mgr.smithi003.ghjsjw (mgr.14197) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-06T15:02:52.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:52 smithi120 bash[24835]: audit 2024-09-06T15:02:52.203077+0000 mon.smithi003 (mon.0) 708 : audit [DBG] from='client.? 172.21.15.3:0/2618062044' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:02:52.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:52 smithi120 bash[24835]: audit 2024-09-06T15:02:52.203077+0000 mon.smithi003 (mon.0) 708 : audit [DBG] from='client.? 172.21.15.3:0/2618062044' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:02:53.535 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-06T15:02:21.585649+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '26', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-06T15:02:53.536 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-06T15:02:54.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:54 smithi003 bash[19900]: cluster 2024-09-06T15:02:53.584052+0000 mgr.smithi003.ghjsjw (mgr.14197) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-06T15:02:54.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:54 smithi003 bash[19900]: cluster 2024-09-06T15:02:53.584052+0000 mgr.smithi003.ghjsjw (mgr.14197) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-06T15:02:54.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:54 smithi120 bash[24835]: cluster 2024-09-06T15:02:53.584052+0000 mgr.smithi003.ghjsjw (mgr.14197) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-06T15:02:54.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:54 smithi120 bash[24835]: cluster 2024-09-06T15:02:53.584052+0000 mgr.smithi003.ghjsjw (mgr.14197) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-06T15:02:56.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: cluster 2024-09-06T15:02:55.584623+0000 mgr.smithi003.ghjsjw (mgr.14197) 154 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: cluster 2024-09-06T15:02:55.584623+0000 mgr.smithi003.ghjsjw (mgr.14197) 154 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.186279+0000 mon.smithi003 (mon.0) 709 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.186279+0000 mon.smithi003 (mon.0) 709 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.193331+0000 mon.smithi003 (mon.0) 710 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.193331+0000 mon.smithi003 (mon.0) 710 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.195381+0000 mon.smithi003 (mon.0) 711 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.195381+0000 mon.smithi003 (mon.0) 711 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.196494+0000 mon.smithi003 (mon.0) 712 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:56.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.196494+0000 mon.smithi003 (mon.0) 712 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:56.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.197585+0000 mon.smithi003 (mon.0) 713 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:56.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.197585+0000 mon.smithi003 (mon.0) 713 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:56.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.198660+0000 mon.smithi003 (mon.0) 714 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:56.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.198660+0000 mon.smithi003 (mon.0) 714 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:56.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.205334+0000 mon.smithi003 (mon.0) 715 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:56.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:56 smithi120 bash[24835]: audit 2024-09-06T15:02:56.205334+0000 mon.smithi003 (mon.0) 715 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: cluster 2024-09-06T15:02:55.584623+0000 mgr.smithi003.ghjsjw (mgr.14197) 154 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: cluster 2024-09-06T15:02:55.584623+0000 mgr.smithi003.ghjsjw (mgr.14197) 154 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.186279+0000 mon.smithi003 (mon.0) 709 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.186279+0000 mon.smithi003 (mon.0) 709 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.193331+0000 mon.smithi003 (mon.0) 710 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.193331+0000 mon.smithi003 (mon.0) 710 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.195381+0000 mon.smithi003 (mon.0) 711 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.195381+0000 mon.smithi003 (mon.0) 711 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.196494+0000 mon.smithi003 (mon.0) 712 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.196494+0000 mon.smithi003 (mon.0) 712 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.197585+0000 mon.smithi003 (mon.0) 713 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.197585+0000 mon.smithi003 (mon.0) 713 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.198660+0000 mon.smithi003 (mon.0) 714 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.198660+0000 mon.smithi003 (mon.0) 714 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.205334+0000 mon.smithi003 (mon.0) 715 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.151 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:56 smithi003 bash[19900]: audit 2024-09-06T15:02:56.205334+0000 mon.smithi003 (mon.0) 715 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: cephadm 2024-09-06T15:02:56.177965+0000 mgr.smithi003.ghjsjw (mgr.14197) 155 : cephadm [INF] Detected new or changed devices on smithi120 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: cephadm 2024-09-06T15:02:56.177965+0000 mgr.smithi003.ghjsjw (mgr.14197) 155 : cephadm [INF] Detected new or changed devices on smithi120 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: cephadm 2024-09-06T15:02:56.199580+0000 mgr.smithi003.ghjsjw (mgr.14197) 156 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3772M 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: cephadm 2024-09-06T15:02:56.199580+0000 mgr.smithi003.ghjsjw (mgr.14197) 156 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3772M 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.167142+0000 mon.smithi003 (mon.0) 716 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.167142+0000 mon.smithi003 (mon.0) 716 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.177032+0000 mon.smithi003 (mon.0) 717 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.177032+0000 mon.smithi003 (mon.0) 717 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.180245+0000 mon.smithi003 (mon.0) 718 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.180245+0000 mon.smithi003 (mon.0) 718 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.181941+0000 mon.smithi003 (mon.0) 719 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.181941+0000 mon.smithi003 (mon.0) 719 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.183477+0000 mon.smithi003 (mon.0) 720 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.183477+0000 mon.smithi003 (mon.0) 720 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.184968+0000 mon.smithi003 (mon.0) 721 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.184968+0000 mon.smithi003 (mon.0) 721 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.193575+0000 mon.smithi003 (mon.0) 722 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.193575+0000 mon.smithi003 (mon.0) 722 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.901 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.198555+0000 mon.smithi003 (mon.0) 723 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.198555+0000 mon.smithi003 (mon.0) 723 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.199886+0000 mon.smithi003 (mon.0) 724 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.199886+0000 mon.smithi003 (mon.0) 724 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.207712+0000 mon.smithi003 (mon.0) 725 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.207712+0000 mon.smithi003 (mon.0) 725 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.212803+0000 mon.smithi003 (mon.0) 726 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.212803+0000 mon.smithi003 (mon.0) 726 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.222110+0000 mon.smithi003 (mon.0) 727 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.222110+0000 mon.smithi003 (mon.0) 727 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.223641+0000 mon.smithi003 (mon.0) 728 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.223641+0000 mon.smithi003 (mon.0) 728 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.231218+0000 mon.smithi003 (mon.0) 729 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:02:57.902 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.231218+0000 mon.smithi003 (mon.0) 729 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:02:57.903 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.232681+0000 mon.smithi003 (mon.0) 730 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.903 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.232681+0000 mon.smithi003 (mon.0) 730 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.903 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.525144+0000 mon.smithi003 (mon.0) 731 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:57.903 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:57 smithi003 bash[19900]: audit 2024-09-06T15:02:57.525144+0000 mon.smithi003 (mon.0) 731 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:57.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: cephadm 2024-09-06T15:02:56.177965+0000 mgr.smithi003.ghjsjw (mgr.14197) 155 : cephadm [INF] Detected new or changed devices on smithi120 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: cephadm 2024-09-06T15:02:56.177965+0000 mgr.smithi003.ghjsjw (mgr.14197) 155 : cephadm [INF] Detected new or changed devices on smithi120 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: cephadm 2024-09-06T15:02:56.199580+0000 mgr.smithi003.ghjsjw (mgr.14197) 156 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3772M 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: cephadm 2024-09-06T15:02:56.199580+0000 mgr.smithi003.ghjsjw (mgr.14197) 156 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3772M 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.167142+0000 mon.smithi003 (mon.0) 716 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.167142+0000 mon.smithi003 (mon.0) 716 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.177032+0000 mon.smithi003 (mon.0) 717 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.177032+0000 mon.smithi003 (mon.0) 717 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.180245+0000 mon.smithi003 (mon.0) 718 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.180245+0000 mon.smithi003 (mon.0) 718 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.181941+0000 mon.smithi003 (mon.0) 719 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.181941+0000 mon.smithi003 (mon.0) 719 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.183477+0000 mon.smithi003 (mon.0) 720 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.183477+0000 mon.smithi003 (mon.0) 720 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.184968+0000 mon.smithi003 (mon.0) 721 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.184968+0000 mon.smithi003 (mon.0) 721 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.193575+0000 mon.smithi003 (mon.0) 722 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.193575+0000 mon.smithi003 (mon.0) 722 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.198555+0000 mon.smithi003 (mon.0) 723 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.198555+0000 mon.smithi003 (mon.0) 723 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.199886+0000 mon.smithi003 (mon.0) 724 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.199886+0000 mon.smithi003 (mon.0) 724 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:02:57.996 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.207712+0000 mon.smithi003 (mon.0) 725 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.207712+0000 mon.smithi003 (mon.0) 725 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.212803+0000 mon.smithi003 (mon.0) 726 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.212803+0000 mon.smithi003 (mon.0) 726 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.222110+0000 mon.smithi003 (mon.0) 727 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.222110+0000 mon.smithi003 (mon.0) 727 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.223641+0000 mon.smithi003 (mon.0) 728 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.223641+0000 mon.smithi003 (mon.0) 728 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.231218+0000 mon.smithi003 (mon.0) 729 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.231218+0000 mon.smithi003 (mon.0) 729 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.232681+0000 mon.smithi003 (mon.0) 730 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.232681+0000 mon.smithi003 (mon.0) 730 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.525144+0000 mon.smithi003 (mon.0) 731 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:57.997 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:57 smithi120 bash[24835]: audit 2024-09-06T15:02:57.525144+0000 mon.smithi003 (mon.0) 731 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:02:58.643 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:02:58.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:58 smithi120 bash[24835]: cephadm 2024-09-06T15:02:57.156207+0000 mgr.smithi003.ghjsjw (mgr.14197) 157 : cephadm [INF] Detected new or changed devices on smithi003 2024-09-06T15:02:58.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:58 smithi120 bash[24835]: cephadm 2024-09-06T15:02:57.156207+0000 mgr.smithi003.ghjsjw (mgr.14197) 157 : cephadm [INF] Detected new or changed devices on smithi003 2024-09-06T15:02:58.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:58 smithi120 bash[24835]: cephadm 2024-09-06T15:02:57.186121+0000 mgr.smithi003.ghjsjw (mgr.14197) 158 : cephadm [INF] Adjusting osd_memory_target on smithi003 to 3005M 2024-09-06T15:02:58.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:58 smithi120 bash[24835]: cephadm 2024-09-06T15:02:57.186121+0000 mgr.smithi003.ghjsjw (mgr.14197) 158 : cephadm [INF] Adjusting osd_memory_target on smithi003 to 3005M 2024-09-06T15:02:58.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:58 smithi120 bash[24835]: cluster 2024-09-06T15:02:57.585252+0000 mgr.smithi003.ghjsjw (mgr.14197) 159 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:58.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:02:58 smithi120 bash[24835]: cluster 2024-09-06T15:02:57.585252+0000 mgr.smithi003.ghjsjw (mgr.14197) 159 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:58 smithi003 bash[19900]: cephadm 2024-09-06T15:02:57.156207+0000 mgr.smithi003.ghjsjw (mgr.14197) 157 : cephadm [INF] Detected new or changed devices on smithi003 2024-09-06T15:02:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:58 smithi003 bash[19900]: cephadm 2024-09-06T15:02:57.156207+0000 mgr.smithi003.ghjsjw (mgr.14197) 157 : cephadm [INF] Detected new or changed devices on smithi003 2024-09-06T15:02:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:58 smithi003 bash[19900]: cephadm 2024-09-06T15:02:57.186121+0000 mgr.smithi003.ghjsjw (mgr.14197) 158 : cephadm [INF] Adjusting osd_memory_target on smithi003 to 3005M 2024-09-06T15:02:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:58 smithi003 bash[19900]: cephadm 2024-09-06T15:02:57.186121+0000 mgr.smithi003.ghjsjw (mgr.14197) 158 : cephadm [INF] Adjusting osd_memory_target on smithi003 to 3005M 2024-09-06T15:02:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:58 smithi003 bash[19900]: cluster 2024-09-06T15:02:57.585252+0000 mgr.smithi003.ghjsjw (mgr.14197) 159 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:02:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:02:58 smithi003 bash[19900]: cluster 2024-09-06T15:02:57.585252+0000 mgr.smithi003.ghjsjw (mgr.14197) 159 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:00.218 INFO:teuthology.orchestra.run.smithi003.stdout:pg_num: 1 2024-09-06T15:03:00.914 INFO:tasks.cephadm:Setting up client nodes... 2024-09-06T15:03:00.914 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-06T15:03:00.926 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:00 smithi003 bash[19900]: cluster 2024-09-06T15:02:59.585938+0000 mgr.smithi003.ghjsjw (mgr.14197) 160 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:00.926 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:00 smithi003 bash[19900]: cluster 2024-09-06T15:02:59.585938+0000 mgr.smithi003.ghjsjw (mgr.14197) 160 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:00.926 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:00 smithi003 bash[19900]: audit 2024-09-06T15:03:00.220191+0000 mon.smithi003 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.3:0/516971308' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-06T15:03:00.926 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:00 smithi003 bash[19900]: audit 2024-09-06T15:03:00.220191+0000 mon.smithi003 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.3:0/516971308' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-06T15:03:00.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:00 smithi120 bash[24835]: cluster 2024-09-06T15:02:59.585938+0000 mgr.smithi003.ghjsjw (mgr.14197) 160 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:00.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:00 smithi120 bash[24835]: cluster 2024-09-06T15:02:59.585938+0000 mgr.smithi003.ghjsjw (mgr.14197) 160 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:00.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:00 smithi120 bash[24835]: audit 2024-09-06T15:03:00.220191+0000 mon.smithi003 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.3:0/516971308' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-06T15:03:00.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:00 smithi120 bash[24835]: audit 2024-09-06T15:03:00.220191+0000 mon.smithi003 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.3:0/516971308' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-06T15:03:02.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:02 smithi120 bash[24835]: cluster 2024-09-06T15:03:01.586621+0000 mgr.smithi003.ghjsjw (mgr.14197) 161 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:02.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:02 smithi120 bash[24835]: cluster 2024-09-06T15:03:01.586621+0000 mgr.smithi003.ghjsjw (mgr.14197) 161 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:02.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:02 smithi003 bash[19900]: cluster 2024-09-06T15:03:01.586621+0000 mgr.smithi003.ghjsjw (mgr.14197) 161 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:02.951 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:02 smithi003 bash[19900]: cluster 2024-09-06T15:03:01.586621+0000 mgr.smithi003.ghjsjw (mgr.14197) 161 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:04.809 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:04.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:04 smithi120 bash[24835]: cluster 2024-09-06T15:03:03.587297+0000 mgr.smithi003.ghjsjw (mgr.14197) 162 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:04.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:04 smithi120 bash[24835]: cluster 2024-09-06T15:03:03.587297+0000 mgr.smithi003.ghjsjw (mgr.14197) 162 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:04 smithi003 bash[19900]: cluster 2024-09-06T15:03:03.587297+0000 mgr.smithi003.ghjsjw (mgr.14197) 162 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:04 smithi003 bash[19900]: cluster 2024-09-06T15:03:03.587297+0000 mgr.smithi003.ghjsjw (mgr.14197) 162 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:06.350 INFO:teuthology.orchestra.run.smithi003.stdout:[client.0] 2024-09-06T15:03:06.350 INFO:teuthology.orchestra.run.smithi003.stdout: key = AQCqGdtmh2fSFBAAv6g7JDegh2LFqQJ7Gd6DMQ== 2024-09-06T15:03:06.931 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:06 smithi120 bash[24835]: cluster 2024-09-06T15:03:05.588005+0000 mgr.smithi003.ghjsjw (mgr.14197) 163 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:06.931 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:06 smithi120 bash[24835]: cluster 2024-09-06T15:03:05.588005+0000 mgr.smithi003.ghjsjw (mgr.14197) 163 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:06.932 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:06 smithi120 bash[24835]: audit 2024-09-06T15:03:06.348905+0000 mon.smithi003 (mon.0) 733 : audit [INF] from='client.? 172.21.15.3:0/871594254' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:06.932 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:06 smithi120 bash[24835]: audit 2024-09-06T15:03:06.348905+0000 mon.smithi003 (mon.0) 733 : audit [INF] from='client.? 172.21.15.3:0/871594254' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:06.932 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:06 smithi120 bash[24835]: audit 2024-09-06T15:03:06.352283+0000 mon.smithi003 (mon.0) 734 : audit [INF] from='client.? 172.21.15.3:0/871594254' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T15:03:06.932 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:06 smithi120 bash[24835]: audit 2024-09-06T15:03:06.352283+0000 mon.smithi003 (mon.0) 734 : audit [INF] from='client.? 172.21.15.3:0/871594254' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T15:03:07.067 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:06 smithi003 bash[19900]: cluster 2024-09-06T15:03:05.588005+0000 mgr.smithi003.ghjsjw (mgr.14197) 163 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:07.067 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:06 smithi003 bash[19900]: cluster 2024-09-06T15:03:05.588005+0000 mgr.smithi003.ghjsjw (mgr.14197) 163 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:07.067 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:06 smithi003 bash[19900]: audit 2024-09-06T15:03:06.348905+0000 mon.smithi003 (mon.0) 733 : audit [INF] from='client.? 172.21.15.3:0/871594254' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:07.067 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:06 smithi003 bash[19900]: audit 2024-09-06T15:03:06.348905+0000 mon.smithi003 (mon.0) 733 : audit [INF] from='client.? 172.21.15.3:0/871594254' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:07.067 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:06 smithi003 bash[19900]: audit 2024-09-06T15:03:06.352283+0000 mon.smithi003 (mon.0) 734 : audit [INF] from='client.? 172.21.15.3:0/871594254' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T15:03:07.067 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:06 smithi003 bash[19900]: audit 2024-09-06T15:03:06.352283+0000 mon.smithi003 (mon.0) 734 : audit [INF] from='client.? 172.21.15.3:0/871594254' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T15:03:07.127 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T15:03:07.127 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-06T15:03:07.127 DEBUG:teuthology.orchestra.run.smithi003:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-06T15:03:07.194 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-06T15:03:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:08 smithi120 bash[24835]: cluster 2024-09-06T15:03:07.588520+0000 mgr.smithi003.ghjsjw (mgr.14197) 164 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:08 smithi120 bash[24835]: cluster 2024-09-06T15:03:07.588520+0000 mgr.smithi003.ghjsjw (mgr.14197) 164 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:08 smithi003 bash[19900]: cluster 2024-09-06T15:03:07.588520+0000 mgr.smithi003.ghjsjw (mgr.14197) 164 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:08 smithi003 bash[19900]: cluster 2024-09-06T15:03:07.588520+0000 mgr.smithi003.ghjsjw (mgr.14197) 164 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:10.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:10 smithi120 bash[24835]: cluster 2024-09-06T15:03:09.589220+0000 mgr.smithi003.ghjsjw (mgr.14197) 165 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:10.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:10 smithi120 bash[24835]: cluster 2024-09-06T15:03:09.589220+0000 mgr.smithi003.ghjsjw (mgr.14197) 165 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:11.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:10 smithi003 bash[19900]: cluster 2024-09-06T15:03:09.589220+0000 mgr.smithi003.ghjsjw (mgr.14197) 165 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:11.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:10 smithi003 bash[19900]: cluster 2024-09-06T15:03:09.589220+0000 mgr.smithi003.ghjsjw (mgr.14197) 165 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:11.981 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi120/config 2024-09-06T15:03:12.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:12 smithi120 bash[24835]: cluster 2024-09-06T15:03:11.589887+0000 mgr.smithi003.ghjsjw (mgr.14197) 166 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:12.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:12 smithi120 bash[24835]: cluster 2024-09-06T15:03:11.589887+0000 mgr.smithi003.ghjsjw (mgr.14197) 166 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:12.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:12 smithi120 bash[24835]: audit 2024-09-06T15:03:12.525727+0000 mon.smithi003 (mon.0) 735 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:12.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:12 smithi120 bash[24835]: audit 2024-09-06T15:03:12.525727+0000 mon.smithi003 (mon.0) 735 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:13.054 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:12 smithi003 bash[19900]: cluster 2024-09-06T15:03:11.589887+0000 mgr.smithi003.ghjsjw (mgr.14197) 166 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:13.055 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:12 smithi003 bash[19900]: cluster 2024-09-06T15:03:11.589887+0000 mgr.smithi003.ghjsjw (mgr.14197) 166 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:13.055 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:12 smithi003 bash[19900]: audit 2024-09-06T15:03:12.525727+0000 mon.smithi003 (mon.0) 735 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:13.055 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:12 smithi003 bash[19900]: audit 2024-09-06T15:03:12.525727+0000 mon.smithi003 (mon.0) 735 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:14.208 INFO:teuthology.orchestra.run.smithi120.stdout:[client.1] 2024-09-06T15:03:14.208 INFO:teuthology.orchestra.run.smithi120.stdout: key = AQCyGdtm+rgyDBAAo5Zd26p46wjmlCe6k4VYvA== 2024-09-06T15:03:14.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:14 smithi120 bash[24835]: cluster 2024-09-06T15:03:13.590667+0000 mgr.smithi003.ghjsjw (mgr.14197) 167 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:14.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:14 smithi120 bash[24835]: cluster 2024-09-06T15:03:13.590667+0000 mgr.smithi003.ghjsjw (mgr.14197) 167 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:14.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:14 smithi120 bash[24835]: audit 2024-09-06T15:03:14.203965+0000 mon.smithi120 (mon.1) 18 : audit [INF] from='client.? 172.21.15.120:0/4106883081' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:14.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:14 smithi120 bash[24835]: audit 2024-09-06T15:03:14.203965+0000 mon.smithi120 (mon.1) 18 : audit [INF] from='client.? 172.21.15.120:0/4106883081' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:14 smithi120 bash[24835]: audit 2024-09-06T15:03:14.204277+0000 mon.smithi003 (mon.0) 736 : audit [INF] from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:14 smithi120 bash[24835]: audit 2024-09-06T15:03:14.204277+0000 mon.smithi003 (mon.0) 736 : audit [INF] from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:14 smithi120 bash[24835]: audit 2024-09-06T15:03:14.207843+0000 mon.smithi003 (mon.0) 737 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T15:03:14.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:14 smithi120 bash[24835]: audit 2024-09-06T15:03:14.207843+0000 mon.smithi003 (mon.0) 737 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T15:03:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:14 smithi003 bash[19900]: cluster 2024-09-06T15:03:13.590667+0000 mgr.smithi003.ghjsjw (mgr.14197) 167 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:14 smithi003 bash[19900]: cluster 2024-09-06T15:03:13.590667+0000 mgr.smithi003.ghjsjw (mgr.14197) 167 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:14 smithi003 bash[19900]: audit 2024-09-06T15:03:14.203965+0000 mon.smithi120 (mon.1) 18 : audit [INF] from='client.? 172.21.15.120:0/4106883081' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:14 smithi003 bash[19900]: audit 2024-09-06T15:03:14.203965+0000 mon.smithi120 (mon.1) 18 : audit [INF] from='client.? 172.21.15.120:0/4106883081' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:15.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:14 smithi003 bash[19900]: audit 2024-09-06T15:03:14.204277+0000 mon.smithi003 (mon.0) 736 : audit [INF] from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:15.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:14 smithi003 bash[19900]: audit 2024-09-06T15:03:14.204277+0000 mon.smithi003 (mon.0) 736 : audit [INF] from='client.? ' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-06T15:03:15.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:14 smithi003 bash[19900]: audit 2024-09-06T15:03:14.207843+0000 mon.smithi003 (mon.0) 737 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T15:03:15.150 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:14 smithi003 bash[19900]: audit 2024-09-06T15:03:14.207843+0000 mon.smithi003 (mon.0) 737 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-06T15:03:15.389 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T15:03:15.389 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-06T15:03:15.390 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-06T15:03:15.413 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph config log 1 --format=json 2024-09-06T15:03:16.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:16 smithi120 bash[24835]: cluster 2024-09-06T15:03:15.591427+0000 mgr.smithi003.ghjsjw (mgr.14197) 168 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:16.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:16 smithi120 bash[24835]: cluster 2024-09-06T15:03:15.591427+0000 mgr.smithi003.ghjsjw (mgr.14197) 168 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:16 smithi003 bash[19900]: cluster 2024-09-06T15:03:15.591427+0000 mgr.smithi003.ghjsjw (mgr.14197) 168 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:16 smithi003 bash[19900]: cluster 2024-09-06T15:03:15.591427+0000 mgr.smithi003.ghjsjw (mgr.14197) 168 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:18.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:18 smithi120 bash[24835]: cluster 2024-09-06T15:03:17.592091+0000 mgr.smithi003.ghjsjw (mgr.14197) 169 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:18.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:18 smithi120 bash[24835]: cluster 2024-09-06T15:03:17.592091+0000 mgr.smithi003.ghjsjw (mgr.14197) 169 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:18 smithi003 bash[19900]: cluster 2024-09-06T15:03:17.592091+0000 mgr.smithi003.ghjsjw (mgr.14197) 169 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:18 smithi003 bash[19900]: cluster 2024-09-06T15:03:17.592091+0000 mgr.smithi003.ghjsjw (mgr.14197) 169 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:20.466 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:20.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:20 smithi003 bash[19900]: cluster 2024-09-06T15:03:19.592817+0000 mgr.smithi003.ghjsjw (mgr.14197) 170 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:20.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:20 smithi003 bash[19900]: cluster 2024-09-06T15:03:19.592817+0000 mgr.smithi003.ghjsjw (mgr.14197) 170 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:20.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:20 smithi120 bash[24835]: cluster 2024-09-06T15:03:19.592817+0000 mgr.smithi003.ghjsjw (mgr.14197) 170 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:20.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:20 smithi120 bash[24835]: cluster 2024-09-06T15:03:19.592817+0000 mgr.smithi003.ghjsjw (mgr.14197) 170 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:22.558 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:03:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:22 smithi003 bash[19900]: cluster 2024-09-06T15:03:21.593496+0000 mgr.smithi003.ghjsjw (mgr.14197) 171 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:22 smithi003 bash[19900]: cluster 2024-09-06T15:03:21.593496+0000 mgr.smithi003.ghjsjw (mgr.14197) 171 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:22 smithi003 bash[19900]: audit 2024-09-06T15:03:22.559817+0000 mon.smithi003 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.3:0/286093147' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-06T15:03:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:22 smithi003 bash[19900]: audit 2024-09-06T15:03:22.559817+0000 mon.smithi003 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.3:0/286093147' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-06T15:03:22.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:22 smithi120 bash[24835]: cluster 2024-09-06T15:03:21.593496+0000 mgr.smithi003.ghjsjw (mgr.14197) 171 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:22.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:22 smithi120 bash[24835]: cluster 2024-09-06T15:03:21.593496+0000 mgr.smithi003.ghjsjw (mgr.14197) 171 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:22.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:22 smithi120 bash[24835]: audit 2024-09-06T15:03:22.559817+0000 mon.smithi003 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.3:0/286093147' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-06T15:03:22.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:22 smithi120 bash[24835]: audit 2024-09-06T15:03:22.559817+0000 mon.smithi003 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.3:0/286093147' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-06T15:03:23.363 INFO:teuthology.orchestra.run.smithi003.stdout:[{"version":18,"timestamp":"2024-09-06T15:02:57.186683+0000","name":"","changes":[{"name":"osd/host:smithi003/osd_memory_target","new_value":"3151433625"}]}] 2024-09-06T15:03:23.363 INFO:tasks.ceph_manager:config epoch is 18 2024-09-06T15:03:23.364 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-06T15:03:23.364 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-06T15:03:23.364 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph mgr dump --format=json 2024-09-06T15:03:24.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:24 smithi120 bash[24835]: cluster 2024-09-06T15:03:23.593910+0000 mgr.smithi003.ghjsjw (mgr.14197) 172 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:24.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:24 smithi120 bash[24835]: cluster 2024-09-06T15:03:23.593910+0000 mgr.smithi003.ghjsjw (mgr.14197) 172 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:25.035 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:24 smithi003 bash[19900]: cluster 2024-09-06T15:03:23.593910+0000 mgr.smithi003.ghjsjw (mgr.14197) 172 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:25.035 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:24 smithi003 bash[19900]: cluster 2024-09-06T15:03:23.593910+0000 mgr.smithi003.ghjsjw (mgr.14197) 172 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:25.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:25 smithi003 bash[19900]: cluster 2024-09-06T15:03:25.594581+0000 mgr.smithi003.ghjsjw (mgr.14197) 173 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:25.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:25 smithi003 bash[19900]: cluster 2024-09-06T15:03:25.594581+0000 mgr.smithi003.ghjsjw (mgr.14197) 173 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:26.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:25 smithi120 bash[24835]: cluster 2024-09-06T15:03:25.594581+0000 mgr.smithi003.ghjsjw (mgr.14197) 173 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:26.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:25 smithi120 bash[24835]: cluster 2024-09-06T15:03:25.594581+0000 mgr.smithi003.ghjsjw (mgr.14197) 173 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:28.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.518588+0000 mon.smithi003 (mon.0) 739 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.744 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.518588+0000 mon.smithi003 (mon.0) 739 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.529229+0000 mon.smithi003 (mon.0) 740 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.529229+0000 mon.smithi003 (mon.0) 740 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.530227+0000 mon.smithi003 (mon.0) 741 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.530227+0000 mon.smithi003 (mon.0) 741 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.579752+0000 mon.smithi003 (mon.0) 742 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.579752+0000 mon.smithi003 (mon.0) 742 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.590131+0000 mon.smithi003 (mon.0) 743 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: audit 2024-09-06T15:03:27.590131+0000 mon.smithi003 (mon.0) 743 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: cluster 2024-09-06T15:03:27.595179+0000 mgr.smithi003.ghjsjw (mgr.14197) 174 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:28.745 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:28 smithi120 bash[24835]: cluster 2024-09-06T15:03:27.595179+0000 mgr.smithi003.ghjsjw (mgr.14197) 174 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:28.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.518588+0000 mon.smithi003 (mon.0) 739 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.518588+0000 mon.smithi003 (mon.0) 739 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.529229+0000 mon.smithi003 (mon.0) 740 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.529229+0000 mon.smithi003 (mon.0) 740 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.530227+0000 mon.smithi003 (mon.0) 741 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.530227+0000 mon.smithi003 (mon.0) 741 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.579752+0000 mon.smithi003 (mon.0) 742 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.579752+0000 mon.smithi003 (mon.0) 742 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.590131+0000 mon.smithi003 (mon.0) 743 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: audit 2024-09-06T15:03:27.590131+0000 mon.smithi003 (mon.0) 743 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: cluster 2024-09-06T15:03:27.595179+0000 mgr.smithi003.ghjsjw (mgr.14197) 174 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:28.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:28 smithi003 bash[19900]: cluster 2024-09-06T15:03:27.595179+0000 mgr.smithi003.ghjsjw (mgr.14197) 174 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:29.203 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:30.777 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:03:30.969 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:30 smithi003 bash[19900]: cluster 2024-09-06T15:03:29.595897+0000 mgr.smithi003.ghjsjw (mgr.14197) 175 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:30.970 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:30 smithi003 bash[19900]: cluster 2024-09-06T15:03:29.595897+0000 mgr.smithi003.ghjsjw (mgr.14197) 175 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:30.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:30 smithi120 bash[24835]: cluster 2024-09-06T15:03:29.595897+0000 mgr.smithi003.ghjsjw (mgr.14197) 175 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:30.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:30 smithi120 bash[24835]: cluster 2024-09-06T15:03:29.595897+0000 mgr.smithi003.ghjsjw (mgr.14197) 175 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:31.501 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":19,"flags":0,"active_gid":14197,"active_name":"smithi003.ghjsjw","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6800","nonce":551881733},{"type":"v1","addr":"172.21.15.3:6801","nonce":551881733}]},"active_addr":"172.21.15.3:6801/551881733","active_change":"2024-09-06T14:59:57.030868+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":14214,"name":"smithi120.nvkvbd","mgr_features":4540719139924082687,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:1.26.1","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":false,"error_string":"No module named 'ceph.fs'","module_options":{}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","prometheus","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:1.26.1","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":false,"error_string":"No module named 'ceph.fs'","module_options":{}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.3:8443/","prometheus":"http://172.21.15.3:9283/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.3:0","nonce":2483024203}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.3:0","nonce":4269320385}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.3:0","nonce":508504501}]}]} 2024-09-06T15:03:31.508 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-06T15:03:31.508 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-06T15:03:31.508 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd dump --format=json 2024-09-06T15:03:31.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:31 smithi003 bash[19900]: audit 2024-09-06T15:03:30.769193+0000 mon.smithi003 (mon.0) 744 : audit [DBG] from='client.? 172.21.15.3:0/2709523451' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-06T15:03:31.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:31 smithi003 bash[19900]: audit 2024-09-06T15:03:30.769193+0000 mon.smithi003 (mon.0) 744 : audit [DBG] from='client.? 172.21.15.3:0/2709523451' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-06T15:03:31.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:31 smithi120 bash[24835]: audit 2024-09-06T15:03:30.769193+0000 mon.smithi003 (mon.0) 744 : audit [DBG] from='client.? 172.21.15.3:0/2709523451' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-06T15:03:31.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:31 smithi120 bash[24835]: audit 2024-09-06T15:03:30.769193+0000 mon.smithi003 (mon.0) 744 : audit [DBG] from='client.? 172.21.15.3:0/2709523451' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-06T15:03:32.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:32 smithi120 bash[24835]: cluster 2024-09-06T15:03:31.596531+0000 mgr.smithi003.ghjsjw (mgr.14197) 176 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:32.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:32 smithi120 bash[24835]: cluster 2024-09-06T15:03:31.596531+0000 mgr.smithi003.ghjsjw (mgr.14197) 176 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:32 smithi003 bash[19900]: cluster 2024-09-06T15:03:31.596531+0000 mgr.smithi003.ghjsjw (mgr.14197) 176 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:32 smithi003 bash[19900]: cluster 2024-09-06T15:03:31.596531+0000 mgr.smithi003.ghjsjw (mgr.14197) 176 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:34.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:34 smithi120 bash[24835]: cluster 2024-09-06T15:03:33.597207+0000 mgr.smithi003.ghjsjw (mgr.14197) 177 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:34 smithi120 bash[24835]: cluster 2024-09-06T15:03:33.597207+0000 mgr.smithi003.ghjsjw (mgr.14197) 177 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:35.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:34 smithi003 bash[19900]: cluster 2024-09-06T15:03:33.597207+0000 mgr.smithi003.ghjsjw (mgr.14197) 177 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:35.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:34 smithi003 bash[19900]: cluster 2024-09-06T15:03:33.597207+0000 mgr.smithi003.ghjsjw (mgr.14197) 177 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:36.337 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:36.808 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:36 smithi003 bash[19900]: cluster 2024-09-06T15:03:35.597919+0000 mgr.smithi003.ghjsjw (mgr.14197) 178 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:36.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:36 smithi120 bash[24835]: cluster 2024-09-06T15:03:35.597919+0000 mgr.smithi003.ghjsjw (mgr.14197) 178 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:36.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:36 smithi120 bash[24835]: cluster 2024-09-06T15:03:35.597919+0000 mgr.smithi003.ghjsjw (mgr.14197) 178 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:37.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:36 smithi003 bash[19900]: cluster 2024-09-06T15:03:35.597919+0000 mgr.smithi003.ghjsjw (mgr.14197) 178 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:38.112 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:03:38.112 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":42,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","created":"2024-09-06T14:57:17.606307+0000","modified":"2024-09-06T15:02:42.082951+0000","last_up_change":"2024-09-06T15:02:38.189723+0000","last_in_change":"2024-09-06T15:01:41.813668+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":18,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-06T15:02:21.585649+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"4656dc11-7da5-492e-b90e-69eb07eb3805","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6800","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6801","nonce":4229138416}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6803","nonce":4229138416}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6807","nonce":4229138416}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6805","nonce":4229138416}]},"public_addr":"172.21.15.120:6801/4229138416","cluster_addr":"172.21.15.120:6803/4229138416","heartbeat_back_addr":"172.21.15.120:6807/4229138416","heartbeat_front_addr":"172.21.15.120:6805/4229138416","state":["exists","up"]},{"osd":1,"uuid":"7a884759-ea10-46df-b47f-6ddda8b4d213","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6802","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6803","nonce":1655309061}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6804","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6805","nonce":1655309061}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6808","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6809","nonce":1655309061}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6806","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6807","nonce":1655309061}]},"public_addr":"172.21.15.3:6803/1655309061","cluster_addr":"172.21.15.3:6805/1655309061","heartbeat_back_addr":"172.21.15.3:6809/1655309061","heartbeat_front_addr":"172.21.15.3:6807/1655309061","state":["exists","up"]},{"osd":2,"uuid":"2fff739c-26dc-4805-9826-939da49fd35c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6809","nonce":2259511884}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6811","nonce":2259511884}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6815","nonce":2259511884}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6813","nonce":2259511884}]},"public_addr":"172.21.15.120:6809/2259511884","cluster_addr":"172.21.15.120:6811/2259511884","heartbeat_back_addr":"172.21.15.120:6815/2259511884","heartbeat_front_addr":"172.21.15.120:6813/2259511884","state":["exists","up"]},{"osd":3,"uuid":"ab3c8364-e692-4ea2-9177-2b00d0d828d9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6810","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6811","nonce":3584823275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6812","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6813","nonce":3584823275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6816","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6817","nonce":3584823275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6814","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6815","nonce":3584823275}]},"public_addr":"172.21.15.3:6811/3584823275","cluster_addr":"172.21.15.3:6813/3584823275","heartbeat_back_addr":"172.21.15.3:6817/3584823275","heartbeat_front_addr":"172.21.15.3:6815/3584823275","state":["exists","up"]},{"osd":4,"uuid":"b34b627f-1ad6-489d-931b-b7cfe8f002f7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6817","nonce":1674533282}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6819","nonce":1674533282}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6823","nonce":1674533282}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6821","nonce":1674533282}]},"public_addr":"172.21.15.120:6817/1674533282","cluster_addr":"172.21.15.120:6819/1674533282","heartbeat_back_addr":"172.21.15.120:6823/1674533282","heartbeat_front_addr":"172.21.15.120:6821/1674533282","state":["exists","up"]},{"osd":5,"uuid":"c9dd0206-bcb6-4cd4-8577-90da26341c94","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.3:6818","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6819","nonce":793757804}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6820","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6821","nonce":793757804}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6824","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6825","nonce":793757804}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6822","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6823","nonce":793757804}]},"public_addr":"172.21.15.3:6819/793757804","cluster_addr":"172.21.15.3:6821/793757804","heartbeat_back_addr":"172.21.15.3:6825/793757804","heartbeat_front_addr":"172.21.15.3:6823/793757804","state":["exists","up"]},{"osd":6,"uuid":"c5476be0-03fd-46e2-b287-2ddc93c89193","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6825","nonce":1734862537}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6827","nonce":1734862537}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6831","nonce":1734862537}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6829","nonce":1734862537}]},"public_addr":"172.21.15.120:6825/1734862537","cluster_addr":"172.21.15.120:6827/1734862537","heartbeat_back_addr":"172.21.15.120:6831/1734862537","heartbeat_front_addr":"172.21.15.120:6829/1734862537","state":["exists","up"]},{"osd":7,"uuid":"bc7dbee8-4565-4faa-a483-0b3e6afd8e0b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6826","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6827","nonce":517312213}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6828","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6829","nonce":517312213}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6832","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6833","nonce":517312213}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6830","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6831","nonce":517312213}]},"public_addr":"172.21.15.3:6827/517312213","cluster_addr":"172.21.15.3:6829/517312213","heartbeat_back_addr":"172.21.15.3:6833/517312213","heartbeat_front_addr":"172.21.15.3:6831/517312213","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:12.009558+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:16.555990+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:18.056908+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:25.648907+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:22.414557+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:31.463499+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:27.252811+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:36.457786+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.3:0/3290527298":"2024-09-07T14:59:57.030647+0000","172.21.15.3:6801/2507950867":"2024-09-07T14:59:57.030647+0000","172.21.15.3:6800/2507950867":"2024-09-07T14:59:57.030647+0000","172.21.15.3:0/3960711045":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6801/2826604878":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6801/2090180094":"2024-09-07T14:57:44.742750+0000","172.21.15.3:0/2556651134":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6800/2090180094":"2024-09-07T14:57:44.742750+0000","172.21.15.3:0/222419432":"2024-09-07T14:59:57.030647+0000","172.21.15.3:0/2553802398":"2024-09-07T14:57:44.742750+0000","172.21.15.3:6800/2826604878":"2024-09-07T14:58:29.450948+0000","172.21.15.3:0/2072436124":"2024-09-07T14:57:44.742750+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-06T15:03:38.796 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-06T15:03:38.797 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd dump --format=json 2024-09-06T15:03:38.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:38 smithi120 bash[24835]: cluster 2024-09-06T15:03:37.598576+0000 mgr.smithi003.ghjsjw (mgr.14197) 179 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:38.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:38 smithi120 bash[24835]: cluster 2024-09-06T15:03:37.598576+0000 mgr.smithi003.ghjsjw (mgr.14197) 179 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:38.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:38 smithi120 bash[24835]: audit 2024-09-06T15:03:38.113746+0000 mon.smithi003 (mon.0) 745 : audit [DBG] from='client.? 172.21.15.3:0/3519311413' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:03:38.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:38 smithi120 bash[24835]: audit 2024-09-06T15:03:38.113746+0000 mon.smithi003 (mon.0) 745 : audit [DBG] from='client.? 172.21.15.3:0/3519311413' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:03:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:38 smithi003 bash[19900]: cluster 2024-09-06T15:03:37.598576+0000 mgr.smithi003.ghjsjw (mgr.14197) 179 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:38 smithi003 bash[19900]: cluster 2024-09-06T15:03:37.598576+0000 mgr.smithi003.ghjsjw (mgr.14197) 179 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:38 smithi003 bash[19900]: audit 2024-09-06T15:03:38.113746+0000 mon.smithi003 (mon.0) 745 : audit [DBG] from='client.? 172.21.15.3:0/3519311413' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:03:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:38 smithi003 bash[19900]: audit 2024-09-06T15:03:38.113746+0000 mon.smithi003 (mon.0) 745 : audit [DBG] from='client.? 172.21.15.3:0/3519311413' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:03:40.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:40 smithi120 bash[24835]: cluster 2024-09-06T15:03:39.599283+0000 mgr.smithi003.ghjsjw (mgr.14197) 180 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:40.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:40 smithi120 bash[24835]: cluster 2024-09-06T15:03:39.599283+0000 mgr.smithi003.ghjsjw (mgr.14197) 180 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:40 smithi003 bash[19900]: cluster 2024-09-06T15:03:39.599283+0000 mgr.smithi003.ghjsjw (mgr.14197) 180 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:40 smithi003 bash[19900]: cluster 2024-09-06T15:03:39.599283+0000 mgr.smithi003.ghjsjw (mgr.14197) 180 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:42.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:42 smithi120 bash[24835]: cluster 2024-09-06T15:03:41.599738+0000 mgr.smithi003.ghjsjw (mgr.14197) 181 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:42.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:42 smithi120 bash[24835]: cluster 2024-09-06T15:03:41.599738+0000 mgr.smithi003.ghjsjw (mgr.14197) 181 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:42.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:42 smithi120 bash[24835]: audit 2024-09-06T15:03:42.526631+0000 mon.smithi003 (mon.0) 746 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:42.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:42 smithi120 bash[24835]: audit 2024-09-06T15:03:42.526631+0000 mon.smithi003 (mon.0) 746 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:42 smithi003 bash[19900]: cluster 2024-09-06T15:03:41.599738+0000 mgr.smithi003.ghjsjw (mgr.14197) 181 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:42 smithi003 bash[19900]: cluster 2024-09-06T15:03:41.599738+0000 mgr.smithi003.ghjsjw (mgr.14197) 181 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:42 smithi003 bash[19900]: audit 2024-09-06T15:03:42.526631+0000 mon.smithi003 (mon.0) 746 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:42 smithi003 bash[19900]: audit 2024-09-06T15:03:42.526631+0000 mon.smithi003 (mon.0) 746 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:43.620 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:44 smithi120 bash[24835]: cluster 2024-09-06T15:03:43.600358+0000 mgr.smithi003.ghjsjw (mgr.14197) 182 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:44 smithi120 bash[24835]: cluster 2024-09-06T15:03:43.600358+0000 mgr.smithi003.ghjsjw (mgr.14197) 182 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:45.087 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:03:45.088 INFO:teuthology.orchestra.run.smithi003.stdout:{"epoch":42,"fsid":"0f20e064-6c60-11ef-bce4-c7b262605968","created":"2024-09-06T14:57:17.606307+0000","modified":"2024-09-06T15:02:42.082951+0000","last_up_change":"2024-09-06T15:02:38.189723+0000","last_in_change":"2024-09-06T15:01:41.813668+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":18,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-06T15:02:21.585649+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"4656dc11-7da5-492e-b90e-69eb07eb3805","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6800","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6801","nonce":4229138416}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6803","nonce":4229138416}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6807","nonce":4229138416}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":4229138416},{"type":"v1","addr":"172.21.15.120:6805","nonce":4229138416}]},"public_addr":"172.21.15.120:6801/4229138416","cluster_addr":"172.21.15.120:6803/4229138416","heartbeat_back_addr":"172.21.15.120:6807/4229138416","heartbeat_front_addr":"172.21.15.120:6805/4229138416","state":["exists","up"]},{"osd":1,"uuid":"7a884759-ea10-46df-b47f-6ddda8b4d213","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6802","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6803","nonce":1655309061}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6804","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6805","nonce":1655309061}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6808","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6809","nonce":1655309061}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6806","nonce":1655309061},{"type":"v1","addr":"172.21.15.3:6807","nonce":1655309061}]},"public_addr":"172.21.15.3:6803/1655309061","cluster_addr":"172.21.15.3:6805/1655309061","heartbeat_back_addr":"172.21.15.3:6809/1655309061","heartbeat_front_addr":"172.21.15.3:6807/1655309061","state":["exists","up"]},{"osd":2,"uuid":"2fff739c-26dc-4805-9826-939da49fd35c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6809","nonce":2259511884}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6811","nonce":2259511884}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6815","nonce":2259511884}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":2259511884},{"type":"v1","addr":"172.21.15.120:6813","nonce":2259511884}]},"public_addr":"172.21.15.120:6809/2259511884","cluster_addr":"172.21.15.120:6811/2259511884","heartbeat_back_addr":"172.21.15.120:6815/2259511884","heartbeat_front_addr":"172.21.15.120:6813/2259511884","state":["exists","up"]},{"osd":3,"uuid":"ab3c8364-e692-4ea2-9177-2b00d0d828d9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6810","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6811","nonce":3584823275}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6812","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6813","nonce":3584823275}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6816","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6817","nonce":3584823275}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6814","nonce":3584823275},{"type":"v1","addr":"172.21.15.3:6815","nonce":3584823275}]},"public_addr":"172.21.15.3:6811/3584823275","cluster_addr":"172.21.15.3:6813/3584823275","heartbeat_back_addr":"172.21.15.3:6817/3584823275","heartbeat_front_addr":"172.21.15.3:6815/3584823275","state":["exists","up"]},{"osd":4,"uuid":"b34b627f-1ad6-489d-931b-b7cfe8f002f7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6817","nonce":1674533282}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6819","nonce":1674533282}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6823","nonce":1674533282}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":1674533282},{"type":"v1","addr":"172.21.15.120:6821","nonce":1674533282}]},"public_addr":"172.21.15.120:6817/1674533282","cluster_addr":"172.21.15.120:6819/1674533282","heartbeat_back_addr":"172.21.15.120:6823/1674533282","heartbeat_front_addr":"172.21.15.120:6821/1674533282","state":["exists","up"]},{"osd":5,"uuid":"c9dd0206-bcb6-4cd4-8577-90da26341c94","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.3:6818","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6819","nonce":793757804}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6820","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6821","nonce":793757804}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6824","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6825","nonce":793757804}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6822","nonce":793757804},{"type":"v1","addr":"172.21.15.3:6823","nonce":793757804}]},"public_addr":"172.21.15.3:6819/793757804","cluster_addr":"172.21.15.3:6821/793757804","heartbeat_back_addr":"172.21.15.3:6825/793757804","heartbeat_front_addr":"172.21.15.3:6823/793757804","state":["exists","up"]},{"osd":6,"uuid":"c5476be0-03fd-46e2-b287-2ddc93c89193","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6825","nonce":1734862537}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6827","nonce":1734862537}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6831","nonce":1734862537}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":1734862537},{"type":"v1","addr":"172.21.15.120:6829","nonce":1734862537}]},"public_addr":"172.21.15.120:6825/1734862537","cluster_addr":"172.21.15.120:6827/1734862537","heartbeat_back_addr":"172.21.15.120:6831/1734862537","heartbeat_front_addr":"172.21.15.120:6829/1734862537","state":["exists","up"]},{"osd":7,"uuid":"bc7dbee8-4565-4faa-a483-0b3e6afd8e0b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":41,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6826","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6827","nonce":517312213}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6828","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6829","nonce":517312213}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6832","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6833","nonce":517312213}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.3:6830","nonce":517312213},{"type":"v1","addr":"172.21.15.3:6831","nonce":517312213}]},"public_addr":"172.21.15.3:6827/517312213","cluster_addr":"172.21.15.3:6829/517312213","heartbeat_back_addr":"172.21.15.3:6833/517312213","heartbeat_front_addr":"172.21.15.3:6831/517312213","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:12.009558+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:16.555990+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:18.056908+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:25.648907+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:22.414557+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:31.463499+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:27.252811+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-06T15:02:36.457786+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.3:0/3290527298":"2024-09-07T14:59:57.030647+0000","172.21.15.3:6801/2507950867":"2024-09-07T14:59:57.030647+0000","172.21.15.3:6800/2507950867":"2024-09-07T14:59:57.030647+0000","172.21.15.3:0/3960711045":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6801/2826604878":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6801/2090180094":"2024-09-07T14:57:44.742750+0000","172.21.15.3:0/2556651134":"2024-09-07T14:58:29.450948+0000","172.21.15.3:6800/2090180094":"2024-09-07T14:57:44.742750+0000","172.21.15.3:0/222419432":"2024-09-07T14:59:57.030647+0000","172.21.15.3:0/2553802398":"2024-09-07T14:57:44.742750+0000","172.21.15.3:6800/2826604878":"2024-09-07T14:58:29.450948+0000","172.21.15.3:0/2072436124":"2024-09-07T14:57:44.742750+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-06T15:03:45.100 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:44 smithi003 bash[19900]: cluster 2024-09-06T15:03:43.600358+0000 mgr.smithi003.ghjsjw (mgr.14197) 182 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:45.101 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:44 smithi003 bash[19900]: cluster 2024-09-06T15:03:43.600358+0000 mgr.smithi003.ghjsjw (mgr.14197) 182 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:45.794 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:45 smithi003 bash[19900]: audit 2024-09-06T15:03:45.088597+0000 mon.smithi003 (mon.0) 747 : audit [DBG] from='client.? 172.21.15.3:0/3019602697' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:03:45.794 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:45 smithi003 bash[19900]: audit 2024-09-06T15:03:45.088597+0000 mon.smithi003 (mon.0) 747 : audit [DBG] from='client.? 172.21.15.3:0/3019602697' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:03:45.796 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-06T15:03:45.797 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-06T15:03:45.797 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-06T15:03:45.798 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-06T15:03:45.798 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-06T15:03:45.799 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-06T15:03:45.799 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-06T15:03:45.800 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-06T15:03:45.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:45 smithi120 bash[24835]: audit 2024-09-06T15:03:45.088597+0000 mon.smithi003 (mon.0) 747 : audit [DBG] from='client.? 172.21.15.3:0/3019602697' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:03:45.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:45 smithi120 bash[24835]: audit 2024-09-06T15:03:45.088597+0000 mon.smithi003 (mon.0) 747 : audit [DBG] from='client.? 172.21.15.3:0/3019602697' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-06T15:03:46.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:46 smithi120 bash[24835]: cluster 2024-09-06T15:03:45.601081+0000 mgr.smithi003.ghjsjw (mgr.14197) 183 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:46.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:46 smithi120 bash[24835]: cluster 2024-09-06T15:03:45.601081+0000 mgr.smithi003.ghjsjw (mgr.14197) 183 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:47.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:46 smithi003 bash[19900]: cluster 2024-09-06T15:03:45.601081+0000 mgr.smithi003.ghjsjw (mgr.14197) 183 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:47.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:46 smithi003 bash[19900]: cluster 2024-09-06T15:03:45.601081+0000 mgr.smithi003.ghjsjw (mgr.14197) 183 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:48.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:48 smithi120 bash[24835]: cluster 2024-09-06T15:03:47.601704+0000 mgr.smithi003.ghjsjw (mgr.14197) 184 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:48.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:48 smithi120 bash[24835]: cluster 2024-09-06T15:03:47.601704+0000 mgr.smithi003.ghjsjw (mgr.14197) 184 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:49.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:48 smithi003 bash[19900]: cluster 2024-09-06T15:03:47.601704+0000 mgr.smithi003.ghjsjw (mgr.14197) 184 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:49.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:48 smithi003 bash[19900]: cluster 2024-09-06T15:03:47.601704+0000 mgr.smithi003.ghjsjw (mgr.14197) 184 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:50.759 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:50.760 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:50.760 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:50.764 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:50.764 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:50.764 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:50.765 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:50.766 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:03:50.973 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:50 smithi003 bash[19900]: cluster 2024-09-06T15:03:49.602368+0000 mgr.smithi003.ghjsjw (mgr.14197) 185 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:50.973 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:50 smithi003 bash[19900]: cluster 2024-09-06T15:03:49.602368+0000 mgr.smithi003.ghjsjw (mgr.14197) 185 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:50.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:50 smithi120 bash[24835]: cluster 2024-09-06T15:03:49.602368+0000 mgr.smithi003.ghjsjw (mgr.14197) 185 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:50.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:50 smithi120 bash[24835]: cluster 2024-09-06T15:03:49.602368+0000 mgr.smithi003.ghjsjw (mgr.14197) 185 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:52.942 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:52 smithi003 bash[19900]: cluster 2024-09-06T15:03:51.603036+0000 mgr.smithi003.ghjsjw (mgr.14197) 186 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:52.942 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:52 smithi003 bash[19900]: cluster 2024-09-06T15:03:51.603036+0000 mgr.smithi003.ghjsjw (mgr.14197) 186 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:52.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:52 smithi120 bash[24835]: cluster 2024-09-06T15:03:51.603036+0000 mgr.smithi003.ghjsjw (mgr.14197) 186 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:52.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:52 smithi120 bash[24835]: cluster 2024-09-06T15:03:51.603036+0000 mgr.smithi003.ghjsjw (mgr.14197) 186 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:54.593 INFO:teuthology.orchestra.run.smithi003.stdout:107374182421 2024-09-06T15:03:54.593 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-06T15:03:54.656 INFO:teuthology.orchestra.run.smithi003.stdout:94489280534 2024-09-06T15:03:54.657 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-06T15:03:54.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:54 smithi003 bash[19900]: cluster 2024-09-06T15:03:53.603692+0000 mgr.smithi003.ghjsjw (mgr.14197) 187 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:54.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:54 smithi003 bash[19900]: cluster 2024-09-06T15:03:53.603692+0000 mgr.smithi003.ghjsjw (mgr.14197) 187 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:54.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:54 smithi120 bash[24835]: cluster 2024-09-06T15:03:53.603692+0000 mgr.smithi003.ghjsjw (mgr.14197) 187 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:54.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:54 smithi120 bash[24835]: cluster 2024-09-06T15:03:53.603692+0000 mgr.smithi003.ghjsjw (mgr.14197) 187 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:55.720 INFO:teuthology.orchestra.run.smithi003.stdout:146028888082 2024-09-06T15:03:55.720 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-06T15:03:56.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:56 smithi120 bash[24835]: cluster 2024-09-06T15:03:55.604175+0000 mgr.smithi003.ghjsjw (mgr.14197) 188 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:56.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:56 smithi120 bash[24835]: cluster 2024-09-06T15:03:55.604175+0000 mgr.smithi003.ghjsjw (mgr.14197) 188 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:56 smithi003 bash[19900]: cluster 2024-09-06T15:03:55.604175+0000 mgr.smithi003.ghjsjw (mgr.14197) 188 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:56 smithi003 bash[19900]: cluster 2024-09-06T15:03:55.604175+0000 mgr.smithi003.ghjsjw (mgr.14197) 188 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:57.676 INFO:teuthology.orchestra.run.smithi003.stdout:85899345943 2024-09-06T15:03:57.677 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-06T15:03:57.798 INFO:teuthology.orchestra.run.smithi003.stdout:68719476760 2024-09-06T15:03:57.798 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-06T15:03:57.864 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:57 smithi003 bash[19900]: audit 2024-09-06T15:03:57.527013+0000 mon.smithi003 (mon.0) 748 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:57.864 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:57 smithi003 bash[19900]: audit 2024-09-06T15:03:57.527013+0000 mon.smithi003 (mon.0) 748 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:57.864 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:57 smithi003 bash[19900]: cluster 2024-09-06T15:03:57.604763+0000 mgr.smithi003.ghjsjw (mgr.14197) 189 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:57.864 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:03:57 smithi003 bash[19900]: cluster 2024-09-06T15:03:57.604763+0000 mgr.smithi003.ghjsjw (mgr.14197) 189 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:57.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:57 smithi120 bash[24835]: audit 2024-09-06T15:03:57.527013+0000 mon.smithi003 (mon.0) 748 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:57.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:57 smithi120 bash[24835]: audit 2024-09-06T15:03:57.527013+0000 mon.smithi003 (mon.0) 748 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:03:57.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:57 smithi120 bash[24835]: cluster 2024-09-06T15:03:57.604763+0000 mgr.smithi003.ghjsjw (mgr.14197) 189 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:57.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:03:57 smithi120 bash[24835]: cluster 2024-09-06T15:03:57.604763+0000 mgr.smithi003.ghjsjw (mgr.14197) 189 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:03:58.465 INFO:teuthology.orchestra.run.smithi003.stdout:120259084308 2024-09-06T15:03:58.466 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-06T15:03:58.927 INFO:teuthology.orchestra.run.smithi003.stdout:163208757267 2024-09-06T15:03:58.928 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-06T15:03:58.932 INFO:teuthology.orchestra.run.smithi003.stdout:128849018900 2024-09-06T15:03:58.932 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-06T15:04:00.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:00 smithi120 bash[24835]: cluster 2024-09-06T15:03:59.605462+0000 mgr.smithi003.ghjsjw (mgr.14197) 190 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:00.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:00 smithi120 bash[24835]: cluster 2024-09-06T15:03:59.605462+0000 mgr.smithi003.ghjsjw (mgr.14197) 190 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:01.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:00 smithi003 bash[19900]: cluster 2024-09-06T15:03:59.605462+0000 mgr.smithi003.ghjsjw (mgr.14197) 190 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:01.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:00 smithi003 bash[19900]: cluster 2024-09-06T15:03:59.605462+0000 mgr.smithi003.ghjsjw (mgr.14197) 190 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:01.437 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:01.438 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:02.461 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:02 smithi003 bash[19900]: cluster 2024-09-06T15:04:01.606120+0000 mgr.smithi003.ghjsjw (mgr.14197) 191 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:02 smithi003 bash[19900]: cluster 2024-09-06T15:04:01.606120+0000 mgr.smithi003.ghjsjw (mgr.14197) 191 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:02.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:02 smithi120 bash[24835]: cluster 2024-09-06T15:04:01.606120+0000 mgr.smithi003.ghjsjw (mgr.14197) 191 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:02.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:02 smithi120 bash[24835]: cluster 2024-09-06T15:04:01.606120+0000 mgr.smithi003.ghjsjw (mgr.14197) 191 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:03.493 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:03.493 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:03.494 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:03.494 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:03.494 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:04.402 INFO:teuthology.orchestra.run.smithi003.stdout:107374182423 2024-09-06T15:04:04.691 INFO:teuthology.orchestra.run.smithi003.stdout:94489280536 2024-09-06T15:04:04.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:04 smithi120 bash[24835]: cluster 2024-09-06T15:04:03.606796+0000 mgr.smithi003.ghjsjw (mgr.14197) 192 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:04.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:04 smithi120 bash[24835]: cluster 2024-09-06T15:04:03.606796+0000 mgr.smithi003.ghjsjw (mgr.14197) 192 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:04.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:04 smithi120 bash[24835]: audit 2024-09-06T15:04:04.404989+0000 mon.smithi003 (mon.0) 749 : audit [DBG] from='client.? 172.21.15.3:0/774756739' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-06T15:04:04.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:04 smithi120 bash[24835]: audit 2024-09-06T15:04:04.404989+0000 mon.smithi003 (mon.0) 749 : audit [DBG] from='client.? 172.21.15.3:0/774756739' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-06T15:04:05.071 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:04 smithi003 bash[19900]: cluster 2024-09-06T15:04:03.606796+0000 mgr.smithi003.ghjsjw (mgr.14197) 192 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:05.071 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:04 smithi003 bash[19900]: cluster 2024-09-06T15:04:03.606796+0000 mgr.smithi003.ghjsjw (mgr.14197) 192 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:05.071 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:04 smithi003 bash[19900]: audit 2024-09-06T15:04:04.404989+0000 mon.smithi003 (mon.0) 749 : audit [DBG] from='client.? 172.21.15.3:0/774756739' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-06T15:04:05.071 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:04 smithi003 bash[19900]: audit 2024-09-06T15:04:04.404989+0000 mon.smithi003 (mon.0) 749 : audit [DBG] from='client.? 172.21.15.3:0/774756739' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-06T15:04:05.741 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:05 smithi003 bash[19900]: audit 2024-09-06T15:04:04.693726+0000 mon.smithi003 (mon.0) 750 : audit [DBG] from='client.? 172.21.15.3:0/732462973' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-06T15:04:05.741 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:05 smithi003 bash[19900]: audit 2024-09-06T15:04:04.693726+0000 mon.smithi003 (mon.0) 750 : audit [DBG] from='client.? 172.21.15.3:0/732462973' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-06T15:04:05.797 INFO:teuthology.orchestra.run.smithi003.stdout:146028888085 2024-09-06T15:04:05.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:05 smithi120 bash[24835]: audit 2024-09-06T15:04:04.693726+0000 mon.smithi003 (mon.0) 750 : audit [DBG] from='client.? 172.21.15.3:0/732462973' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-06T15:04:05.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:05 smithi120 bash[24835]: audit 2024-09-06T15:04:04.693726+0000 mon.smithi003 (mon.0) 750 : audit [DBG] from='client.? 172.21.15.3:0/732462973' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-06T15:04:06.108 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182421 got 107374182423 for osd.4 2024-09-06T15:04:06.109 DEBUG:teuthology.parallel:result is None 2024-09-06T15:04:06.778 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280534 got 94489280536 for osd.2 2024-09-06T15:04:06.778 DEBUG:teuthology.parallel:result is None 2024-09-06T15:04:06.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:06 smithi120 bash[24835]: cluster 2024-09-06T15:04:05.607452+0000 mgr.smithi003.ghjsjw (mgr.14197) 193 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:06.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:06 smithi120 bash[24835]: cluster 2024-09-06T15:04:05.607452+0000 mgr.smithi003.ghjsjw (mgr.14197) 193 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:06.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:06 smithi120 bash[24835]: audit 2024-09-06T15:04:05.800239+0000 mon.smithi003 (mon.0) 751 : audit [DBG] from='client.? 172.21.15.3:0/2593525560' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-06T15:04:06.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:06 smithi120 bash[24835]: audit 2024-09-06T15:04:05.800239+0000 mon.smithi003 (mon.0) 751 : audit [DBG] from='client.? 172.21.15.3:0/2593525560' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-06T15:04:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:06 smithi003 bash[19900]: cluster 2024-09-06T15:04:05.607452+0000 mgr.smithi003.ghjsjw (mgr.14197) 193 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:06 smithi003 bash[19900]: cluster 2024-09-06T15:04:05.607452+0000 mgr.smithi003.ghjsjw (mgr.14197) 193 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:06 smithi003 bash[19900]: audit 2024-09-06T15:04:05.800239+0000 mon.smithi003 (mon.0) 751 : audit [DBG] from='client.? 172.21.15.3:0/2593525560' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-06T15:04:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:06 smithi003 bash[19900]: audit 2024-09-06T15:04:05.800239+0000 mon.smithi003 (mon.0) 751 : audit [DBG] from='client.? 172.21.15.3:0/2593525560' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-06T15:04:07.568 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888082 got 146028888085 for osd.5 2024-09-06T15:04:07.568 DEBUG:teuthology.parallel:result is None 2024-09-06T15:04:08.105 INFO:teuthology.orchestra.run.smithi003.stdout:68719476762 2024-09-06T15:04:08.167 INFO:teuthology.orchestra.run.smithi003.stdout:85899345945 2024-09-06T15:04:08.261 INFO:teuthology.orchestra.run.smithi003.stdout:128849018902 2024-09-06T15:04:08.449 INFO:teuthology.orchestra.run.smithi003.stdout:120259084311 2024-09-06T15:04:08.600 INFO:teuthology.orchestra.run.smithi003.stdout:163208757269 2024-09-06T15:04:08.787 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: cluster 2024-09-06T15:04:07.608107+0000 mgr.smithi003.ghjsjw (mgr.14197) 194 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: cluster 2024-09-06T15:04:07.608107+0000 mgr.smithi003.ghjsjw (mgr.14197) 194 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.106227+0000 mon.smithi003 (mon.0) 752 : audit [DBG] from='client.? 172.21.15.3:0/2517150256' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.106227+0000 mon.smithi003 (mon.0) 752 : audit [DBG] from='client.? 172.21.15.3:0/2517150256' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.169557+0000 mon.smithi003 (mon.0) 753 : audit [DBG] from='client.? 172.21.15.3:0/2875061471' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.169557+0000 mon.smithi003 (mon.0) 753 : audit [DBG] from='client.? 172.21.15.3:0/2875061471' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.264374+0000 mon.smithi003 (mon.0) 754 : audit [DBG] from='client.? 172.21.15.3:0/1705755891' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.264374+0000 mon.smithi003 (mon.0) 754 : audit [DBG] from='client.? 172.21.15.3:0/1705755891' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.451878+0000 mon.smithi003 (mon.0) 755 : audit [DBG] from='client.? 172.21.15.3:0/3340303212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.451878+0000 mon.smithi003 (mon.0) 755 : audit [DBG] from='client.? 172.21.15.3:0/3340303212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.602708+0000 mon.smithi003 (mon.0) 756 : audit [DBG] from='client.? 172.21.15.3:0/4112534477' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-06T15:04:08.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:08 smithi003 bash[19900]: audit 2024-09-06T15:04:08.602708+0000 mon.smithi003 (mon.0) 756 : audit [DBG] from='client.? 172.21.15.3:0/4112534477' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-06T15:04:08.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: cluster 2024-09-06T15:04:07.608107+0000 mgr.smithi003.ghjsjw (mgr.14197) 194 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:08.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: cluster 2024-09-06T15:04:07.608107+0000 mgr.smithi003.ghjsjw (mgr.14197) 194 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.106227+0000 mon.smithi003 (mon.0) 752 : audit [DBG] from='client.? 172.21.15.3:0/2517150256' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.106227+0000 mon.smithi003 (mon.0) 752 : audit [DBG] from='client.? 172.21.15.3:0/2517150256' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.169557+0000 mon.smithi003 (mon.0) 753 : audit [DBG] from='client.? 172.21.15.3:0/2875061471' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.169557+0000 mon.smithi003 (mon.0) 753 : audit [DBG] from='client.? 172.21.15.3:0/2875061471' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.264374+0000 mon.smithi003 (mon.0) 754 : audit [DBG] from='client.? 172.21.15.3:0/1705755891' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.264374+0000 mon.smithi003 (mon.0) 754 : audit [DBG] from='client.? 172.21.15.3:0/1705755891' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.451878+0000 mon.smithi003 (mon.0) 755 : audit [DBG] from='client.? 172.21.15.3:0/3340303212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.451878+0000 mon.smithi003 (mon.0) 755 : audit [DBG] from='client.? 172.21.15.3:0/3340303212' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.602708+0000 mon.smithi003 (mon.0) 756 : audit [DBG] from='client.? 172.21.15.3:0/4112534477' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-06T15:04:08.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:08 smithi120 bash[24835]: audit 2024-09-06T15:04:08.602708+0000 mon.smithi003 (mon.0) 756 : audit [DBG] from='client.? 172.21.15.3:0/4112534477' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-06T15:04:09.831 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018900 got 128849018902 for osd.6 2024-09-06T15:04:09.831 DEBUG:teuthology.parallel:result is None 2024-09-06T15:04:09.849 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476760 got 68719476762 for osd.0 2024-09-06T15:04:09.849 DEBUG:teuthology.parallel:result is None 2024-09-06T15:04:10.149 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345943 got 85899345945 for osd.1 2024-09-06T15:04:10.149 DEBUG:teuthology.parallel:result is None 2024-09-06T15:04:10.748 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757267 got 163208757269 for osd.7 2024-09-06T15:04:10.748 DEBUG:teuthology.parallel:result is None 2024-09-06T15:04:10.893 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084308 got 120259084311 for osd.3 2024-09-06T15:04:10.894 DEBUG:teuthology.parallel:result is None 2024-09-06T15:04:10.894 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-06T15:04:10.894 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph pg dump --format=json 2024-09-06T15:04:10.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:10 smithi120 bash[24835]: cluster 2024-09-06T15:04:09.608784+0000 mgr.smithi003.ghjsjw (mgr.14197) 195 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:10.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:10 smithi120 bash[24835]: cluster 2024-09-06T15:04:09.608784+0000 mgr.smithi003.ghjsjw (mgr.14197) 195 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:11.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:10 smithi003 bash[19900]: cluster 2024-09-06T15:04:09.608784+0000 mgr.smithi003.ghjsjw (mgr.14197) 195 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:11.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:10 smithi003 bash[19900]: cluster 2024-09-06T15:04:09.608784+0000 mgr.smithi003.ghjsjw (mgr.14197) 195 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:12.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:12 smithi120 bash[24835]: cluster 2024-09-06T15:04:11.609486+0000 mgr.smithi003.ghjsjw (mgr.14197) 196 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:12.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:12 smithi120 bash[24835]: cluster 2024-09-06T15:04:11.609486+0000 mgr.smithi003.ghjsjw (mgr.14197) 196 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:12.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:12 smithi120 bash[24835]: audit 2024-09-06T15:04:12.527421+0000 mon.smithi003 (mon.0) 757 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:12.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:12 smithi120 bash[24835]: audit 2024-09-06T15:04:12.527421+0000 mon.smithi003 (mon.0) 757 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:12 smithi003 bash[19900]: cluster 2024-09-06T15:04:11.609486+0000 mgr.smithi003.ghjsjw (mgr.14197) 196 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:12 smithi003 bash[19900]: cluster 2024-09-06T15:04:11.609486+0000 mgr.smithi003.ghjsjw (mgr.14197) 196 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:12 smithi003 bash[19900]: audit 2024-09-06T15:04:12.527421+0000 mon.smithi003 (mon.0) 757 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:12 smithi003 bash[19900]: audit 2024-09-06T15:04:12.527421+0000 mon.smithi003 (mon.0) 757 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:14.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:14 smithi120 bash[24835]: cluster 2024-09-06T15:04:13.610125+0000 mgr.smithi003.ghjsjw (mgr.14197) 197 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:14.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:14 smithi120 bash[24835]: cluster 2024-09-06T15:04:13.610125+0000 mgr.smithi003.ghjsjw (mgr.14197) 197 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:14 smithi003 bash[19900]: cluster 2024-09-06T15:04:13.610125+0000 mgr.smithi003.ghjsjw (mgr.14197) 197 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:14 smithi003 bash[19900]: cluster 2024-09-06T15:04:13.610125+0000 mgr.smithi003.ghjsjw (mgr.14197) 197 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:15.715 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:16.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:16 smithi003 bash[19900]: cluster 2024-09-06T15:04:15.610735+0000 mgr.smithi003.ghjsjw (mgr.14197) 198 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:16.968 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:16 smithi003 bash[19900]: cluster 2024-09-06T15:04:15.610735+0000 mgr.smithi003.ghjsjw (mgr.14197) 198 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:16.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:16 smithi120 bash[24835]: cluster 2024-09-06T15:04:15.610735+0000 mgr.smithi003.ghjsjw (mgr.14197) 198 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:16.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:16 smithi120 bash[24835]: cluster 2024-09-06T15:04:15.610735+0000 mgr.smithi003.ghjsjw (mgr.14197) 198 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:17.305 INFO:teuthology.orchestra.run.smithi003.stderr:dumped all 2024-09-06T15:04:17.305 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:04:17.981 INFO:teuthology.orchestra.run.smithi003.stdout:{"pg_ready":true,"pg_map":{"version":162,"stamp":"2024-09-06T15:04:15.610398+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":233740,"kb_used_data":5004,"kb_used_omap":12,"kb_used_meta":228531,"kb_avail":749694708,"statfs":{"total":767926730752,"available":767687380992,"internally_reserved":0,"allocated":5124096,"data_stored":3111632,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12750,"internal_metadata":234016306},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003933"},"pg_stats":[{"pgid":"1.0","version":"25'152","reported_seq":209,"reported_epoch":42,"state":"active+clean","last_fresh":"2024-09-06T15:02:42.097038+0000","last_change":"2024-09-06T15:02:42.096530+0000","last_active":"2024-09-06T15:02:42.097038+0000","last_peered":"2024-09-06T15:02:42.097038+0000","last_clean":"2024-09-06T15:02:42.097038+0000","last_became_active":"2024-09-06T15:02:42.096040+0000","last_became_peered":"2024-09-06T15:02:42.096040+0000","last_unstale":"2024-09-06T15:02:42.097038+0000","last_undegraded":"2024-09-06T15:02:42.097038+0000","last_fullsized":"2024-09-06T15:02:42.097038+0000","mapping_epoch":41,"log_start":"0'0","ondisk_log_start":"0'0","created":23,"last_epoch_clean":42,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-06T15:02:21.969552+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-06T15:02:21.969552+0000","last_clean_scrub_stamp":"2024-09-06T15:02:21.969552+0000","objects_scrubbed":0,"log_size":152,"log_dups_size":0,"ondisk_log_size":152,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-07T18:04:38.822245+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":38,"seq":163208757271,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32180,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708876,"statfs":{"total":95990841344,"available":95957889024,"internally_reserved":0,"allocated":1011712,"data_stored":757934,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":31914442},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":34,"seq":146028888087,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713620,"statfs":{"total":95990841344,"available":95962746880,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":30,"seq":128849018904,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27440,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713616,"statfs":{"total":95990841344,"available":95962742784,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":28,"seq":120259084312,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28024,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713032,"statfs":{"total":95990841344,"available":95962144768,"internally_reserved":0,"allocated":1011712,"data_stored":757934,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":25,"seq":107374182426,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27444,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713612,"statfs":{"total":95990841344,"available":95962738688,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":22,"seq":94489280538,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31604,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709452,"statfs":{"total":95990841344,"available":95958478848,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":20,"seq":85899345947,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709460,"statfs":{"total":95990841344,"available":95958487040,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476764,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28016,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713040,"statfs":{"total":95990841344,"available":95962152960,"internally_reserved":0,"allocated":1011712,"data_stored":757934,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-06T15:04:17.982 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph pg dump --format=json 2024-09-06T15:04:18.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:18 smithi120 bash[24835]: audit 2024-09-06T15:04:17.306264+0000 mgr.smithi003.ghjsjw (mgr.14197) 199 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T15:04:18.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:18 smithi120 bash[24835]: audit 2024-09-06T15:04:17.306264+0000 mgr.smithi003.ghjsjw (mgr.14197) 199 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T15:04:18.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:18 smithi120 bash[24835]: cluster 2024-09-06T15:04:17.611374+0000 mgr.smithi003.ghjsjw (mgr.14197) 200 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:18.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:18 smithi120 bash[24835]: cluster 2024-09-06T15:04:17.611374+0000 mgr.smithi003.ghjsjw (mgr.14197) 200 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:18 smithi003 bash[19900]: audit 2024-09-06T15:04:17.306264+0000 mgr.smithi003.ghjsjw (mgr.14197) 199 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T15:04:19.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:18 smithi003 bash[19900]: audit 2024-09-06T15:04:17.306264+0000 mgr.smithi003.ghjsjw (mgr.14197) 199 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T15:04:19.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:18 smithi003 bash[19900]: cluster 2024-09-06T15:04:17.611374+0000 mgr.smithi003.ghjsjw (mgr.14197) 200 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:19.152 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:18 smithi003 bash[19900]: cluster 2024-09-06T15:04:17.611374+0000 mgr.smithi003.ghjsjw (mgr.14197) 200 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:20.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:20 smithi120 bash[24835]: cluster 2024-09-06T15:04:19.612047+0000 mgr.smithi003.ghjsjw (mgr.14197) 201 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:20.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:20 smithi120 bash[24835]: cluster 2024-09-06T15:04:19.612047+0000 mgr.smithi003.ghjsjw (mgr.14197) 201 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:21.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:20 smithi003 bash[19900]: cluster 2024-09-06T15:04:19.612047+0000 mgr.smithi003.ghjsjw (mgr.14197) 201 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:21.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:20 smithi003 bash[19900]: cluster 2024-09-06T15:04:19.612047+0000 mgr.smithi003.ghjsjw (mgr.14197) 201 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:22.814 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:22.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:22 smithi120 bash[24835]: cluster 2024-09-06T15:04:21.612873+0000 mgr.smithi003.ghjsjw (mgr.14197) 202 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:22.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:22 smithi120 bash[24835]: cluster 2024-09-06T15:04:21.612873+0000 mgr.smithi003.ghjsjw (mgr.14197) 202 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:22 smithi003 bash[19900]: cluster 2024-09-06T15:04:21.612873+0000 mgr.smithi003.ghjsjw (mgr.14197) 202 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:22 smithi003 bash[19900]: cluster 2024-09-06T15:04:21.612873+0000 mgr.smithi003.ghjsjw (mgr.14197) 202 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:24.332 INFO:teuthology.orchestra.run.smithi003.stderr:dumped all 2024-09-06T15:04:24.332 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:04:24.971 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:24 smithi003 bash[19900]: cluster 2024-09-06T15:04:23.613558+0000 mgr.smithi003.ghjsjw (mgr.14197) 203 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:24.972 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:24 smithi003 bash[19900]: cluster 2024-09-06T15:04:23.613558+0000 mgr.smithi003.ghjsjw (mgr.14197) 203 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:24.973 INFO:teuthology.orchestra.run.smithi003.stdout:{"pg_ready":true,"pg_map":{"version":166,"stamp":"2024-09-06T15:04:23.613239+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":233740,"kb_used_data":5004,"kb_used_omap":12,"kb_used_meta":228531,"kb_avail":749694708,"statfs":{"total":767926730752,"available":767687380992,"internally_reserved":0,"allocated":5124096,"data_stored":3111632,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12750,"internal_metadata":234016306},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.004081"},"pg_stats":[{"pgid":"1.0","version":"25'152","reported_seq":209,"reported_epoch":42,"state":"active+clean","last_fresh":"2024-09-06T15:02:42.097038+0000","last_change":"2024-09-06T15:02:42.096530+0000","last_active":"2024-09-06T15:02:42.097038+0000","last_peered":"2024-09-06T15:02:42.097038+0000","last_clean":"2024-09-06T15:02:42.097038+0000","last_became_active":"2024-09-06T15:02:42.096040+0000","last_became_peered":"2024-09-06T15:02:42.096040+0000","last_unstale":"2024-09-06T15:02:42.097038+0000","last_undegraded":"2024-09-06T15:02:42.097038+0000","last_fullsized":"2024-09-06T15:02:42.097038+0000","mapping_epoch":41,"log_start":"0'0","ondisk_log_start":"0'0","created":23,"last_epoch_clean":42,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-06T15:02:21.969552+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-06T15:02:21.969552+0000","last_clean_scrub_stamp":"2024-09-06T15:02:21.969552+0000","objects_scrubbed":0,"log_size":152,"log_dups_size":0,"ondisk_log_size":152,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-07T18:04:38.822245+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":106,"num_read_kb":91,"num_write":189,"num_write_kb":3716,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":152,"ondisk_log_size":152,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":38,"seq":163208757272,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32180,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708876,"statfs":{"total":95990841344,"available":95957889024,"internally_reserved":0,"allocated":1011712,"data_stored":757934,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":31914442},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":34,"seq":146028888088,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713620,"statfs":{"total":95990841344,"available":95962746880,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":30,"seq":128849018905,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27440,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713616,"statfs":{"total":95990841344,"available":95962742784,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":28,"seq":120259084314,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28024,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713032,"statfs":{"total":95990841344,"available":95962144768,"internally_reserved":0,"allocated":1011712,"data_stored":757934,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":25,"seq":107374182427,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27444,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713612,"statfs":{"total":95990841344,"available":95962738688,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":22,"seq":94489280540,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31604,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709452,"statfs":{"total":95990841344,"available":95958478848,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":20,"seq":85899345948,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709460,"statfs":{"total":95990841344,"available":95958487040,"internally_reserved":0,"allocated":417792,"data_stored":167566,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":16,"seq":68719476765,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28016,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713040,"statfs":{"total":95990841344,"available":95962152960,"internally_reserved":0,"allocated":1011712,"data_stored":757934,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-06T15:04:24.973 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-06T15:04:24.973 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-06T15:04:24.973 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-06T15:04:24.974 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:04:24.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:24 smithi120 bash[24835]: cluster 2024-09-06T15:04:23.613558+0000 mgr.smithi003.ghjsjw (mgr.14197) 203 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:24.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:24 smithi120 bash[24835]: cluster 2024-09-06T15:04:23.613558+0000 mgr.smithi003.ghjsjw (mgr.14197) 203 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:25.877 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:25 smithi003 bash[19900]: audit 2024-09-06T15:04:24.333167+0000 mgr.smithi003.ghjsjw (mgr.14197) 204 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T15:04:25.877 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:25 smithi003 bash[19900]: audit 2024-09-06T15:04:24.333167+0000 mgr.smithi003.ghjsjw (mgr.14197) 204 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T15:04:25.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:25 smithi120 bash[24835]: audit 2024-09-06T15:04:24.333167+0000 mgr.smithi003.ghjsjw (mgr.14197) 204 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T15:04:25.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:25 smithi120 bash[24835]: audit 2024-09-06T15:04:24.333167+0000 mgr.smithi003.ghjsjw (mgr.14197) 204 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-06T15:04:26.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:26 smithi120 bash[24835]: cluster 2024-09-06T15:04:25.614232+0000 mgr.smithi003.ghjsjw (mgr.14197) 205 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:26.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:26 smithi120 bash[24835]: cluster 2024-09-06T15:04:25.614232+0000 mgr.smithi003.ghjsjw (mgr.14197) 205 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:26 smithi003 bash[19900]: cluster 2024-09-06T15:04:25.614232+0000 mgr.smithi003.ghjsjw (mgr.14197) 205 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:26 smithi003 bash[19900]: cluster 2024-09-06T15:04:25.614232+0000 mgr.smithi003.ghjsjw (mgr.14197) 205 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:27.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:27 smithi120 bash[24835]: audit 2024-09-06T15:04:27.527886+0000 mon.smithi003 (mon.0) 758 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:27.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:27 smithi120 bash[24835]: audit 2024-09-06T15:04:27.527886+0000 mon.smithi003 (mon.0) 758 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:27 smithi003 bash[19900]: audit 2024-09-06T15:04:27.527886+0000 mon.smithi003 (mon.0) 758 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:27 smithi003 bash[19900]: audit 2024-09-06T15:04:27.527886+0000 mon.smithi003 (mon.0) 758 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:28.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:28 smithi120 bash[24835]: cluster 2024-09-06T15:04:27.614833+0000 mgr.smithi003.ghjsjw (mgr.14197) 206 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:28.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:28 smithi120 bash[24835]: cluster 2024-09-06T15:04:27.614833+0000 mgr.smithi003.ghjsjw (mgr.14197) 206 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:28.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:28 smithi120 bash[24835]: audit 2024-09-06T15:04:28.082131+0000 mon.smithi003 (mon.0) 759 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:04:28.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:28 smithi120 bash[24835]: audit 2024-09-06T15:04:28.082131+0000 mon.smithi003 (mon.0) 759 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:04:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:28 smithi003 bash[19900]: cluster 2024-09-06T15:04:27.614833+0000 mgr.smithi003.ghjsjw (mgr.14197) 206 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:28 smithi003 bash[19900]: cluster 2024-09-06T15:04:27.614833+0000 mgr.smithi003.ghjsjw (mgr.14197) 206 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:28 smithi003 bash[19900]: audit 2024-09-06T15:04:28.082131+0000 mon.smithi003 (mon.0) 759 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:04:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:28 smithi003 bash[19900]: audit 2024-09-06T15:04:28.082131+0000 mon.smithi003 (mon.0) 759 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:04:29.799 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:29 smithi003 bash[19900]: cluster 2024-09-06T15:04:29.615632+0000 mgr.smithi003.ghjsjw (mgr.14197) 207 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:29 smithi003 bash[19900]: cluster 2024-09-06T15:04:29.615632+0000 mgr.smithi003.ghjsjw (mgr.14197) 207 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:30.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:29 smithi120 bash[24835]: cluster 2024-09-06T15:04:29.615632+0000 mgr.smithi003.ghjsjw (mgr.14197) 207 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:30.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:29 smithi120 bash[24835]: cluster 2024-09-06T15:04:29.615632+0000 mgr.smithi003.ghjsjw (mgr.14197) 207 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:31.363 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:04:31.363 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:04:31.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:31 smithi003 bash[19900]: audit 2024-09-06T15:04:31.365554+0000 mon.smithi003 (mon.0) 760 : audit [DBG] from='client.? 172.21.15.3:0/3232542315' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:31.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:31 smithi003 bash[19900]: audit 2024-09-06T15:04:31.365554+0000 mon.smithi003 (mon.0) 760 : audit [DBG] from='client.? 172.21.15.3:0/3232542315' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:31.743 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:31 smithi120 bash[24835]: audit 2024-09-06T15:04:31.365554+0000 mon.smithi003 (mon.0) 760 : audit [DBG] from='client.? 172.21.15.3:0/3232542315' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:31.743 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:31 smithi120 bash[24835]: audit 2024-09-06T15:04:31.365554+0000 mon.smithi003 (mon.0) 760 : audit [DBG] from='client.? 172.21.15.3:0/3232542315' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:32.743 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:32 smithi120 bash[24835]: cluster 2024-09-06T15:04:31.616308+0000 mgr.smithi003.ghjsjw (mgr.14197) 208 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:32.743 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:32 smithi120 bash[24835]: cluster 2024-09-06T15:04:31.616308+0000 mgr.smithi003.ghjsjw (mgr.14197) 208 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:32.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:32 smithi003 bash[19900]: cluster 2024-09-06T15:04:31.616308+0000 mgr.smithi003.ghjsjw (mgr.14197) 208 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:32.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:32 smithi003 bash[19900]: cluster 2024-09-06T15:04:31.616308+0000 mgr.smithi003.ghjsjw (mgr.14197) 208 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:34.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: cluster 2024-09-06T15:04:33.616667+0000 mgr.smithi003.ghjsjw (mgr.14197) 209 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:34.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: cluster 2024-09-06T15:04:33.616667+0000 mgr.smithi003.ghjsjw (mgr.14197) 209 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:34.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:33.638187+0000 mon.smithi003 (mon.0) 761 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:33.638187+0000 mon.smithi003 (mon.0) 761 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:33.644585+0000 mon.smithi003 (mon.0) 762 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:33.644585+0000 mon.smithi003 (mon.0) 762 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:33.795929+0000 mon.smithi003 (mon.0) 763 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:33.795929+0000 mon.smithi003 (mon.0) 763 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:33.800654+0000 mon.smithi003 (mon.0) 764 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:33.800654+0000 mon.smithi003 (mon.0) 764 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:34.437894+0000 mon.smithi003 (mon.0) 765 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:34.437894+0000 mon.smithi003 (mon.0) 765 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:34.439130+0000 mon.smithi003 (mon.0) 766 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:34.439130+0000 mon.smithi003 (mon.0) 766 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:34.446102+0000 mon.smithi003 (mon.0) 767 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:34.446102+0000 mon.smithi003 (mon.0) 767 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:34.449887+0000 mon.smithi003 (mon.0) 768 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:04:34.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:34 smithi003 bash[19900]: audit 2024-09-06T15:04:34.449887+0000 mon.smithi003 (mon.0) 768 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:04:34.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: cluster 2024-09-06T15:04:33.616667+0000 mgr.smithi003.ghjsjw (mgr.14197) 209 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:34.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: cluster 2024-09-06T15:04:33.616667+0000 mgr.smithi003.ghjsjw (mgr.14197) 209 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:34.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:33.638187+0000 mon.smithi003 (mon.0) 761 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:33.638187+0000 mon.smithi003 (mon.0) 761 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:33.644585+0000 mon.smithi003 (mon.0) 762 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:33.644585+0000 mon.smithi003 (mon.0) 762 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:33.795929+0000 mon.smithi003 (mon.0) 763 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:33.795929+0000 mon.smithi003 (mon.0) 763 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:33.800654+0000 mon.smithi003 (mon.0) 764 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:33.800654+0000 mon.smithi003 (mon.0) 764 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:34.437894+0000 mon.smithi003 (mon.0) 765 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:34.437894+0000 mon.smithi003 (mon.0) 765 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:34.439130+0000 mon.smithi003 (mon.0) 766 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:34.439130+0000 mon.smithi003 (mon.0) 766 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:34.446102+0000 mon.smithi003 (mon.0) 767 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:34.446102+0000 mon.smithi003 (mon.0) 767 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:04:34.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:34.449887+0000 mon.smithi003 (mon.0) 768 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:04:34.995 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:34 smithi120 bash[24835]: audit 2024-09-06T15:04:34.449887+0000 mon.smithi003 (mon.0) 768 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:04:35.062 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:04:36.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:36 smithi003 bash[19900]: cluster 2024-09-06T15:04:35.617300+0000 mgr.smithi003.ghjsjw (mgr.14197) 210 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:36.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:36 smithi003 bash[19900]: cluster 2024-09-06T15:04:35.617300+0000 mgr.smithi003.ghjsjw (mgr.14197) 210 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:36.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:36 smithi120 bash[24835]: cluster 2024-09-06T15:04:35.617300+0000 mgr.smithi003.ghjsjw (mgr.14197) 210 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:36.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:36 smithi120 bash[24835]: cluster 2024-09-06T15:04:35.617300+0000 mgr.smithi003.ghjsjw (mgr.14197) 210 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:38.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:38 smithi003 bash[19900]: cluster 2024-09-06T15:04:37.617946+0000 mgr.smithi003.ghjsjw (mgr.14197) 211 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:38.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:38 smithi003 bash[19900]: cluster 2024-09-06T15:04:37.617946+0000 mgr.smithi003.ghjsjw (mgr.14197) 211 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:38.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:38 smithi120 bash[24835]: cluster 2024-09-06T15:04:37.617946+0000 mgr.smithi003.ghjsjw (mgr.14197) 211 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:38.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:38 smithi120 bash[24835]: cluster 2024-09-06T15:04:37.617946+0000 mgr.smithi003.ghjsjw (mgr.14197) 211 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:39.888 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:40.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:40 smithi120 bash[24835]: cluster 2024-09-06T15:04:39.618616+0000 mgr.smithi003.ghjsjw (mgr.14197) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:40.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:40 smithi120 bash[24835]: cluster 2024-09-06T15:04:39.618616+0000 mgr.smithi003.ghjsjw (mgr.14197) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:41.098 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:40 smithi003 bash[19900]: cluster 2024-09-06T15:04:39.618616+0000 mgr.smithi003.ghjsjw (mgr.14197) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:41.098 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:40 smithi003 bash[19900]: cluster 2024-09-06T15:04:39.618616+0000 mgr.smithi003.ghjsjw (mgr.14197) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:41.447 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:04:41.447 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:04:41.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:41 smithi003 bash[19900]: audit 2024-09-06T15:04:41.449190+0000 mon.smithi003 (mon.0) 769 : audit [DBG] from='client.? 172.21.15.3:0/3524750087' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:41.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:41 smithi003 bash[19900]: audit 2024-09-06T15:04:41.449190+0000 mon.smithi003 (mon.0) 769 : audit [DBG] from='client.? 172.21.15.3:0/3524750087' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:41.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:41 smithi120 bash[24835]: audit 2024-09-06T15:04:41.449190+0000 mon.smithi003 (mon.0) 769 : audit [DBG] from='client.? 172.21.15.3:0/3524750087' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:41.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:41 smithi120 bash[24835]: audit 2024-09-06T15:04:41.449190+0000 mon.smithi003 (mon.0) 769 : audit [DBG] from='client.? 172.21.15.3:0/3524750087' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:42.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:42 smithi120 bash[24835]: cluster 2024-09-06T15:04:41.619240+0000 mgr.smithi003.ghjsjw (mgr.14197) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:42.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:42 smithi120 bash[24835]: cluster 2024-09-06T15:04:41.619240+0000 mgr.smithi003.ghjsjw (mgr.14197) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:42.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:42 smithi120 bash[24835]: audit 2024-09-06T15:04:42.528311+0000 mon.smithi003 (mon.0) 770 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:42.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:42 smithi120 bash[24835]: audit 2024-09-06T15:04:42.528311+0000 mon.smithi003 (mon.0) 770 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:42 smithi003 bash[19900]: cluster 2024-09-06T15:04:41.619240+0000 mgr.smithi003.ghjsjw (mgr.14197) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:42 smithi003 bash[19900]: cluster 2024-09-06T15:04:41.619240+0000 mgr.smithi003.ghjsjw (mgr.14197) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:42 smithi003 bash[19900]: audit 2024-09-06T15:04:42.528311+0000 mon.smithi003 (mon.0) 770 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:42 smithi003 bash[19900]: audit 2024-09-06T15:04:42.528311+0000 mon.smithi003 (mon.0) 770 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:44 smithi120 bash[24835]: cluster 2024-09-06T15:04:43.619858+0000 mgr.smithi003.ghjsjw (mgr.14197) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:44 smithi120 bash[24835]: cluster 2024-09-06T15:04:43.619858+0000 mgr.smithi003.ghjsjw (mgr.14197) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:45.139 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:04:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:44 smithi003 bash[19900]: cluster 2024-09-06T15:04:43.619858+0000 mgr.smithi003.ghjsjw (mgr.14197) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:44 smithi003 bash[19900]: cluster 2024-09-06T15:04:43.619858+0000 mgr.smithi003.ghjsjw (mgr.14197) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:46.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:46 smithi003 bash[19900]: cluster 2024-09-06T15:04:45.620470+0000 mgr.smithi003.ghjsjw (mgr.14197) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:46.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:46 smithi003 bash[19900]: cluster 2024-09-06T15:04:45.620470+0000 mgr.smithi003.ghjsjw (mgr.14197) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:46.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:46 smithi120 bash[24835]: cluster 2024-09-06T15:04:45.620470+0000 mgr.smithi003.ghjsjw (mgr.14197) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:46.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:46 smithi120 bash[24835]: cluster 2024-09-06T15:04:45.620470+0000 mgr.smithi003.ghjsjw (mgr.14197) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:48.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:48 smithi120 bash[24835]: cluster 2024-09-06T15:04:47.621139+0000 mgr.smithi003.ghjsjw (mgr.14197) 216 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:48.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:48 smithi120 bash[24835]: cluster 2024-09-06T15:04:47.621139+0000 mgr.smithi003.ghjsjw (mgr.14197) 216 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:49.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:48 smithi003 bash[19900]: cluster 2024-09-06T15:04:47.621139+0000 mgr.smithi003.ghjsjw (mgr.14197) 216 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:49.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:48 smithi003 bash[19900]: cluster 2024-09-06T15:04:47.621139+0000 mgr.smithi003.ghjsjw (mgr.14197) 216 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:49.969 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:04:50.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:50 smithi120 bash[24835]: cluster 2024-09-06T15:04:49.621819+0000 mgr.smithi003.ghjsjw (mgr.14197) 217 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:50.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:50 smithi120 bash[24835]: cluster 2024-09-06T15:04:49.621819+0000 mgr.smithi003.ghjsjw (mgr.14197) 217 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:51.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:50 smithi003 bash[19900]: cluster 2024-09-06T15:04:49.621819+0000 mgr.smithi003.ghjsjw (mgr.14197) 217 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:51.096 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:50 smithi003 bash[19900]: cluster 2024-09-06T15:04:49.621819+0000 mgr.smithi003.ghjsjw (mgr.14197) 217 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:51.465 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:04:51.465 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:04:51.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:51 smithi003 bash[19900]: audit 2024-09-06T15:04:51.467740+0000 mon.smithi003 (mon.0) 771 : audit [DBG] from='client.? 172.21.15.3:0/1390701224' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:51.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:51 smithi003 bash[19900]: audit 2024-09-06T15:04:51.467740+0000 mon.smithi003 (mon.0) 771 : audit [DBG] from='client.? 172.21.15.3:0/1390701224' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:51.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:51 smithi120 bash[24835]: audit 2024-09-06T15:04:51.467740+0000 mon.smithi003 (mon.0) 771 : audit [DBG] from='client.? 172.21.15.3:0/1390701224' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:51.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:51 smithi120 bash[24835]: audit 2024-09-06T15:04:51.467740+0000 mon.smithi003 (mon.0) 771 : audit [DBG] from='client.? 172.21.15.3:0/1390701224' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:04:52.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:52 smithi120 bash[24835]: cluster 2024-09-06T15:04:51.622429+0000 mgr.smithi003.ghjsjw (mgr.14197) 218 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:52.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:52 smithi120 bash[24835]: cluster 2024-09-06T15:04:51.622429+0000 mgr.smithi003.ghjsjw (mgr.14197) 218 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:52 smithi003 bash[19900]: cluster 2024-09-06T15:04:51.622429+0000 mgr.smithi003.ghjsjw (mgr.14197) 218 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:52 smithi003 bash[19900]: cluster 2024-09-06T15:04:51.622429+0000 mgr.smithi003.ghjsjw (mgr.14197) 218 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:54.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:54 smithi120 bash[24835]: cluster 2024-09-06T15:04:53.623157+0000 mgr.smithi003.ghjsjw (mgr.14197) 219 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:54.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:54 smithi120 bash[24835]: cluster 2024-09-06T15:04:53.623157+0000 mgr.smithi003.ghjsjw (mgr.14197) 219 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:55.096 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:04:55.107 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:54 smithi003 bash[19900]: cluster 2024-09-06T15:04:53.623157+0000 mgr.smithi003.ghjsjw (mgr.14197) 219 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:55.107 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:54 smithi003 bash[19900]: cluster 2024-09-06T15:04:53.623157+0000 mgr.smithi003.ghjsjw (mgr.14197) 219 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:56.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:56 smithi120 bash[24835]: cluster 2024-09-06T15:04:55.623886+0000 mgr.smithi003.ghjsjw (mgr.14197) 220 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:56.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:56 smithi120 bash[24835]: cluster 2024-09-06T15:04:55.623886+0000 mgr.smithi003.ghjsjw (mgr.14197) 220 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:56 smithi003 bash[19900]: cluster 2024-09-06T15:04:55.623886+0000 mgr.smithi003.ghjsjw (mgr.14197) 220 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:56 smithi003 bash[19900]: cluster 2024-09-06T15:04:55.623886+0000 mgr.smithi003.ghjsjw (mgr.14197) 220 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:57.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:57 smithi120 bash[24835]: audit 2024-09-06T15:04:57.528772+0000 mon.smithi003 (mon.0) 772 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:57.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:57 smithi120 bash[24835]: audit 2024-09-06T15:04:57.528772+0000 mon.smithi003 (mon.0) 772 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:57 smithi003 bash[19900]: audit 2024-09-06T15:04:57.528772+0000 mon.smithi003 (mon.0) 772 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:57 smithi003 bash[19900]: audit 2024-09-06T15:04:57.528772+0000 mon.smithi003 (mon.0) 772 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:04:58.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:58 smithi120 bash[24835]: cluster 2024-09-06T15:04:57.624507+0000 mgr.smithi003.ghjsjw (mgr.14197) 221 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:58.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:04:58 smithi120 bash[24835]: cluster 2024-09-06T15:04:57.624507+0000 mgr.smithi003.ghjsjw (mgr.14197) 221 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:58 smithi003 bash[19900]: cluster 2024-09-06T15:04:57.624507+0000 mgr.smithi003.ghjsjw (mgr.14197) 221 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:04:58 smithi003 bash[19900]: cluster 2024-09-06T15:04:57.624507+0000 mgr.smithi003.ghjsjw (mgr.14197) 221 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:04:59.918 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:05:00.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:00 smithi120 bash[24835]: cluster 2024-09-06T15:04:59.628910+0000 mgr.smithi003.ghjsjw (mgr.14197) 222 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:00.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:00 smithi120 bash[24835]: cluster 2024-09-06T15:04:59.628910+0000 mgr.smithi003.ghjsjw (mgr.14197) 222 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:01.092 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:00 smithi003 bash[19900]: cluster 2024-09-06T15:04:59.628910+0000 mgr.smithi003.ghjsjw (mgr.14197) 222 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:01.092 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:00 smithi003 bash[19900]: cluster 2024-09-06T15:04:59.628910+0000 mgr.smithi003.ghjsjw (mgr.14197) 222 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:01.472 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:05:01.472 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:05:01.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:01 smithi003 bash[19900]: audit 2024-09-06T15:05:01.474541+0000 mon.smithi003 (mon.0) 773 : audit [DBG] from='client.? 172.21.15.3:0/4034333555' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:01.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:01 smithi003 bash[19900]: audit 2024-09-06T15:05:01.474541+0000 mon.smithi003 (mon.0) 773 : audit [DBG] from='client.? 172.21.15.3:0/4034333555' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:01.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:01 smithi120 bash[24835]: audit 2024-09-06T15:05:01.474541+0000 mon.smithi003 (mon.0) 773 : audit [DBG] from='client.? 172.21.15.3:0/4034333555' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:01.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:01 smithi120 bash[24835]: audit 2024-09-06T15:05:01.474541+0000 mon.smithi003 (mon.0) 773 : audit [DBG] from='client.? 172.21.15.3:0/4034333555' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:02.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:02 smithi120 bash[24835]: cluster 2024-09-06T15:05:01.629571+0000 mgr.smithi003.ghjsjw (mgr.14197) 223 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:02.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:02 smithi120 bash[24835]: cluster 2024-09-06T15:05:01.629571+0000 mgr.smithi003.ghjsjw (mgr.14197) 223 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:03.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:02 smithi003 bash[19900]: cluster 2024-09-06T15:05:01.629571+0000 mgr.smithi003.ghjsjw (mgr.14197) 223 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:03.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:02 smithi003 bash[19900]: cluster 2024-09-06T15:05:01.629571+0000 mgr.smithi003.ghjsjw (mgr.14197) 223 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:04.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:04 smithi120 bash[24835]: cluster 2024-09-06T15:05:03.630181+0000 mgr.smithi003.ghjsjw (mgr.14197) 224 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:04.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:04 smithi120 bash[24835]: cluster 2024-09-06T15:05:03.630181+0000 mgr.smithi003.ghjsjw (mgr.14197) 224 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:04 smithi003 bash[19900]: cluster 2024-09-06T15:05:03.630181+0000 mgr.smithi003.ghjsjw (mgr.14197) 224 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:04 smithi003 bash[19900]: cluster 2024-09-06T15:05:03.630181+0000 mgr.smithi003.ghjsjw (mgr.14197) 224 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:05.182 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:05:05.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:05 smithi003 bash[19900]: cluster 2024-09-06T15:05:05.630810+0000 mgr.smithi003.ghjsjw (mgr.14197) 225 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:05.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:05 smithi003 bash[19900]: cluster 2024-09-06T15:05:05.630810+0000 mgr.smithi003.ghjsjw (mgr.14197) 225 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:06.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:05 smithi120 bash[24835]: cluster 2024-09-06T15:05:05.630810+0000 mgr.smithi003.ghjsjw (mgr.14197) 225 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:06.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:05 smithi120 bash[24835]: cluster 2024-09-06T15:05:05.630810+0000 mgr.smithi003.ghjsjw (mgr.14197) 225 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:08.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:08 smithi120 bash[24835]: cluster 2024-09-06T15:05:07.631439+0000 mgr.smithi003.ghjsjw (mgr.14197) 226 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:08.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:08 smithi120 bash[24835]: cluster 2024-09-06T15:05:07.631439+0000 mgr.smithi003.ghjsjw (mgr.14197) 226 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:08 smithi003 bash[19900]: cluster 2024-09-06T15:05:07.631439+0000 mgr.smithi003.ghjsjw (mgr.14197) 226 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:08 smithi003 bash[19900]: cluster 2024-09-06T15:05:07.631439+0000 mgr.smithi003.ghjsjw (mgr.14197) 226 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:10.011 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:05:10.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:10 smithi120 bash[24835]: cluster 2024-09-06T15:05:09.632101+0000 mgr.smithi003.ghjsjw (mgr.14197) 227 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:10.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:10 smithi120 bash[24835]: cluster 2024-09-06T15:05:09.632101+0000 mgr.smithi003.ghjsjw (mgr.14197) 227 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:11.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:10 smithi003 bash[19900]: cluster 2024-09-06T15:05:09.632101+0000 mgr.smithi003.ghjsjw (mgr.14197) 227 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:11.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:10 smithi003 bash[19900]: cluster 2024-09-06T15:05:09.632101+0000 mgr.smithi003.ghjsjw (mgr.14197) 227 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:11.530 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:05:11.530 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:05:11.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:11 smithi003 bash[19900]: audit 2024-09-06T15:05:11.532361+0000 mon.smithi003 (mon.0) 774 : audit [DBG] from='client.? 172.21.15.3:0/2058605177' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:11.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:11 smithi003 bash[19900]: audit 2024-09-06T15:05:11.532361+0000 mon.smithi003 (mon.0) 774 : audit [DBG] from='client.? 172.21.15.3:0/2058605177' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:11.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:11 smithi120 bash[24835]: audit 2024-09-06T15:05:11.532361+0000 mon.smithi003 (mon.0) 774 : audit [DBG] from='client.? 172.21.15.3:0/2058605177' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:11.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:11 smithi120 bash[24835]: audit 2024-09-06T15:05:11.532361+0000 mon.smithi003 (mon.0) 774 : audit [DBG] from='client.? 172.21.15.3:0/2058605177' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:12 smithi003 bash[19900]: cluster 2024-09-06T15:05:11.632493+0000 mgr.smithi003.ghjsjw (mgr.14197) 228 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:12 smithi003 bash[19900]: cluster 2024-09-06T15:05:11.632493+0000 mgr.smithi003.ghjsjw (mgr.14197) 228 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:12 smithi003 bash[19900]: audit 2024-09-06T15:05:12.529453+0000 mon.smithi003 (mon.0) 775 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:12 smithi003 bash[19900]: audit 2024-09-06T15:05:12.529453+0000 mon.smithi003 (mon.0) 775 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:12 smithi120 bash[24835]: cluster 2024-09-06T15:05:11.632493+0000 mgr.smithi003.ghjsjw (mgr.14197) 228 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:12 smithi120 bash[24835]: cluster 2024-09-06T15:05:11.632493+0000 mgr.smithi003.ghjsjw (mgr.14197) 228 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:12 smithi120 bash[24835]: audit 2024-09-06T15:05:12.529453+0000 mon.smithi003 (mon.0) 775 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:12.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:12 smithi120 bash[24835]: audit 2024-09-06T15:05:12.529453+0000 mon.smithi003 (mon.0) 775 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:14.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:14 smithi120 bash[24835]: cluster 2024-09-06T15:05:13.633095+0000 mgr.smithi003.ghjsjw (mgr.14197) 229 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:14.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:14 smithi120 bash[24835]: cluster 2024-09-06T15:05:13.633095+0000 mgr.smithi003.ghjsjw (mgr.14197) 229 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:14 smithi003 bash[19900]: cluster 2024-09-06T15:05:13.633095+0000 mgr.smithi003.ghjsjw (mgr.14197) 229 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:15.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:14 smithi003 bash[19900]: cluster 2024-09-06T15:05:13.633095+0000 mgr.smithi003.ghjsjw (mgr.14197) 229 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:15.210 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:05:16.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:16 smithi120 bash[24835]: cluster 2024-09-06T15:05:15.633751+0000 mgr.smithi003.ghjsjw (mgr.14197) 230 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:16.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:16 smithi120 bash[24835]: cluster 2024-09-06T15:05:15.633751+0000 mgr.smithi003.ghjsjw (mgr.14197) 230 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:16 smithi003 bash[19900]: cluster 2024-09-06T15:05:15.633751+0000 mgr.smithi003.ghjsjw (mgr.14197) 230 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:16 smithi003 bash[19900]: cluster 2024-09-06T15:05:15.633751+0000 mgr.smithi003.ghjsjw (mgr.14197) 230 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:18.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:18 smithi120 bash[24835]: cluster 2024-09-06T15:05:17.634389+0000 mgr.smithi003.ghjsjw (mgr.14197) 231 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:18.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:18 smithi120 bash[24835]: cluster 2024-09-06T15:05:17.634389+0000 mgr.smithi003.ghjsjw (mgr.14197) 231 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:18 smithi003 bash[19900]: cluster 2024-09-06T15:05:17.634389+0000 mgr.smithi003.ghjsjw (mgr.14197) 231 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:18 smithi003 bash[19900]: cluster 2024-09-06T15:05:17.634389+0000 mgr.smithi003.ghjsjw (mgr.14197) 231 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:20.030 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:05:20.398 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:20 smithi003 bash[19900]: cluster 2024-09-06T15:05:19.634965+0000 mgr.smithi003.ghjsjw (mgr.14197) 232 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:20.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:20 smithi003 bash[19900]: cluster 2024-09-06T15:05:19.634965+0000 mgr.smithi003.ghjsjw (mgr.14197) 232 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:20.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:20 smithi120 bash[24835]: cluster 2024-09-06T15:05:19.634965+0000 mgr.smithi003.ghjsjw (mgr.14197) 232 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:20.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:20 smithi120 bash[24835]: cluster 2024-09-06T15:05:19.634965+0000 mgr.smithi003.ghjsjw (mgr.14197) 232 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:21.627 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:05:21.627 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:05:21.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:21 smithi003 bash[19900]: audit 2024-09-06T15:05:21.629348+0000 mon.smithi003 (mon.0) 776 : audit [DBG] from='client.? 172.21.15.3:0/4191898547' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:21.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:21 smithi003 bash[19900]: audit 2024-09-06T15:05:21.629348+0000 mon.smithi003 (mon.0) 776 : audit [DBG] from='client.? 172.21.15.3:0/4191898547' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:21.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:21 smithi120 bash[24835]: audit 2024-09-06T15:05:21.629348+0000 mon.smithi003 (mon.0) 776 : audit [DBG] from='client.? 172.21.15.3:0/4191898547' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:21.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:21 smithi120 bash[24835]: audit 2024-09-06T15:05:21.629348+0000 mon.smithi003 (mon.0) 776 : audit [DBG] from='client.? 172.21.15.3:0/4191898547' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:22.986 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:22 smithi003 bash[19900]: cluster 2024-09-06T15:05:21.635483+0000 mgr.smithi003.ghjsjw (mgr.14197) 233 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:22.986 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:22 smithi003 bash[19900]: cluster 2024-09-06T15:05:21.635483+0000 mgr.smithi003.ghjsjw (mgr.14197) 233 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:22.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:22 smithi120 bash[24835]: cluster 2024-09-06T15:05:21.635483+0000 mgr.smithi003.ghjsjw (mgr.14197) 233 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:22.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:22 smithi120 bash[24835]: cluster 2024-09-06T15:05:21.635483+0000 mgr.smithi003.ghjsjw (mgr.14197) 233 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:24.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:24 smithi120 bash[24835]: cluster 2024-09-06T15:05:23.636097+0000 mgr.smithi003.ghjsjw (mgr.14197) 234 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:24.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:24 smithi120 bash[24835]: cluster 2024-09-06T15:05:23.636097+0000 mgr.smithi003.ghjsjw (mgr.14197) 234 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:24 smithi003 bash[19900]: cluster 2024-09-06T15:05:23.636097+0000 mgr.smithi003.ghjsjw (mgr.14197) 234 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:24 smithi003 bash[19900]: cluster 2024-09-06T15:05:23.636097+0000 mgr.smithi003.ghjsjw (mgr.14197) 234 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:25.336 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:05:26.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:26 smithi120 bash[24835]: cluster 2024-09-06T15:05:25.636741+0000 mgr.smithi003.ghjsjw (mgr.14197) 235 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:26.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:26 smithi120 bash[24835]: cluster 2024-09-06T15:05:25.636741+0000 mgr.smithi003.ghjsjw (mgr.14197) 235 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:26 smithi003 bash[19900]: cluster 2024-09-06T15:05:25.636741+0000 mgr.smithi003.ghjsjw (mgr.14197) 235 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:26 smithi003 bash[19900]: cluster 2024-09-06T15:05:25.636741+0000 mgr.smithi003.ghjsjw (mgr.14197) 235 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:27.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:27 smithi120 bash[24835]: audit 2024-09-06T15:05:27.529745+0000 mon.smithi003 (mon.0) 777 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:27.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:27 smithi120 bash[24835]: audit 2024-09-06T15:05:27.529745+0000 mon.smithi003 (mon.0) 777 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:28.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:27 smithi003 bash[19900]: audit 2024-09-06T15:05:27.529745+0000 mon.smithi003 (mon.0) 777 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:27 smithi003 bash[19900]: audit 2024-09-06T15:05:27.529745+0000 mon.smithi003 (mon.0) 777 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:28.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:28 smithi120 bash[24835]: cluster 2024-09-06T15:05:27.637404+0000 mgr.smithi003.ghjsjw (mgr.14197) 236 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:28.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:28 smithi120 bash[24835]: cluster 2024-09-06T15:05:27.637404+0000 mgr.smithi003.ghjsjw (mgr.14197) 236 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:28 smithi003 bash[19900]: cluster 2024-09-06T15:05:27.637404+0000 mgr.smithi003.ghjsjw (mgr.14197) 236 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:28 smithi003 bash[19900]: cluster 2024-09-06T15:05:27.637404+0000 mgr.smithi003.ghjsjw (mgr.14197) 236 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:30.168 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:05:30.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:30 smithi120 bash[24835]: cluster 2024-09-06T15:05:29.638096+0000 mgr.smithi003.ghjsjw (mgr.14197) 237 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:30.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:30 smithi120 bash[24835]: cluster 2024-09-06T15:05:29.638096+0000 mgr.smithi003.ghjsjw (mgr.14197) 237 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:31.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:30 smithi003 bash[19900]: cluster 2024-09-06T15:05:29.638096+0000 mgr.smithi003.ghjsjw (mgr.14197) 237 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:31.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:30 smithi003 bash[19900]: cluster 2024-09-06T15:05:29.638096+0000 mgr.smithi003.ghjsjw (mgr.14197) 237 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:31.776 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:05:31.776 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:05:32.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:32 smithi120 bash[24835]: cluster 2024-09-06T15:05:31.638734+0000 mgr.smithi003.ghjsjw (mgr.14197) 238 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:32.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:32 smithi120 bash[24835]: cluster 2024-09-06T15:05:31.638734+0000 mgr.smithi003.ghjsjw (mgr.14197) 238 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:32.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:32 smithi120 bash[24835]: audit 2024-09-06T15:05:31.778434+0000 mon.smithi003 (mon.0) 778 : audit [DBG] from='client.? 172.21.15.3:0/145198191' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:32.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:32 smithi120 bash[24835]: audit 2024-09-06T15:05:31.778434+0000 mon.smithi003 (mon.0) 778 : audit [DBG] from='client.? 172.21.15.3:0/145198191' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:32 smithi003 bash[19900]: cluster 2024-09-06T15:05:31.638734+0000 mgr.smithi003.ghjsjw (mgr.14197) 238 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:32 smithi003 bash[19900]: cluster 2024-09-06T15:05:31.638734+0000 mgr.smithi003.ghjsjw (mgr.14197) 238 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:32 smithi003 bash[19900]: audit 2024-09-06T15:05:31.778434+0000 mon.smithi003 (mon.0) 778 : audit [DBG] from='client.? 172.21.15.3:0/145198191' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:32 smithi003 bash[19900]: audit 2024-09-06T15:05:31.778434+0000 mon.smithi003 (mon.0) 778 : audit [DBG] from='client.? 172.21.15.3:0/145198191' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:34.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:34 smithi120 bash[24835]: cluster 2024-09-06T15:05:33.639418+0000 mgr.smithi003.ghjsjw (mgr.14197) 239 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:34.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:34 smithi120 bash[24835]: cluster 2024-09-06T15:05:33.639418+0000 mgr.smithi003.ghjsjw (mgr.14197) 239 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:35.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:34 smithi003 bash[19900]: cluster 2024-09-06T15:05:33.639418+0000 mgr.smithi003.ghjsjw (mgr.14197) 239 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:35.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:34 smithi003 bash[19900]: cluster 2024-09-06T15:05:33.639418+0000 mgr.smithi003.ghjsjw (mgr.14197) 239 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:35.435 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:05:35.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:35 smithi003 bash[19900]: audit 2024-09-06T15:05:34.922148+0000 mon.smithi003 (mon.0) 779 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:05:35.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:35 smithi003 bash[19900]: audit 2024-09-06T15:05:34.922148+0000 mon.smithi003 (mon.0) 779 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:05:35.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:35 smithi120 bash[24835]: audit 2024-09-06T15:05:34.922148+0000 mon.smithi003 (mon.0) 779 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:05:35.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:35 smithi120 bash[24835]: audit 2024-09-06T15:05:34.922148+0000 mon.smithi003 (mon.0) 779 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:05:36.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:36 smithi120 bash[24835]: cluster 2024-09-06T15:05:35.639864+0000 mgr.smithi003.ghjsjw (mgr.14197) 240 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:36.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:36 smithi120 bash[24835]: cluster 2024-09-06T15:05:35.639864+0000 mgr.smithi003.ghjsjw (mgr.14197) 240 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:37.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:36 smithi003 bash[19900]: cluster 2024-09-06T15:05:35.639864+0000 mgr.smithi003.ghjsjw (mgr.14197) 240 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:37.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:36 smithi003 bash[19900]: cluster 2024-09-06T15:05:35.639864+0000 mgr.smithi003.ghjsjw (mgr.14197) 240 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:38.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:38 smithi003 bash[19900]: cluster 2024-09-06T15:05:37.640420+0000 mgr.smithi003.ghjsjw (mgr.14197) 241 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:38.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:38 smithi003 bash[19900]: cluster 2024-09-06T15:05:37.640420+0000 mgr.smithi003.ghjsjw (mgr.14197) 241 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:38.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:38 smithi120 bash[24835]: cluster 2024-09-06T15:05:37.640420+0000 mgr.smithi003.ghjsjw (mgr.14197) 241 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:38.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:38 smithi120 bash[24835]: cluster 2024-09-06T15:05:37.640420+0000 mgr.smithi003.ghjsjw (mgr.14197) 241 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:40.091 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:05:40.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:40 smithi120 bash[24835]: cluster 2024-09-06T15:05:39.641186+0000 mgr.smithi003.ghjsjw (mgr.14197) 242 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:40.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:40 smithi120 bash[24835]: cluster 2024-09-06T15:05:39.641186+0000 mgr.smithi003.ghjsjw (mgr.14197) 242 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:40.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:40 smithi120 bash[24835]: audit 2024-09-06T15:05:40.512502+0000 mon.smithi003 (mon.0) 780 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:40.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:40 smithi120 bash[24835]: audit 2024-09-06T15:05:40.512502+0000 mon.smithi003 (mon.0) 780 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:40.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:40 smithi120 bash[24835]: audit 2024-09-06T15:05:40.517566+0000 mon.smithi003 (mon.0) 781 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:40.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:40 smithi120 bash[24835]: audit 2024-09-06T15:05:40.517566+0000 mon.smithi003 (mon.0) 781 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:40 smithi003 bash[19900]: cluster 2024-09-06T15:05:39.641186+0000 mgr.smithi003.ghjsjw (mgr.14197) 242 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:40 smithi003 bash[19900]: cluster 2024-09-06T15:05:39.641186+0000 mgr.smithi003.ghjsjw (mgr.14197) 242 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:40 smithi003 bash[19900]: audit 2024-09-06T15:05:40.512502+0000 mon.smithi003 (mon.0) 780 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:40 smithi003 bash[19900]: audit 2024-09-06T15:05:40.512502+0000 mon.smithi003 (mon.0) 780 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:40 smithi003 bash[19900]: audit 2024-09-06T15:05:40.517566+0000 mon.smithi003 (mon.0) 781 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:40 smithi003 bash[19900]: audit 2024-09-06T15:05:40.517566+0000 mon.smithi003 (mon.0) 781 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:41.606 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:05:41.607 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:05:42.316 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:40.994248+0000 mon.smithi003 (mon.0) 782 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.316 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:40.994248+0000 mon.smithi003 (mon.0) 782 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.316 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:40.998600+0000 mon.smithi003 (mon.0) 783 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.316 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:40.998600+0000 mon.smithi003 (mon.0) 783 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.316 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.609486+0000 mon.smithi003 (mon.0) 784 : audit [DBG] from='client.? 172.21.15.3:0/2307167053' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:42.316 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.609486+0000 mon.smithi003 (mon.0) 784 : audit [DBG] from='client.? 172.21.15.3:0/2307167053' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:42.316 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: cluster 2024-09-06T15:05:41.641590+0000 mgr.smithi003.ghjsjw (mgr.14197) 243 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: cluster 2024-09-06T15:05:41.641590+0000 mgr.smithi003.ghjsjw (mgr.14197) 243 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.655725+0000 mon.smithi003 (mon.0) 785 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.655725+0000 mon.smithi003 (mon.0) 785 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.656594+0000 mon.smithi003 (mon.0) 786 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.656594+0000 mon.smithi003 (mon.0) 786 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.661553+0000 mon.smithi003 (mon.0) 787 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.661553+0000 mon.smithi003 (mon.0) 787 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.664080+0000 mon.smithi003 (mon.0) 788 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:05:42.317 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:41 smithi003 bash[19900]: audit 2024-09-06T15:05:41.664080+0000 mon.smithi003 (mon.0) 788 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:05:42.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:41 smithi120 bash[24835]: audit 2024-09-06T15:05:40.994248+0000 mon.smithi003 (mon.0) 782 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:41 smithi120 bash[24835]: audit 2024-09-06T15:05:40.994248+0000 mon.smithi003 (mon.0) 782 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:41 smithi120 bash[24835]: audit 2024-09-06T15:05:40.998600+0000 mon.smithi003 (mon.0) 783 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:41 smithi120 bash[24835]: audit 2024-09-06T15:05:40.998600+0000 mon.smithi003 (mon.0) 783 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:41 smithi120 bash[24835]: audit 2024-09-06T15:05:41.609486+0000 mon.smithi003 (mon.0) 784 : audit [DBG] from='client.? 172.21.15.3:0/2307167053' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.609486+0000 mon.smithi003 (mon.0) 784 : audit [DBG] from='client.? 172.21.15.3:0/2307167053' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: cluster 2024-09-06T15:05:41.641590+0000 mgr.smithi003.ghjsjw (mgr.14197) 243 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: cluster 2024-09-06T15:05:41.641590+0000 mgr.smithi003.ghjsjw (mgr.14197) 243 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.655725+0000 mon.smithi003 (mon.0) 785 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.655725+0000 mon.smithi003 (mon.0) 785 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.656594+0000 mon.smithi003 (mon.0) 786 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.656594+0000 mon.smithi003 (mon.0) 786 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:05:42.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.661553+0000 mon.smithi003 (mon.0) 787 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.661553+0000 mon.smithi003 (mon.0) 787 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:05:42.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.664080+0000 mon.smithi003 (mon.0) 788 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:05:42.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:42 smithi120 bash[24835]: audit 2024-09-06T15:05:41.664080+0000 mon.smithi003 (mon.0) 788 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:05:43.277 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:43 smithi120 bash[24835]: audit 2024-09-06T15:05:42.530126+0000 mon.smithi003 (mon.0) 789 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:43.277 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:43 smithi120 bash[24835]: audit 2024-09-06T15:05:42.530126+0000 mon.smithi003 (mon.0) 789 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:43.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:43 smithi003 bash[19900]: audit 2024-09-06T15:05:42.530126+0000 mon.smithi003 (mon.0) 789 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:43.399 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:43 smithi003 bash[19900]: audit 2024-09-06T15:05:42.530126+0000 mon.smithi003 (mon.0) 789 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:44.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:44 smithi003 bash[19900]: cluster 2024-09-06T15:05:43.642197+0000 mgr.smithi003.ghjsjw (mgr.14197) 244 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:44.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:44 smithi003 bash[19900]: cluster 2024-09-06T15:05:43.642197+0000 mgr.smithi003.ghjsjw (mgr.14197) 244 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:44.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:44 smithi120 bash[24835]: cluster 2024-09-06T15:05:43.642197+0000 mgr.smithi003.ghjsjw (mgr.14197) 244 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:44.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:44 smithi120 bash[24835]: cluster 2024-09-06T15:05:43.642197+0000 mgr.smithi003.ghjsjw (mgr.14197) 244 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:45.319 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:05:46.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:46 smithi120 bash[24835]: cluster 2024-09-06T15:05:45.642954+0000 mgr.smithi003.ghjsjw (mgr.14197) 245 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:46.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:46 smithi120 bash[24835]: cluster 2024-09-06T15:05:45.642954+0000 mgr.smithi003.ghjsjw (mgr.14197) 245 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:47.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:46 smithi003 bash[19900]: cluster 2024-09-06T15:05:45.642954+0000 mgr.smithi003.ghjsjw (mgr.14197) 245 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:47.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:46 smithi003 bash[19900]: cluster 2024-09-06T15:05:45.642954+0000 mgr.smithi003.ghjsjw (mgr.14197) 245 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:48 smithi120 bash[24835]: cluster 2024-09-06T15:05:47.643648+0000 mgr.smithi003.ghjsjw (mgr.14197) 246 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:48 smithi120 bash[24835]: cluster 2024-09-06T15:05:47.643648+0000 mgr.smithi003.ghjsjw (mgr.14197) 246 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:49.001 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:48 smithi003 bash[19900]: cluster 2024-09-06T15:05:47.643648+0000 mgr.smithi003.ghjsjw (mgr.14197) 246 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:49.001 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:48 smithi003 bash[19900]: cluster 2024-09-06T15:05:47.643648+0000 mgr.smithi003.ghjsjw (mgr.14197) 246 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:50.147 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:05:50.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:50 smithi120 bash[24835]: cluster 2024-09-06T15:05:49.644429+0000 mgr.smithi003.ghjsjw (mgr.14197) 247 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:50.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:50 smithi120 bash[24835]: cluster 2024-09-06T15:05:49.644429+0000 mgr.smithi003.ghjsjw (mgr.14197) 247 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:51.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:50 smithi003 bash[19900]: cluster 2024-09-06T15:05:49.644429+0000 mgr.smithi003.ghjsjw (mgr.14197) 247 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:51.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:50 smithi003 bash[19900]: cluster 2024-09-06T15:05:49.644429+0000 mgr.smithi003.ghjsjw (mgr.14197) 247 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:51.756 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:05:51.757 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:05:52.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:52 smithi120 bash[24835]: cluster 2024-09-06T15:05:51.645145+0000 mgr.smithi003.ghjsjw (mgr.14197) 248 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:52.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:52 smithi120 bash[24835]: cluster 2024-09-06T15:05:51.645145+0000 mgr.smithi003.ghjsjw (mgr.14197) 248 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:52.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:52 smithi120 bash[24835]: audit 2024-09-06T15:05:51.758874+0000 mon.smithi003 (mon.0) 790 : audit [DBG] from='client.? 172.21.15.3:0/874684845' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:52.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:52 smithi120 bash[24835]: audit 2024-09-06T15:05:51.758874+0000 mon.smithi003 (mon.0) 790 : audit [DBG] from='client.? 172.21.15.3:0/874684845' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:52 smithi003 bash[19900]: cluster 2024-09-06T15:05:51.645145+0000 mgr.smithi003.ghjsjw (mgr.14197) 248 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:52 smithi003 bash[19900]: cluster 2024-09-06T15:05:51.645145+0000 mgr.smithi003.ghjsjw (mgr.14197) 248 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:52 smithi003 bash[19900]: audit 2024-09-06T15:05:51.758874+0000 mon.smithi003 (mon.0) 790 : audit [DBG] from='client.? 172.21.15.3:0/874684845' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:52 smithi003 bash[19900]: audit 2024-09-06T15:05:51.758874+0000 mon.smithi003 (mon.0) 790 : audit [DBG] from='client.? 172.21.15.3:0/874684845' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:05:54.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:54 smithi120 bash[24835]: cluster 2024-09-06T15:05:53.645794+0000 mgr.smithi003.ghjsjw (mgr.14197) 249 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:54.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:54 smithi120 bash[24835]: cluster 2024-09-06T15:05:53.645794+0000 mgr.smithi003.ghjsjw (mgr.14197) 249 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:55.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:54 smithi003 bash[19900]: cluster 2024-09-06T15:05:53.645794+0000 mgr.smithi003.ghjsjw (mgr.14197) 249 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:55.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:54 smithi003 bash[19900]: cluster 2024-09-06T15:05:53.645794+0000 mgr.smithi003.ghjsjw (mgr.14197) 249 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:55.426 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:05:56.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:56 smithi120 bash[24835]: cluster 2024-09-06T15:05:55.646211+0000 mgr.smithi003.ghjsjw (mgr.14197) 250 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:56.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:56 smithi120 bash[24835]: cluster 2024-09-06T15:05:55.646211+0000 mgr.smithi003.ghjsjw (mgr.14197) 250 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:57.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:56 smithi003 bash[19900]: cluster 2024-09-06T15:05:55.646211+0000 mgr.smithi003.ghjsjw (mgr.14197) 250 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:56 smithi003 bash[19900]: cluster 2024-09-06T15:05:55.646211+0000 mgr.smithi003.ghjsjw (mgr.14197) 250 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:57.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:57 smithi120 bash[24835]: audit 2024-09-06T15:05:57.530494+0000 mon.smithi003 (mon.0) 791 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:57.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:57 smithi120 bash[24835]: audit 2024-09-06T15:05:57.530494+0000 mon.smithi003 (mon.0) 791 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:57 smithi003 bash[19900]: audit 2024-09-06T15:05:57.530494+0000 mon.smithi003 (mon.0) 791 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:57 smithi003 bash[19900]: audit 2024-09-06T15:05:57.530494+0000 mon.smithi003 (mon.0) 791 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:05:58.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:58 smithi120 bash[24835]: cluster 2024-09-06T15:05:57.646778+0000 mgr.smithi003.ghjsjw (mgr.14197) 251 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:58.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:05:58 smithi120 bash[24835]: cluster 2024-09-06T15:05:57.646778+0000 mgr.smithi003.ghjsjw (mgr.14197) 251 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:59.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:58 smithi003 bash[19900]: cluster 2024-09-06T15:05:57.646778+0000 mgr.smithi003.ghjsjw (mgr.14197) 251 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:05:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:05:58 smithi003 bash[19900]: cluster 2024-09-06T15:05:57.646778+0000 mgr.smithi003.ghjsjw (mgr.14197) 251 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:00.248 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:06:00.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:00 smithi120 bash[24835]: cluster 2024-09-06T15:05:59.647259+0000 mgr.smithi003.ghjsjw (mgr.14197) 252 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:00.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:00 smithi120 bash[24835]: cluster 2024-09-06T15:05:59.647259+0000 mgr.smithi003.ghjsjw (mgr.14197) 252 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:01.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:00 smithi003 bash[19900]: cluster 2024-09-06T15:05:59.647259+0000 mgr.smithi003.ghjsjw (mgr.14197) 252 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:01.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:00 smithi003 bash[19900]: cluster 2024-09-06T15:05:59.647259+0000 mgr.smithi003.ghjsjw (mgr.14197) 252 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:01.898 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:06:01.898 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:06:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:02 smithi003 bash[19900]: cluster 2024-09-06T15:06:01.647853+0000 mgr.smithi003.ghjsjw (mgr.14197) 253 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:02 smithi003 bash[19900]: cluster 2024-09-06T15:06:01.647853+0000 mgr.smithi003.ghjsjw (mgr.14197) 253 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:02 smithi003 bash[19900]: audit 2024-09-06T15:06:01.900578+0000 mon.smithi003 (mon.0) 792 : audit [DBG] from='client.? 172.21.15.3:0/4283231681' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:02 smithi003 bash[19900]: audit 2024-09-06T15:06:01.900578+0000 mon.smithi003 (mon.0) 792 : audit [DBG] from='client.? 172.21.15.3:0/4283231681' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:02.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:02 smithi120 bash[24835]: cluster 2024-09-06T15:06:01.647853+0000 mgr.smithi003.ghjsjw (mgr.14197) 253 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:02.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:02 smithi120 bash[24835]: cluster 2024-09-06T15:06:01.647853+0000 mgr.smithi003.ghjsjw (mgr.14197) 253 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:02.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:02 smithi120 bash[24835]: audit 2024-09-06T15:06:01.900578+0000 mon.smithi003 (mon.0) 792 : audit [DBG] from='client.? 172.21.15.3:0/4283231681' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:02.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:02 smithi120 bash[24835]: audit 2024-09-06T15:06:01.900578+0000 mon.smithi003 (mon.0) 792 : audit [DBG] from='client.? 172.21.15.3:0/4283231681' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:04.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:04 smithi003 bash[19900]: cluster 2024-09-06T15:06:03.648511+0000 mgr.smithi003.ghjsjw (mgr.14197) 254 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:04.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:04 smithi003 bash[19900]: cluster 2024-09-06T15:06:03.648511+0000 mgr.smithi003.ghjsjw (mgr.14197) 254 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:04.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:04 smithi120 bash[24835]: cluster 2024-09-06T15:06:03.648511+0000 mgr.smithi003.ghjsjw (mgr.14197) 254 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:04.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:04 smithi120 bash[24835]: cluster 2024-09-06T15:06:03.648511+0000 mgr.smithi003.ghjsjw (mgr.14197) 254 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:05.550 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:06:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:06 smithi003 bash[19900]: cluster 2024-09-06T15:06:05.649038+0000 mgr.smithi003.ghjsjw (mgr.14197) 255 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:06 smithi003 bash[19900]: cluster 2024-09-06T15:06:05.649038+0000 mgr.smithi003.ghjsjw (mgr.14197) 255 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:07.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:06 smithi120 bash[24835]: cluster 2024-09-06T15:06:05.649038+0000 mgr.smithi003.ghjsjw (mgr.14197) 255 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:07.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:06 smithi120 bash[24835]: cluster 2024-09-06T15:06:05.649038+0000 mgr.smithi003.ghjsjw (mgr.14197) 255 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:08 smithi003 bash[19900]: cluster 2024-09-06T15:06:07.649802+0000 mgr.smithi003.ghjsjw (mgr.14197) 256 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:08 smithi003 bash[19900]: cluster 2024-09-06T15:06:07.649802+0000 mgr.smithi003.ghjsjw (mgr.14197) 256 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:09.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:08 smithi120 bash[24835]: cluster 2024-09-06T15:06:07.649802+0000 mgr.smithi003.ghjsjw (mgr.14197) 256 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:09.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:08 smithi120 bash[24835]: cluster 2024-09-06T15:06:07.649802+0000 mgr.smithi003.ghjsjw (mgr.14197) 256 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:09 smithi003 bash[19900]: cluster 2024-09-06T15:06:09.650513+0000 mgr.smithi003.ghjsjw (mgr.14197) 257 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:10.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:09 smithi003 bash[19900]: cluster 2024-09-06T15:06:09.650513+0000 mgr.smithi003.ghjsjw (mgr.14197) 257 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:10.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:09 smithi120 bash[24835]: cluster 2024-09-06T15:06:09.650513+0000 mgr.smithi003.ghjsjw (mgr.14197) 257 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:10.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:09 smithi120 bash[24835]: cluster 2024-09-06T15:06:09.650513+0000 mgr.smithi003.ghjsjw (mgr.14197) 257 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:10.372 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:06:11.846 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:06:11.846 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:06:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:12 smithi003 bash[19900]: cluster 2024-09-06T15:06:11.650946+0000 mgr.smithi003.ghjsjw (mgr.14197) 258 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:12 smithi003 bash[19900]: cluster 2024-09-06T15:06:11.650946+0000 mgr.smithi003.ghjsjw (mgr.14197) 258 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:12 smithi003 bash[19900]: audit 2024-09-06T15:06:11.848561+0000 mon.smithi003 (mon.0) 793 : audit [DBG] from='client.? 172.21.15.3:0/373960668' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:12 smithi003 bash[19900]: audit 2024-09-06T15:06:11.848561+0000 mon.smithi003 (mon.0) 793 : audit [DBG] from='client.? 172.21.15.3:0/373960668' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:12 smithi003 bash[19900]: audit 2024-09-06T15:06:12.531566+0000 mon.smithi003 (mon.0) 794 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:12.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:12 smithi003 bash[19900]: audit 2024-09-06T15:06:12.531566+0000 mon.smithi003 (mon.0) 794 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:12 smithi120 bash[24835]: cluster 2024-09-06T15:06:11.650946+0000 mgr.smithi003.ghjsjw (mgr.14197) 258 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:12 smithi120 bash[24835]: cluster 2024-09-06T15:06:11.650946+0000 mgr.smithi003.ghjsjw (mgr.14197) 258 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:12 smithi120 bash[24835]: audit 2024-09-06T15:06:11.848561+0000 mon.smithi003 (mon.0) 793 : audit [DBG] from='client.? 172.21.15.3:0/373960668' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:12 smithi120 bash[24835]: audit 2024-09-06T15:06:11.848561+0000 mon.smithi003 (mon.0) 793 : audit [DBG] from='client.? 172.21.15.3:0/373960668' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:12 smithi120 bash[24835]: audit 2024-09-06T15:06:12.531566+0000 mon.smithi003 (mon.0) 794 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:12.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:12 smithi120 bash[24835]: audit 2024-09-06T15:06:12.531566+0000 mon.smithi003 (mon.0) 794 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:14.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:14 smithi120 bash[24835]: cluster 2024-09-06T15:06:13.651563+0000 mgr.smithi003.ghjsjw (mgr.14197) 259 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:14.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:14 smithi120 bash[24835]: cluster 2024-09-06T15:06:13.651563+0000 mgr.smithi003.ghjsjw (mgr.14197) 259 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:15.027 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:14 smithi003 bash[19900]: cluster 2024-09-06T15:06:13.651563+0000 mgr.smithi003.ghjsjw (mgr.14197) 259 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:15.027 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:14 smithi003 bash[19900]: cluster 2024-09-06T15:06:13.651563+0000 mgr.smithi003.ghjsjw (mgr.14197) 259 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:15.559 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:06:16.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:16 smithi120 bash[24835]: cluster 2024-09-06T15:06:15.652273+0000 mgr.smithi003.ghjsjw (mgr.14197) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:16.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:16 smithi120 bash[24835]: cluster 2024-09-06T15:06:15.652273+0000 mgr.smithi003.ghjsjw (mgr.14197) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:16 smithi003 bash[19900]: cluster 2024-09-06T15:06:15.652273+0000 mgr.smithi003.ghjsjw (mgr.14197) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:16 smithi003 bash[19900]: cluster 2024-09-06T15:06:15.652273+0000 mgr.smithi003.ghjsjw (mgr.14197) 260 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:18.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:18 smithi120 bash[24835]: cluster 2024-09-06T15:06:17.652992+0000 mgr.smithi003.ghjsjw (mgr.14197) 261 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:18.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:18 smithi120 bash[24835]: cluster 2024-09-06T15:06:17.652992+0000 mgr.smithi003.ghjsjw (mgr.14197) 261 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:19.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:18 smithi003 bash[19900]: cluster 2024-09-06T15:06:17.652992+0000 mgr.smithi003.ghjsjw (mgr.14197) 261 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:18 smithi003 bash[19900]: cluster 2024-09-06T15:06:17.652992+0000 mgr.smithi003.ghjsjw (mgr.14197) 261 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:20.418 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:06:20.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:20 smithi120 bash[24835]: cluster 2024-09-06T15:06:19.653702+0000 mgr.smithi003.ghjsjw (mgr.14197) 262 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:20.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:20 smithi120 bash[24835]: cluster 2024-09-06T15:06:19.653702+0000 mgr.smithi003.ghjsjw (mgr.14197) 262 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:21.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:20 smithi003 bash[19900]: cluster 2024-09-06T15:06:19.653702+0000 mgr.smithi003.ghjsjw (mgr.14197) 262 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:21.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:20 smithi003 bash[19900]: cluster 2024-09-06T15:06:19.653702+0000 mgr.smithi003.ghjsjw (mgr.14197) 262 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:21.955 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:06:21.956 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:06:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:22 smithi003 bash[19900]: cluster 2024-09-06T15:06:21.654178+0000 mgr.smithi003.ghjsjw (mgr.14197) 263 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:22 smithi003 bash[19900]: cluster 2024-09-06T15:06:21.654178+0000 mgr.smithi003.ghjsjw (mgr.14197) 263 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:22 smithi003 bash[19900]: audit 2024-09-06T15:06:21.958451+0000 mon.smithi003 (mon.0) 795 : audit [DBG] from='client.? 172.21.15.3:0/2615061774' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:22.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:22 smithi003 bash[19900]: audit 2024-09-06T15:06:21.958451+0000 mon.smithi003 (mon.0) 795 : audit [DBG] from='client.? 172.21.15.3:0/2615061774' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:22.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:22 smithi120 bash[24835]: cluster 2024-09-06T15:06:21.654178+0000 mgr.smithi003.ghjsjw (mgr.14197) 263 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:22.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:22 smithi120 bash[24835]: cluster 2024-09-06T15:06:21.654178+0000 mgr.smithi003.ghjsjw (mgr.14197) 263 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:22.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:22 smithi120 bash[24835]: audit 2024-09-06T15:06:21.958451+0000 mon.smithi003 (mon.0) 795 : audit [DBG] from='client.? 172.21.15.3:0/2615061774' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:22.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:22 smithi120 bash[24835]: audit 2024-09-06T15:06:21.958451+0000 mon.smithi003 (mon.0) 795 : audit [DBG] from='client.? 172.21.15.3:0/2615061774' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:24.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:24 smithi120 bash[24835]: cluster 2024-09-06T15:06:23.654794+0000 mgr.smithi003.ghjsjw (mgr.14197) 264 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:24.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:24 smithi120 bash[24835]: cluster 2024-09-06T15:06:23.654794+0000 mgr.smithi003.ghjsjw (mgr.14197) 264 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:24 smithi003 bash[19900]: cluster 2024-09-06T15:06:23.654794+0000 mgr.smithi003.ghjsjw (mgr.14197) 264 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:24 smithi003 bash[19900]: cluster 2024-09-06T15:06:23.654794+0000 mgr.smithi003.ghjsjw (mgr.14197) 264 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:25.614 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:06:26.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:26 smithi120 bash[24835]: cluster 2024-09-06T15:06:25.655263+0000 mgr.smithi003.ghjsjw (mgr.14197) 265 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:26.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:26 smithi120 bash[24835]: cluster 2024-09-06T15:06:25.655263+0000 mgr.smithi003.ghjsjw (mgr.14197) 265 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:26 smithi003 bash[19900]: cluster 2024-09-06T15:06:25.655263+0000 mgr.smithi003.ghjsjw (mgr.14197) 265 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:26 smithi003 bash[19900]: cluster 2024-09-06T15:06:25.655263+0000 mgr.smithi003.ghjsjw (mgr.14197) 265 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:27 smithi003 bash[19900]: audit 2024-09-06T15:06:27.531415+0000 mon.smithi003 (mon.0) 796 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:27 smithi003 bash[19900]: audit 2024-09-06T15:06:27.531415+0000 mon.smithi003 (mon.0) 796 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:28.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:27 smithi120 bash[24835]: audit 2024-09-06T15:06:27.531415+0000 mon.smithi003 (mon.0) 796 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:28.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:27 smithi120 bash[24835]: audit 2024-09-06T15:06:27.531415+0000 mon.smithi003 (mon.0) 796 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:28 smithi003 bash[19900]: cluster 2024-09-06T15:06:27.655854+0000 mgr.smithi003.ghjsjw (mgr.14197) 266 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:28 smithi003 bash[19900]: cluster 2024-09-06T15:06:27.655854+0000 mgr.smithi003.ghjsjw (mgr.14197) 266 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:29.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:28 smithi120 bash[24835]: cluster 2024-09-06T15:06:27.655854+0000 mgr.smithi003.ghjsjw (mgr.14197) 266 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:29.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:28 smithi120 bash[24835]: cluster 2024-09-06T15:06:27.655854+0000 mgr.smithi003.ghjsjw (mgr.14197) 266 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:30.430 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:06:31.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:30 smithi003 bash[19900]: cluster 2024-09-06T15:06:29.656572+0000 mgr.smithi003.ghjsjw (mgr.14197) 267 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:31.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:30 smithi003 bash[19900]: cluster 2024-09-06T15:06:29.656572+0000 mgr.smithi003.ghjsjw (mgr.14197) 267 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:31.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:30 smithi120 bash[24835]: cluster 2024-09-06T15:06:29.656572+0000 mgr.smithi003.ghjsjw (mgr.14197) 267 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:31.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:30 smithi120 bash[24835]: cluster 2024-09-06T15:06:29.656572+0000 mgr.smithi003.ghjsjw (mgr.14197) 267 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:31.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:31 smithi003 bash[19900]: cluster 2024-09-06T15:06:31.657134+0000 mgr.smithi003.ghjsjw (mgr.14197) 268 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:31.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:31 smithi003 bash[19900]: cluster 2024-09-06T15:06:31.657134+0000 mgr.smithi003.ghjsjw (mgr.14197) 268 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:31.995 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:06:31.995 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:06:32.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:31 smithi120 bash[24835]: cluster 2024-09-06T15:06:31.657134+0000 mgr.smithi003.ghjsjw (mgr.14197) 268 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:32.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:31 smithi120 bash[24835]: cluster 2024-09-06T15:06:31.657134+0000 mgr.smithi003.ghjsjw (mgr.14197) 268 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:33.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:32 smithi003 bash[19900]: audit 2024-09-06T15:06:31.997991+0000 mon.smithi003 (mon.0) 797 : audit [DBG] from='client.? 172.21.15.3:0/2077246975' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:32 smithi003 bash[19900]: audit 2024-09-06T15:06:31.997991+0000 mon.smithi003 (mon.0) 797 : audit [DBG] from='client.? 172.21.15.3:0/2077246975' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:33.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:32 smithi120 bash[24835]: audit 2024-09-06T15:06:31.997991+0000 mon.smithi003 (mon.0) 797 : audit [DBG] from='client.? 172.21.15.3:0/2077246975' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:33.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:32 smithi120 bash[24835]: audit 2024-09-06T15:06:31.997991+0000 mon.smithi003 (mon.0) 797 : audit [DBG] from='client.? 172.21.15.3:0/2077246975' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:34.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:33 smithi003 bash[19900]: cluster 2024-09-06T15:06:33.657707+0000 mgr.smithi003.ghjsjw (mgr.14197) 269 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:34.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:33 smithi003 bash[19900]: cluster 2024-09-06T15:06:33.657707+0000 mgr.smithi003.ghjsjw (mgr.14197) 269 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:34.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:33 smithi120 bash[24835]: cluster 2024-09-06T15:06:33.657707+0000 mgr.smithi003.ghjsjw (mgr.14197) 269 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:34.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:33 smithi120 bash[24835]: cluster 2024-09-06T15:06:33.657707+0000 mgr.smithi003.ghjsjw (mgr.14197) 269 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:35.679 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:06:36.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:36 smithi120 bash[24835]: cluster 2024-09-06T15:06:35.658387+0000 mgr.smithi003.ghjsjw (mgr.14197) 270 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:36.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:36 smithi120 bash[24835]: cluster 2024-09-06T15:06:35.658387+0000 mgr.smithi003.ghjsjw (mgr.14197) 270 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:37.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:36 smithi003 bash[19900]: cluster 2024-09-06T15:06:35.658387+0000 mgr.smithi003.ghjsjw (mgr.14197) 270 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:37.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:36 smithi003 bash[19900]: cluster 2024-09-06T15:06:35.658387+0000 mgr.smithi003.ghjsjw (mgr.14197) 270 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:38.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:38 smithi120 bash[24835]: cluster 2024-09-06T15:06:37.659020+0000 mgr.smithi003.ghjsjw (mgr.14197) 271 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:38.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:38 smithi120 bash[24835]: cluster 2024-09-06T15:06:37.659020+0000 mgr.smithi003.ghjsjw (mgr.14197) 271 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:39.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:38 smithi003 bash[19900]: cluster 2024-09-06T15:06:37.659020+0000 mgr.smithi003.ghjsjw (mgr.14197) 271 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:38 smithi003 bash[19900]: cluster 2024-09-06T15:06:37.659020+0000 mgr.smithi003.ghjsjw (mgr.14197) 271 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:40.507 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:06:40.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:40 smithi003 bash[19900]: cluster 2024-09-06T15:06:39.659674+0000 mgr.smithi003.ghjsjw (mgr.14197) 272 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:40.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:40 smithi003 bash[19900]: cluster 2024-09-06T15:06:39.659674+0000 mgr.smithi003.ghjsjw (mgr.14197) 272 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:40.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:40 smithi120 bash[24835]: cluster 2024-09-06T15:06:39.659674+0000 mgr.smithi003.ghjsjw (mgr.14197) 272 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:40.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:40 smithi120 bash[24835]: cluster 2024-09-06T15:06:39.659674+0000 mgr.smithi003.ghjsjw (mgr.14197) 272 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:42.082 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:06:42.082 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:06:42.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:42 smithi120 bash[24835]: cluster 2024-09-06T15:06:41.660396+0000 mgr.smithi003.ghjsjw (mgr.14197) 273 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:42.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:42 smithi120 bash[24835]: cluster 2024-09-06T15:06:41.660396+0000 mgr.smithi003.ghjsjw (mgr.14197) 273 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:42.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:42 smithi120 bash[24835]: audit 2024-09-06T15:06:42.084854+0000 mon.smithi003 (mon.0) 798 : audit [DBG] from='client.? 172.21.15.3:0/2361505452' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:42.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:42 smithi120 bash[24835]: audit 2024-09-06T15:06:42.084854+0000 mon.smithi003 (mon.0) 798 : audit [DBG] from='client.? 172.21.15.3:0/2361505452' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:42.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:42 smithi120 bash[24835]: audit 2024-09-06T15:06:42.111708+0000 mon.smithi003 (mon.0) 799 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:06:42.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:42 smithi120 bash[24835]: audit 2024-09-06T15:06:42.111708+0000 mon.smithi003 (mon.0) 799 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:06:42.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:42 smithi120 bash[24835]: audit 2024-09-06T15:06:42.531597+0000 mon.smithi003 (mon.0) 800 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:42.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:42 smithi120 bash[24835]: audit 2024-09-06T15:06:42.531597+0000 mon.smithi003 (mon.0) 800 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:42 smithi003 bash[19900]: cluster 2024-09-06T15:06:41.660396+0000 mgr.smithi003.ghjsjw (mgr.14197) 273 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:42 smithi003 bash[19900]: cluster 2024-09-06T15:06:41.660396+0000 mgr.smithi003.ghjsjw (mgr.14197) 273 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:42 smithi003 bash[19900]: audit 2024-09-06T15:06:42.084854+0000 mon.smithi003 (mon.0) 798 : audit [DBG] from='client.? 172.21.15.3:0/2361505452' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:42 smithi003 bash[19900]: audit 2024-09-06T15:06:42.084854+0000 mon.smithi003 (mon.0) 798 : audit [DBG] from='client.? 172.21.15.3:0/2361505452' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:42 smithi003 bash[19900]: audit 2024-09-06T15:06:42.111708+0000 mon.smithi003 (mon.0) 799 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:06:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:42 smithi003 bash[19900]: audit 2024-09-06T15:06:42.111708+0000 mon.smithi003 (mon.0) 799 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:06:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:42 smithi003 bash[19900]: audit 2024-09-06T15:06:42.531597+0000 mon.smithi003 (mon.0) 800 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:42 smithi003 bash[19900]: audit 2024-09-06T15:06:42.531597+0000 mon.smithi003 (mon.0) 800 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:44 smithi120 bash[24835]: cluster 2024-09-06T15:06:43.661215+0000 mgr.smithi003.ghjsjw (mgr.14197) 274 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:44 smithi120 bash[24835]: cluster 2024-09-06T15:06:43.661215+0000 mgr.smithi003.ghjsjw (mgr.14197) 274 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:44 smithi003 bash[19900]: cluster 2024-09-06T15:06:43.661215+0000 mgr.smithi003.ghjsjw (mgr.14197) 274 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:44 smithi003 bash[19900]: cluster 2024-09-06T15:06:43.661215+0000 mgr.smithi003.ghjsjw (mgr.14197) 274 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:45.721 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:06:46.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:46 smithi120 bash[24835]: cluster 2024-09-06T15:06:45.662005+0000 mgr.smithi003.ghjsjw (mgr.14197) 275 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:46.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:46 smithi120 bash[24835]: cluster 2024-09-06T15:06:45.662005+0000 mgr.smithi003.ghjsjw (mgr.14197) 275 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:47.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:46 smithi003 bash[19900]: cluster 2024-09-06T15:06:45.662005+0000 mgr.smithi003.ghjsjw (mgr.14197) 275 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:47.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:46 smithi003 bash[19900]: cluster 2024-09-06T15:06:45.662005+0000 mgr.smithi003.ghjsjw (mgr.14197) 275 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: audit 2024-09-06T15:06:47.649370+0000 mon.smithi003 (mon.0) 801 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: audit 2024-09-06T15:06:47.649370+0000 mon.smithi003 (mon.0) 801 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: audit 2024-09-06T15:06:47.655794+0000 mon.smithi003 (mon.0) 802 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: audit 2024-09-06T15:06:47.655794+0000 mon.smithi003 (mon.0) 802 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: cluster 2024-09-06T15:06:47.662414+0000 mgr.smithi003.ghjsjw (mgr.14197) 276 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: cluster 2024-09-06T15:06:47.662414+0000 mgr.smithi003.ghjsjw (mgr.14197) 276 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: audit 2024-09-06T15:06:48.094624+0000 mon.smithi003 (mon.0) 803 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: audit 2024-09-06T15:06:48.094624+0000 mon.smithi003 (mon.0) 803 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: audit 2024-09-06T15:06:48.099718+0000 mon.smithi003 (mon.0) 804 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:48 smithi003 bash[19900]: audit 2024-09-06T15:06:48.099718+0000 mon.smithi003 (mon.0) 804 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: audit 2024-09-06T15:06:47.649370+0000 mon.smithi003 (mon.0) 801 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: audit 2024-09-06T15:06:47.649370+0000 mon.smithi003 (mon.0) 801 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: audit 2024-09-06T15:06:47.655794+0000 mon.smithi003 (mon.0) 802 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: audit 2024-09-06T15:06:47.655794+0000 mon.smithi003 (mon.0) 802 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: cluster 2024-09-06T15:06:47.662414+0000 mgr.smithi003.ghjsjw (mgr.14197) 276 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: cluster 2024-09-06T15:06:47.662414+0000 mgr.smithi003.ghjsjw (mgr.14197) 276 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: audit 2024-09-06T15:06:48.094624+0000 mon.smithi003 (mon.0) 803 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: audit 2024-09-06T15:06:48.094624+0000 mon.smithi003 (mon.0) 803 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: audit 2024-09-06T15:06:48.099718+0000 mon.smithi003 (mon.0) 804 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:48 smithi120 bash[24835]: audit 2024-09-06T15:06:48.099718+0000 mon.smithi003 (mon.0) 804 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:49.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:49 smithi120 bash[24835]: audit 2024-09-06T15:06:48.706509+0000 mon.smithi003 (mon.0) 805 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:06:49.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:49 smithi120 bash[24835]: audit 2024-09-06T15:06:48.706509+0000 mon.smithi003 (mon.0) 805 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:06:49.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:49 smithi120 bash[24835]: audit 2024-09-06T15:06:48.707400+0000 mon.smithi003 (mon.0) 806 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:06:49.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:49 smithi120 bash[24835]: audit 2024-09-06T15:06:48.707400+0000 mon.smithi003 (mon.0) 806 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:06:49.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:49 smithi120 bash[24835]: audit 2024-09-06T15:06:48.715392+0000 mon.smithi003 (mon.0) 807 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:49.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:49 smithi120 bash[24835]: audit 2024-09-06T15:06:48.715392+0000 mon.smithi003 (mon.0) 807 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:49.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:49 smithi120 bash[24835]: audit 2024-09-06T15:06:48.718878+0000 mon.smithi003 (mon.0) 808 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:06:49.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:49 smithi120 bash[24835]: audit 2024-09-06T15:06:48.718878+0000 mon.smithi003 (mon.0) 808 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:06:50.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:49 smithi003 bash[19900]: audit 2024-09-06T15:06:48.706509+0000 mon.smithi003 (mon.0) 805 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:06:50.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:49 smithi003 bash[19900]: audit 2024-09-06T15:06:48.706509+0000 mon.smithi003 (mon.0) 805 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:06:50.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:49 smithi003 bash[19900]: audit 2024-09-06T15:06:48.707400+0000 mon.smithi003 (mon.0) 806 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:06:50.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:49 smithi003 bash[19900]: audit 2024-09-06T15:06:48.707400+0000 mon.smithi003 (mon.0) 806 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:06:50.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:49 smithi003 bash[19900]: audit 2024-09-06T15:06:48.715392+0000 mon.smithi003 (mon.0) 807 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:50.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:49 smithi003 bash[19900]: audit 2024-09-06T15:06:48.715392+0000 mon.smithi003 (mon.0) 807 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:06:50.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:49 smithi003 bash[19900]: audit 2024-09-06T15:06:48.718878+0000 mon.smithi003 (mon.0) 808 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:06:50.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:49 smithi003 bash[19900]: audit 2024-09-06T15:06:48.718878+0000 mon.smithi003 (mon.0) 808 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:06:50.271 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:06:50.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:50 smithi120 bash[24835]: cluster 2024-09-06T15:06:49.663081+0000 mgr.smithi003.ghjsjw (mgr.14197) 277 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:50.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:50 smithi120 bash[24835]: cluster 2024-09-06T15:06:49.663081+0000 mgr.smithi003.ghjsjw (mgr.14197) 277 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:51.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:50 smithi003 bash[19900]: cluster 2024-09-06T15:06:49.663081+0000 mgr.smithi003.ghjsjw (mgr.14197) 277 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:51.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:50 smithi003 bash[19900]: cluster 2024-09-06T15:06:49.663081+0000 mgr.smithi003.ghjsjw (mgr.14197) 277 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:52.068 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:06:52.069 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:06:52.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:52 smithi120 bash[24835]: cluster 2024-09-06T15:06:51.663843+0000 mgr.smithi003.ghjsjw (mgr.14197) 278 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:52.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:52 smithi120 bash[24835]: cluster 2024-09-06T15:06:51.663843+0000 mgr.smithi003.ghjsjw (mgr.14197) 278 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:52.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:52 smithi120 bash[24835]: audit 2024-09-06T15:06:52.071260+0000 mon.smithi003 (mon.0) 809 : audit [DBG] from='client.? 172.21.15.3:0/3898847697' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:52.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:52 smithi120 bash[24835]: audit 2024-09-06T15:06:52.071260+0000 mon.smithi003 (mon.0) 809 : audit [DBG] from='client.? 172.21.15.3:0/3898847697' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:53.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:52 smithi003 bash[19900]: cluster 2024-09-06T15:06:51.663843+0000 mgr.smithi003.ghjsjw (mgr.14197) 278 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:52 smithi003 bash[19900]: cluster 2024-09-06T15:06:51.663843+0000 mgr.smithi003.ghjsjw (mgr.14197) 278 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:52 smithi003 bash[19900]: audit 2024-09-06T15:06:52.071260+0000 mon.smithi003 (mon.0) 809 : audit [DBG] from='client.? 172.21.15.3:0/3898847697' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:53.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:52 smithi003 bash[19900]: audit 2024-09-06T15:06:52.071260+0000 mon.smithi003 (mon.0) 809 : audit [DBG] from='client.? 172.21.15.3:0/3898847697' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:06:54.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:54 smithi120 bash[24835]: cluster 2024-09-06T15:06:53.664540+0000 mgr.smithi003.ghjsjw (mgr.14197) 279 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:54.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:54 smithi120 bash[24835]: cluster 2024-09-06T15:06:53.664540+0000 mgr.smithi003.ghjsjw (mgr.14197) 279 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:55.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:54 smithi003 bash[19900]: cluster 2024-09-06T15:06:53.664540+0000 mgr.smithi003.ghjsjw (mgr.14197) 279 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:55.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:54 smithi003 bash[19900]: cluster 2024-09-06T15:06:53.664540+0000 mgr.smithi003.ghjsjw (mgr.14197) 279 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:55.812 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:06:56.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:56 smithi003 bash[19900]: cluster 2024-09-06T15:06:55.665252+0000 mgr.smithi003.ghjsjw (mgr.14197) 280 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:56.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:56 smithi003 bash[19900]: cluster 2024-09-06T15:06:55.665252+0000 mgr.smithi003.ghjsjw (mgr.14197) 280 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:56.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:56 smithi120 bash[24835]: cluster 2024-09-06T15:06:55.665252+0000 mgr.smithi003.ghjsjw (mgr.14197) 280 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:56.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:56 smithi120 bash[24835]: cluster 2024-09-06T15:06:55.665252+0000 mgr.smithi003.ghjsjw (mgr.14197) 280 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:57.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:57 smithi120 bash[24835]: audit 2024-09-06T15:06:57.532126+0000 mon.smithi003 (mon.0) 810 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:57.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:57 smithi120 bash[24835]: audit 2024-09-06T15:06:57.532126+0000 mon.smithi003 (mon.0) 810 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:58.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:57 smithi003 bash[19900]: audit 2024-09-06T15:06:57.532126+0000 mon.smithi003 (mon.0) 810 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:57 smithi003 bash[19900]: audit 2024-09-06T15:06:57.532126+0000 mon.smithi003 (mon.0) 810 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:06:58.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:58 smithi120 bash[24835]: cluster 2024-09-06T15:06:57.665857+0000 mgr.smithi003.ghjsjw (mgr.14197) 281 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:58.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:06:58 smithi120 bash[24835]: cluster 2024-09-06T15:06:57.665857+0000 mgr.smithi003.ghjsjw (mgr.14197) 281 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:59.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:58 smithi003 bash[19900]: cluster 2024-09-06T15:06:57.665857+0000 mgr.smithi003.ghjsjw (mgr.14197) 281 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:06:59.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:06:58 smithi003 bash[19900]: cluster 2024-09-06T15:06:57.665857+0000 mgr.smithi003.ghjsjw (mgr.14197) 281 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:00.640 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:07:00.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:00 smithi120 bash[24835]: cluster 2024-09-06T15:06:59.666661+0000 mgr.smithi003.ghjsjw (mgr.14197) 282 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:00.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:00 smithi120 bash[24835]: cluster 2024-09-06T15:06:59.666661+0000 mgr.smithi003.ghjsjw (mgr.14197) 282 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:01.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:00 smithi003 bash[19900]: cluster 2024-09-06T15:06:59.666661+0000 mgr.smithi003.ghjsjw (mgr.14197) 282 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:01.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:00 smithi003 bash[19900]: cluster 2024-09-06T15:06:59.666661+0000 mgr.smithi003.ghjsjw (mgr.14197) 282 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:02.231 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:07:02.232 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:07:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:02 smithi120 bash[24835]: cluster 2024-09-06T15:07:01.667334+0000 mgr.smithi003.ghjsjw (mgr.14197) 283 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:02 smithi120 bash[24835]: cluster 2024-09-06T15:07:01.667334+0000 mgr.smithi003.ghjsjw (mgr.14197) 283 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:02 smithi120 bash[24835]: audit 2024-09-06T15:07:02.234216+0000 mon.smithi003 (mon.0) 811 : audit [DBG] from='client.? 172.21.15.3:0/2787316785' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:02 smithi120 bash[24835]: audit 2024-09-06T15:07:02.234216+0000 mon.smithi003 (mon.0) 811 : audit [DBG] from='client.? 172.21.15.3:0/2787316785' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:03.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:02 smithi003 bash[19900]: cluster 2024-09-06T15:07:01.667334+0000 mgr.smithi003.ghjsjw (mgr.14197) 283 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:03.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:02 smithi003 bash[19900]: cluster 2024-09-06T15:07:01.667334+0000 mgr.smithi003.ghjsjw (mgr.14197) 283 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:03.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:02 smithi003 bash[19900]: audit 2024-09-06T15:07:02.234216+0000 mon.smithi003 (mon.0) 811 : audit [DBG] from='client.? 172.21.15.3:0/2787316785' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:03.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:02 smithi003 bash[19900]: audit 2024-09-06T15:07:02.234216+0000 mon.smithi003 (mon.0) 811 : audit [DBG] from='client.? 172.21.15.3:0/2787316785' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:04.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:04 smithi120 bash[24835]: cluster 2024-09-06T15:07:03.668111+0000 mgr.smithi003.ghjsjw (mgr.14197) 284 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:04.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:04 smithi120 bash[24835]: cluster 2024-09-06T15:07:03.668111+0000 mgr.smithi003.ghjsjw (mgr.14197) 284 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:05.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:04 smithi003 bash[19900]: cluster 2024-09-06T15:07:03.668111+0000 mgr.smithi003.ghjsjw (mgr.14197) 284 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:04 smithi003 bash[19900]: cluster 2024-09-06T15:07:03.668111+0000 mgr.smithi003.ghjsjw (mgr.14197) 284 : cluster [DBG] pgmap v246: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:05.910 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:07:06.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:06 smithi120 bash[24835]: cluster 2024-09-06T15:07:05.668862+0000 mgr.smithi003.ghjsjw (mgr.14197) 285 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:06.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:06 smithi120 bash[24835]: cluster 2024-09-06T15:07:05.668862+0000 mgr.smithi003.ghjsjw (mgr.14197) 285 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:07.015 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:06 smithi003 bash[19900]: cluster 2024-09-06T15:07:05.668862+0000 mgr.smithi003.ghjsjw (mgr.14197) 285 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:07.015 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:06 smithi003 bash[19900]: cluster 2024-09-06T15:07:05.668862+0000 mgr.smithi003.ghjsjw (mgr.14197) 285 : cluster [DBG] pgmap v247: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:08.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:08 smithi120 bash[24835]: cluster 2024-09-06T15:07:07.669526+0000 mgr.smithi003.ghjsjw (mgr.14197) 286 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:08.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:08 smithi120 bash[24835]: cluster 2024-09-06T15:07:07.669526+0000 mgr.smithi003.ghjsjw (mgr.14197) 286 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:09.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:08 smithi003 bash[19900]: cluster 2024-09-06T15:07:07.669526+0000 mgr.smithi003.ghjsjw (mgr.14197) 286 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:08 smithi003 bash[19900]: cluster 2024-09-06T15:07:07.669526+0000 mgr.smithi003.ghjsjw (mgr.14197) 286 : cluster [DBG] pgmap v248: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:10.732 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:07:10.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:10 smithi120 bash[24835]: cluster 2024-09-06T15:07:09.670205+0000 mgr.smithi003.ghjsjw (mgr.14197) 287 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:10.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:10 smithi120 bash[24835]: cluster 2024-09-06T15:07:09.670205+0000 mgr.smithi003.ghjsjw (mgr.14197) 287 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:11.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:10 smithi003 bash[19900]: cluster 2024-09-06T15:07:09.670205+0000 mgr.smithi003.ghjsjw (mgr.14197) 287 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:11.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:10 smithi003 bash[19900]: cluster 2024-09-06T15:07:09.670205+0000 mgr.smithi003.ghjsjw (mgr.14197) 287 : cluster [DBG] pgmap v249: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:12.192 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:07:12.192 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:07:12.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:12 smithi120 bash[24835]: cluster 2024-09-06T15:07:11.670900+0000 mgr.smithi003.ghjsjw (mgr.14197) 288 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:12.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:12 smithi120 bash[24835]: cluster 2024-09-06T15:07:11.670900+0000 mgr.smithi003.ghjsjw (mgr.14197) 288 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:12.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:12 smithi120 bash[24835]: audit 2024-09-06T15:07:12.195262+0000 mon.smithi003 (mon.0) 812 : audit [DBG] from='client.? 172.21.15.3:0/1087150362' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:12.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:12 smithi120 bash[24835]: audit 2024-09-06T15:07:12.195262+0000 mon.smithi003 (mon.0) 812 : audit [DBG] from='client.? 172.21.15.3:0/1087150362' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:12.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:12 smithi120 bash[24835]: audit 2024-09-06T15:07:12.532573+0000 mon.smithi003 (mon.0) 813 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:12.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:12 smithi120 bash[24835]: audit 2024-09-06T15:07:12.532573+0000 mon.smithi003 (mon.0) 813 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:12 smithi003 bash[19900]: cluster 2024-09-06T15:07:11.670900+0000 mgr.smithi003.ghjsjw (mgr.14197) 288 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:12 smithi003 bash[19900]: cluster 2024-09-06T15:07:11.670900+0000 mgr.smithi003.ghjsjw (mgr.14197) 288 : cluster [DBG] pgmap v250: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:12 smithi003 bash[19900]: audit 2024-09-06T15:07:12.195262+0000 mon.smithi003 (mon.0) 812 : audit [DBG] from='client.? 172.21.15.3:0/1087150362' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:12 smithi003 bash[19900]: audit 2024-09-06T15:07:12.195262+0000 mon.smithi003 (mon.0) 812 : audit [DBG] from='client.? 172.21.15.3:0/1087150362' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:12 smithi003 bash[19900]: audit 2024-09-06T15:07:12.532573+0000 mon.smithi003 (mon.0) 813 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:12 smithi003 bash[19900]: audit 2024-09-06T15:07:12.532573+0000 mon.smithi003 (mon.0) 813 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:14.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:14 smithi120 bash[24835]: cluster 2024-09-06T15:07:13.671598+0000 mgr.smithi003.ghjsjw (mgr.14197) 289 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:14.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:14 smithi120 bash[24835]: cluster 2024-09-06T15:07:13.671598+0000 mgr.smithi003.ghjsjw (mgr.14197) 289 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:15.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:14 smithi003 bash[19900]: cluster 2024-09-06T15:07:13.671598+0000 mgr.smithi003.ghjsjw (mgr.14197) 289 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:15.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:14 smithi003 bash[19900]: cluster 2024-09-06T15:07:13.671598+0000 mgr.smithi003.ghjsjw (mgr.14197) 289 : cluster [DBG] pgmap v251: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:15.869 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:07:16.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:16 smithi120 bash[24835]: cluster 2024-09-06T15:07:15.672285+0000 mgr.smithi003.ghjsjw (mgr.14197) 290 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:16.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:16 smithi120 bash[24835]: cluster 2024-09-06T15:07:15.672285+0000 mgr.smithi003.ghjsjw (mgr.14197) 290 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:17.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:16 smithi003 bash[19900]: cluster 2024-09-06T15:07:15.672285+0000 mgr.smithi003.ghjsjw (mgr.14197) 290 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:16 smithi003 bash[19900]: cluster 2024-09-06T15:07:15.672285+0000 mgr.smithi003.ghjsjw (mgr.14197) 290 : cluster [DBG] pgmap v252: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:18.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:18 smithi120 bash[24835]: cluster 2024-09-06T15:07:17.673012+0000 mgr.smithi003.ghjsjw (mgr.14197) 291 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:18.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:18 smithi120 bash[24835]: cluster 2024-09-06T15:07:17.673012+0000 mgr.smithi003.ghjsjw (mgr.14197) 291 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:19.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:18 smithi003 bash[19900]: cluster 2024-09-06T15:07:17.673012+0000 mgr.smithi003.ghjsjw (mgr.14197) 291 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:19.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:18 smithi003 bash[19900]: cluster 2024-09-06T15:07:17.673012+0000 mgr.smithi003.ghjsjw (mgr.14197) 291 : cluster [DBG] pgmap v253: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:20.701 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:07:20.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:20 smithi120 bash[24835]: cluster 2024-09-06T15:07:19.673705+0000 mgr.smithi003.ghjsjw (mgr.14197) 292 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:20.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:20 smithi120 bash[24835]: cluster 2024-09-06T15:07:19.673705+0000 mgr.smithi003.ghjsjw (mgr.14197) 292 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:21.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:20 smithi003 bash[19900]: cluster 2024-09-06T15:07:19.673705+0000 mgr.smithi003.ghjsjw (mgr.14197) 292 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:21.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:20 smithi003 bash[19900]: cluster 2024-09-06T15:07:19.673705+0000 mgr.smithi003.ghjsjw (mgr.14197) 292 : cluster [DBG] pgmap v254: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:22.183 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:07:22.183 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:07:22.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:22 smithi120 bash[24835]: cluster 2024-09-06T15:07:21.674340+0000 mgr.smithi003.ghjsjw (mgr.14197) 293 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:22.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:22 smithi120 bash[24835]: cluster 2024-09-06T15:07:21.674340+0000 mgr.smithi003.ghjsjw (mgr.14197) 293 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:22.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:22 smithi120 bash[24835]: audit 2024-09-06T15:07:22.185865+0000 mon.smithi003 (mon.0) 814 : audit [DBG] from='client.? 172.21.15.3:0/3231936287' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:22.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:22 smithi120 bash[24835]: audit 2024-09-06T15:07:22.185865+0000 mon.smithi003 (mon.0) 814 : audit [DBG] from='client.? 172.21.15.3:0/3231936287' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:23.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:22 smithi003 bash[19900]: cluster 2024-09-06T15:07:21.674340+0000 mgr.smithi003.ghjsjw (mgr.14197) 293 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:22 smithi003 bash[19900]: cluster 2024-09-06T15:07:21.674340+0000 mgr.smithi003.ghjsjw (mgr.14197) 293 : cluster [DBG] pgmap v255: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:22 smithi003 bash[19900]: audit 2024-09-06T15:07:22.185865+0000 mon.smithi003 (mon.0) 814 : audit [DBG] from='client.? 172.21.15.3:0/3231936287' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:22 smithi003 bash[19900]: audit 2024-09-06T15:07:22.185865+0000 mon.smithi003 (mon.0) 814 : audit [DBG] from='client.? 172.21.15.3:0/3231936287' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:24 smithi003 bash[19900]: cluster 2024-09-06T15:07:23.675028+0000 mgr.smithi003.ghjsjw (mgr.14197) 294 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:24 smithi003 bash[19900]: cluster 2024-09-06T15:07:23.675028+0000 mgr.smithi003.ghjsjw (mgr.14197) 294 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:25.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:24 smithi120 bash[24835]: cluster 2024-09-06T15:07:23.675028+0000 mgr.smithi003.ghjsjw (mgr.14197) 294 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:25.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:24 smithi120 bash[24835]: cluster 2024-09-06T15:07:23.675028+0000 mgr.smithi003.ghjsjw (mgr.14197) 294 : cluster [DBG] pgmap v256: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:25.875 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:07:27.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:26 smithi003 bash[19900]: cluster 2024-09-06T15:07:25.675768+0000 mgr.smithi003.ghjsjw (mgr.14197) 295 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:26 smithi003 bash[19900]: cluster 2024-09-06T15:07:25.675768+0000 mgr.smithi003.ghjsjw (mgr.14197) 295 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:27.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:26 smithi120 bash[24835]: cluster 2024-09-06T15:07:25.675768+0000 mgr.smithi003.ghjsjw (mgr.14197) 295 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:27.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:26 smithi120 bash[24835]: cluster 2024-09-06T15:07:25.675768+0000 mgr.smithi003.ghjsjw (mgr.14197) 295 : cluster [DBG] pgmap v257: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:28.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:27 smithi003 bash[19900]: audit 2024-09-06T15:07:27.533052+0000 mon.smithi003 (mon.0) 815 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:27 smithi003 bash[19900]: audit 2024-09-06T15:07:27.533052+0000 mon.smithi003 (mon.0) 815 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:28.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:27 smithi120 bash[24835]: audit 2024-09-06T15:07:27.533052+0000 mon.smithi003 (mon.0) 815 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:28.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:27 smithi120 bash[24835]: audit 2024-09-06T15:07:27.533052+0000 mon.smithi003 (mon.0) 815 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:29.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:28 smithi003 bash[19900]: cluster 2024-09-06T15:07:27.676353+0000 mgr.smithi003.ghjsjw (mgr.14197) 296 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:29.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:28 smithi003 bash[19900]: cluster 2024-09-06T15:07:27.676353+0000 mgr.smithi003.ghjsjw (mgr.14197) 296 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:29.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:28 smithi120 bash[24835]: cluster 2024-09-06T15:07:27.676353+0000 mgr.smithi003.ghjsjw (mgr.14197) 296 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:29.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:28 smithi120 bash[24835]: cluster 2024-09-06T15:07:27.676353+0000 mgr.smithi003.ghjsjw (mgr.14197) 296 : cluster [DBG] pgmap v258: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:30.491 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:30 smithi120 bash[24835]: cluster 2024-09-06T15:07:29.677091+0000 mgr.smithi003.ghjsjw (mgr.14197) 297 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:30.491 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:30 smithi120 bash[24835]: cluster 2024-09-06T15:07:29.677091+0000 mgr.smithi003.ghjsjw (mgr.14197) 297 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:30.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:30 smithi003 bash[19900]: cluster 2024-09-06T15:07:29.677091+0000 mgr.smithi003.ghjsjw (mgr.14197) 297 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:30.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:30 smithi003 bash[19900]: cluster 2024-09-06T15:07:29.677091+0000 mgr.smithi003.ghjsjw (mgr.14197) 297 : cluster [DBG] pgmap v259: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:30.700 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:07:32.335 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:07:32.335 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:07:32.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:32 smithi120 bash[24835]: cluster 2024-09-06T15:07:31.677743+0000 mgr.smithi003.ghjsjw (mgr.14197) 298 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:32.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:32 smithi120 bash[24835]: cluster 2024-09-06T15:07:31.677743+0000 mgr.smithi003.ghjsjw (mgr.14197) 298 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:32.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:32 smithi120 bash[24835]: audit 2024-09-06T15:07:32.337779+0000 mon.smithi003 (mon.0) 816 : audit [DBG] from='client.? 172.21.15.3:0/3985592940' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:32.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:32 smithi120 bash[24835]: audit 2024-09-06T15:07:32.337779+0000 mon.smithi003 (mon.0) 816 : audit [DBG] from='client.? 172.21.15.3:0/3985592940' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:33.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:32 smithi003 bash[19900]: cluster 2024-09-06T15:07:31.677743+0000 mgr.smithi003.ghjsjw (mgr.14197) 298 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:32 smithi003 bash[19900]: cluster 2024-09-06T15:07:31.677743+0000 mgr.smithi003.ghjsjw (mgr.14197) 298 : cluster [DBG] pgmap v260: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:32 smithi003 bash[19900]: audit 2024-09-06T15:07:32.337779+0000 mon.smithi003 (mon.0) 816 : audit [DBG] from='client.? 172.21.15.3:0/3985592940' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:32 smithi003 bash[19900]: audit 2024-09-06T15:07:32.337779+0000 mon.smithi003 (mon.0) 816 : audit [DBG] from='client.? 172.21.15.3:0/3985592940' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:34.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:34 smithi120 bash[24835]: cluster 2024-09-06T15:07:33.678385+0000 mgr.smithi003.ghjsjw (mgr.14197) 299 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:34.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:34 smithi120 bash[24835]: cluster 2024-09-06T15:07:33.678385+0000 mgr.smithi003.ghjsjw (mgr.14197) 299 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:35.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:34 smithi003 bash[19900]: cluster 2024-09-06T15:07:33.678385+0000 mgr.smithi003.ghjsjw (mgr.14197) 299 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:35.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:34 smithi003 bash[19900]: cluster 2024-09-06T15:07:33.678385+0000 mgr.smithi003.ghjsjw (mgr.14197) 299 : cluster [DBG] pgmap v261: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:35.981 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:07:36.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:36 smithi120 bash[24835]: cluster 2024-09-06T15:07:35.679131+0000 mgr.smithi003.ghjsjw (mgr.14197) 300 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:36.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:36 smithi120 bash[24835]: cluster 2024-09-06T15:07:35.679131+0000 mgr.smithi003.ghjsjw (mgr.14197) 300 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:37.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:36 smithi003 bash[19900]: cluster 2024-09-06T15:07:35.679131+0000 mgr.smithi003.ghjsjw (mgr.14197) 300 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:37.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:36 smithi003 bash[19900]: cluster 2024-09-06T15:07:35.679131+0000 mgr.smithi003.ghjsjw (mgr.14197) 300 : cluster [DBG] pgmap v262: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:39.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:38 smithi003 bash[19900]: cluster 2024-09-06T15:07:37.679777+0000 mgr.smithi003.ghjsjw (mgr.14197) 301 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:38 smithi003 bash[19900]: cluster 2024-09-06T15:07:37.679777+0000 mgr.smithi003.ghjsjw (mgr.14197) 301 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:39.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:38 smithi120 bash[24835]: cluster 2024-09-06T15:07:37.679777+0000 mgr.smithi003.ghjsjw (mgr.14197) 301 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:39.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:38 smithi120 bash[24835]: cluster 2024-09-06T15:07:37.679777+0000 mgr.smithi003.ghjsjw (mgr.14197) 301 : cluster [DBG] pgmap v263: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:40.800 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:07:41.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:40 smithi003 bash[19900]: cluster 2024-09-06T15:07:39.680407+0000 mgr.smithi003.ghjsjw (mgr.14197) 302 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:41.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:40 smithi003 bash[19900]: cluster 2024-09-06T15:07:39.680407+0000 mgr.smithi003.ghjsjw (mgr.14197) 302 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:41.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:40 smithi120 bash[24835]: cluster 2024-09-06T15:07:39.680407+0000 mgr.smithi003.ghjsjw (mgr.14197) 302 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:41.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:40 smithi120 bash[24835]: cluster 2024-09-06T15:07:39.680407+0000 mgr.smithi003.ghjsjw (mgr.14197) 302 : cluster [DBG] pgmap v264: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:42.277 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:07:42.277 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:07:43.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:42 smithi003 bash[19900]: cluster 2024-09-06T15:07:41.681121+0000 mgr.smithi003.ghjsjw (mgr.14197) 303 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:42 smithi003 bash[19900]: cluster 2024-09-06T15:07:41.681121+0000 mgr.smithi003.ghjsjw (mgr.14197) 303 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:42 smithi003 bash[19900]: audit 2024-09-06T15:07:42.279797+0000 mon.smithi003 (mon.0) 817 : audit [DBG] from='client.? 172.21.15.3:0/2700920336' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:42 smithi003 bash[19900]: audit 2024-09-06T15:07:42.279797+0000 mon.smithi003 (mon.0) 817 : audit [DBG] from='client.? 172.21.15.3:0/2700920336' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:42 smithi003 bash[19900]: audit 2024-09-06T15:07:42.533743+0000 mon.smithi003 (mon.0) 818 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:42 smithi003 bash[19900]: audit 2024-09-06T15:07:42.533743+0000 mon.smithi003 (mon.0) 818 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:43.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:42 smithi120 bash[24835]: cluster 2024-09-06T15:07:41.681121+0000 mgr.smithi003.ghjsjw (mgr.14197) 303 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:42 smithi120 bash[24835]: cluster 2024-09-06T15:07:41.681121+0000 mgr.smithi003.ghjsjw (mgr.14197) 303 : cluster [DBG] pgmap v265: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:42 smithi120 bash[24835]: audit 2024-09-06T15:07:42.279797+0000 mon.smithi003 (mon.0) 817 : audit [DBG] from='client.? 172.21.15.3:0/2700920336' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:42 smithi120 bash[24835]: audit 2024-09-06T15:07:42.279797+0000 mon.smithi003 (mon.0) 817 : audit [DBG] from='client.? 172.21.15.3:0/2700920336' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:42 smithi120 bash[24835]: audit 2024-09-06T15:07:42.533743+0000 mon.smithi003 (mon.0) 818 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:42 smithi120 bash[24835]: audit 2024-09-06T15:07:42.533743+0000 mon.smithi003 (mon.0) 818 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:45.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:44 smithi003 bash[19900]: cluster 2024-09-06T15:07:43.681770+0000 mgr.smithi003.ghjsjw (mgr.14197) 304 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:45.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:44 smithi003 bash[19900]: cluster 2024-09-06T15:07:43.681770+0000 mgr.smithi003.ghjsjw (mgr.14197) 304 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:45.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:44 smithi120 bash[24835]: cluster 2024-09-06T15:07:43.681770+0000 mgr.smithi003.ghjsjw (mgr.14197) 304 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:45.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:44 smithi120 bash[24835]: cluster 2024-09-06T15:07:43.681770+0000 mgr.smithi003.ghjsjw (mgr.14197) 304 : cluster [DBG] pgmap v266: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:45.942 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:07:47.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:46 smithi003 bash[19900]: cluster 2024-09-06T15:07:45.682455+0000 mgr.smithi003.ghjsjw (mgr.14197) 305 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:47.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:46 smithi003 bash[19900]: cluster 2024-09-06T15:07:45.682455+0000 mgr.smithi003.ghjsjw (mgr.14197) 305 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:47.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:46 smithi120 bash[24835]: cluster 2024-09-06T15:07:45.682455+0000 mgr.smithi003.ghjsjw (mgr.14197) 305 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:47.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:46 smithi120 bash[24835]: cluster 2024-09-06T15:07:45.682455+0000 mgr.smithi003.ghjsjw (mgr.14197) 305 : cluster [DBG] pgmap v267: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:48.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:47 smithi003 bash[19900]: cluster 2024-09-06T15:07:47.683143+0000 mgr.smithi003.ghjsjw (mgr.14197) 306 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:48.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:47 smithi003 bash[19900]: cluster 2024-09-06T15:07:47.683143+0000 mgr.smithi003.ghjsjw (mgr.14197) 306 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:48.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:47 smithi120 bash[24835]: cluster 2024-09-06T15:07:47.683143+0000 mgr.smithi003.ghjsjw (mgr.14197) 306 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:48.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:47 smithi120 bash[24835]: cluster 2024-09-06T15:07:47.683143+0000 mgr.smithi003.ghjsjw (mgr.14197) 306 : cluster [DBG] pgmap v268: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:49.490 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:49 smithi120 bash[24835]: audit 2024-09-06T15:07:49.183575+0000 mon.smithi003 (mon.0) 819 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:07:49.490 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:49 smithi120 bash[24835]: audit 2024-09-06T15:07:49.183575+0000 mon.smithi003 (mon.0) 819 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:07:49.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:49 smithi003 bash[19900]: audit 2024-09-06T15:07:49.183575+0000 mon.smithi003 (mon.0) 819 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:07:49.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:49 smithi003 bash[19900]: audit 2024-09-06T15:07:49.183575+0000 mon.smithi003 (mon.0) 819 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:07:50.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:50 smithi003 bash[19900]: cluster 2024-09-06T15:07:49.683800+0000 mgr.smithi003.ghjsjw (mgr.14197) 307 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:50.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:50 smithi003 bash[19900]: cluster 2024-09-06T15:07:49.683800+0000 mgr.smithi003.ghjsjw (mgr.14197) 307 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:50.740 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:50 smithi120 bash[24835]: cluster 2024-09-06T15:07:49.683800+0000 mgr.smithi003.ghjsjw (mgr.14197) 307 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:50.740 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:50 smithi120 bash[24835]: cluster 2024-09-06T15:07:49.683800+0000 mgr.smithi003.ghjsjw (mgr.14197) 307 : cluster [DBG] pgmap v269: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:50.765 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:07:52.320 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:07:52.321 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:07:52.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:52 smithi120 bash[24835]: cluster 2024-09-06T15:07:51.684460+0000 mgr.smithi003.ghjsjw (mgr.14197) 308 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:52.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:52 smithi120 bash[24835]: cluster 2024-09-06T15:07:51.684460+0000 mgr.smithi003.ghjsjw (mgr.14197) 308 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:52.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:52 smithi120 bash[24835]: audit 2024-09-06T15:07:52.323423+0000 mon.smithi003 (mon.0) 820 : audit [DBG] from='client.? 172.21.15.3:0/3098656301' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:52.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:52 smithi120 bash[24835]: audit 2024-09-06T15:07:52.323423+0000 mon.smithi003 (mon.0) 820 : audit [DBG] from='client.? 172.21.15.3:0/3098656301' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:53.005 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:52 smithi003 bash[19900]: cluster 2024-09-06T15:07:51.684460+0000 mgr.smithi003.ghjsjw (mgr.14197) 308 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:53.005 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:52 smithi003 bash[19900]: cluster 2024-09-06T15:07:51.684460+0000 mgr.smithi003.ghjsjw (mgr.14197) 308 : cluster [DBG] pgmap v270: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:53.005 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:52 smithi003 bash[19900]: audit 2024-09-06T15:07:52.323423+0000 mon.smithi003 (mon.0) 820 : audit [DBG] from='client.? 172.21.15.3:0/3098656301' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:53.005 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:52 smithi003 bash[19900]: audit 2024-09-06T15:07:52.323423+0000 mon.smithi003 (mon.0) 820 : audit [DBG] from='client.? 172.21.15.3:0/3098656301' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:07:55.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:54 smithi003 bash[19900]: cluster 2024-09-06T15:07:53.685104+0000 mgr.smithi003.ghjsjw (mgr.14197) 309 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:55.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:54 smithi003 bash[19900]: cluster 2024-09-06T15:07:53.685104+0000 mgr.smithi003.ghjsjw (mgr.14197) 309 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:55.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:54 smithi120 bash[24835]: cluster 2024-09-06T15:07:53.685104+0000 mgr.smithi003.ghjsjw (mgr.14197) 309 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:55.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:54 smithi120 bash[24835]: cluster 2024-09-06T15:07:53.685104+0000 mgr.smithi003.ghjsjw (mgr.14197) 309 : cluster [DBG] pgmap v271: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:55.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:54.770568+0000 mon.smithi003 (mon.0) 821 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:54.770568+0000 mon.smithi003 (mon.0) 821 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:54.775269+0000 mon.smithi003 (mon.0) 822 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:54.775269+0000 mon.smithi003 (mon.0) 822 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:54.785497+0000 mon.smithi003 (mon.0) 823 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:54.785497+0000 mon.smithi003 (mon.0) 823 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:54.790884+0000 mon.smithi003 (mon.0) 824 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:54.790884+0000 mon.smithi003 (mon.0) 824 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:55.482878+0000 mon.smithi003 (mon.0) 825 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:55.482878+0000 mon.smithi003 (mon.0) 825 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:55.484145+0000 mon.smithi003 (mon.0) 826 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:55.484145+0000 mon.smithi003 (mon.0) 826 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:55.490636+0000 mon.smithi003 (mon.0) 827 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:55.490636+0000 mon.smithi003 (mon.0) 827 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:55.493903+0000 mon.smithi003 (mon.0) 828 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: audit 2024-09-06T15:07:55.493903+0000 mon.smithi003 (mon.0) 828 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: cluster 2024-09-06T15:07:55.685734+0000 mgr.smithi003.ghjsjw (mgr.14197) 310 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:55.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:55 smithi003 bash[19900]: cluster 2024-09-06T15:07:55.685734+0000 mgr.smithi003.ghjsjw (mgr.14197) 310 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:56.007 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:07:56.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:54.770568+0000 mon.smithi003 (mon.0) 821 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:54.770568+0000 mon.smithi003 (mon.0) 821 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:54.775269+0000 mon.smithi003 (mon.0) 822 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:54.775269+0000 mon.smithi003 (mon.0) 822 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:54.785497+0000 mon.smithi003 (mon.0) 823 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:54.785497+0000 mon.smithi003 (mon.0) 823 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:54.790884+0000 mon.smithi003 (mon.0) 824 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:54.790884+0000 mon.smithi003 (mon.0) 824 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:55.482878+0000 mon.smithi003 (mon.0) 825 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:55.482878+0000 mon.smithi003 (mon.0) 825 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:55.484145+0000 mon.smithi003 (mon.0) 826 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:55.484145+0000 mon.smithi003 (mon.0) 826 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:55.490636+0000 mon.smithi003 (mon.0) 827 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:55.490636+0000 mon.smithi003 (mon.0) 827 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:55.493903+0000 mon.smithi003 (mon.0) 828 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: audit 2024-09-06T15:07:55.493903+0000 mon.smithi003 (mon.0) 828 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:07:56.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: cluster 2024-09-06T15:07:55.685734+0000 mgr.smithi003.ghjsjw (mgr.14197) 310 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:56.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:55 smithi120 bash[24835]: cluster 2024-09-06T15:07:55.685734+0000 mgr.smithi003.ghjsjw (mgr.14197) 310 : cluster [DBG] pgmap v272: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:57.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:57 smithi003 bash[19900]: audit 2024-09-06T15:07:57.534016+0000 mon.smithi003 (mon.0) 829 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:57.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:57 smithi003 bash[19900]: audit 2024-09-06T15:07:57.534016+0000 mon.smithi003 (mon.0) 829 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:57.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:57 smithi120 bash[24835]: audit 2024-09-06T15:07:57.534016+0000 mon.smithi003 (mon.0) 829 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:57.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:57 smithi120 bash[24835]: audit 2024-09-06T15:07:57.534016+0000 mon.smithi003 (mon.0) 829 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:07:58.881 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:58 smithi003 bash[19900]: cluster 2024-09-06T15:07:57.686389+0000 mgr.smithi003.ghjsjw (mgr.14197) 311 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:58.881 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:07:58 smithi003 bash[19900]: cluster 2024-09-06T15:07:57.686389+0000 mgr.smithi003.ghjsjw (mgr.14197) 311 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:58.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:58 smithi120 bash[24835]: cluster 2024-09-06T15:07:57.686389+0000 mgr.smithi003.ghjsjw (mgr.14197) 311 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:07:58.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:07:58 smithi120 bash[24835]: cluster 2024-09-06T15:07:57.686389+0000 mgr.smithi003.ghjsjw (mgr.14197) 311 : cluster [DBG] pgmap v273: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:00.828 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:08:01.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:00 smithi003 bash[19900]: cluster 2024-09-06T15:07:59.687196+0000 mgr.smithi003.ghjsjw (mgr.14197) 312 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:01.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:00 smithi003 bash[19900]: cluster 2024-09-06T15:07:59.687196+0000 mgr.smithi003.ghjsjw (mgr.14197) 312 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:01.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:00 smithi120 bash[24835]: cluster 2024-09-06T15:07:59.687196+0000 mgr.smithi003.ghjsjw (mgr.14197) 312 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:01.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:00 smithi120 bash[24835]: cluster 2024-09-06T15:07:59.687196+0000 mgr.smithi003.ghjsjw (mgr.14197) 312 : cluster [DBG] pgmap v274: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:02.300 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:08:02.300 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:08:03.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:02 smithi003 bash[19900]: cluster 2024-09-06T15:08:01.687881+0000 mgr.smithi003.ghjsjw (mgr.14197) 313 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:03.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:02 smithi003 bash[19900]: cluster 2024-09-06T15:08:01.687881+0000 mgr.smithi003.ghjsjw (mgr.14197) 313 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:03.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:02 smithi003 bash[19900]: audit 2024-09-06T15:08:02.302259+0000 mon.smithi003 (mon.0) 830 : audit [DBG] from='client.? 172.21.15.3:0/1163580186' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:03.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:02 smithi003 bash[19900]: audit 2024-09-06T15:08:02.302259+0000 mon.smithi003 (mon.0) 830 : audit [DBG] from='client.? 172.21.15.3:0/1163580186' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:03.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:02 smithi120 bash[24835]: cluster 2024-09-06T15:08:01.687881+0000 mgr.smithi003.ghjsjw (mgr.14197) 313 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:03.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:02 smithi120 bash[24835]: cluster 2024-09-06T15:08:01.687881+0000 mgr.smithi003.ghjsjw (mgr.14197) 313 : cluster [DBG] pgmap v275: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:03.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:02 smithi120 bash[24835]: audit 2024-09-06T15:08:02.302259+0000 mon.smithi003 (mon.0) 830 : audit [DBG] from='client.? 172.21.15.3:0/1163580186' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:03.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:02 smithi120 bash[24835]: audit 2024-09-06T15:08:02.302259+0000 mon.smithi003 (mon.0) 830 : audit [DBG] from='client.? 172.21.15.3:0/1163580186' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:05.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:04 smithi003 bash[19900]: cluster 2024-09-06T15:08:03.688522+0000 mgr.smithi003.ghjsjw (mgr.14197) 314 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:05.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:04 smithi003 bash[19900]: cluster 2024-09-06T15:08:03.688522+0000 mgr.smithi003.ghjsjw (mgr.14197) 314 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:05.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:04 smithi120 bash[24835]: cluster 2024-09-06T15:08:03.688522+0000 mgr.smithi003.ghjsjw (mgr.14197) 314 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:05.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:04 smithi120 bash[24835]: cluster 2024-09-06T15:08:03.688522+0000 mgr.smithi003.ghjsjw (mgr.14197) 314 : cluster [DBG] pgmap v276: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:05.979 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:08:07.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:06 smithi003 bash[19900]: cluster 2024-09-06T15:08:05.689215+0000 mgr.smithi003.ghjsjw (mgr.14197) 315 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:06 smithi003 bash[19900]: cluster 2024-09-06T15:08:05.689215+0000 mgr.smithi003.ghjsjw (mgr.14197) 315 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:07.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:06 smithi120 bash[24835]: cluster 2024-09-06T15:08:05.689215+0000 mgr.smithi003.ghjsjw (mgr.14197) 315 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:07.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:06 smithi120 bash[24835]: cluster 2024-09-06T15:08:05.689215+0000 mgr.smithi003.ghjsjw (mgr.14197) 315 : cluster [DBG] pgmap v277: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:09.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:08 smithi003 bash[19900]: cluster 2024-09-06T15:08:07.689836+0000 mgr.smithi003.ghjsjw (mgr.14197) 316 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:08 smithi003 bash[19900]: cluster 2024-09-06T15:08:07.689836+0000 mgr.smithi003.ghjsjw (mgr.14197) 316 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:09.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:08 smithi120 bash[24835]: cluster 2024-09-06T15:08:07.689836+0000 mgr.smithi003.ghjsjw (mgr.14197) 316 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:09.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:08 smithi120 bash[24835]: cluster 2024-09-06T15:08:07.689836+0000 mgr.smithi003.ghjsjw (mgr.14197) 316 : cluster [DBG] pgmap v278: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:10.808 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:08:11.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:10 smithi003 bash[19900]: cluster 2024-09-06T15:08:09.690521+0000 mgr.smithi003.ghjsjw (mgr.14197) 317 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:11.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:10 smithi003 bash[19900]: cluster 2024-09-06T15:08:09.690521+0000 mgr.smithi003.ghjsjw (mgr.14197) 317 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:11.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:10 smithi120 bash[24835]: cluster 2024-09-06T15:08:09.690521+0000 mgr.smithi003.ghjsjw (mgr.14197) 317 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:11.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:10 smithi120 bash[24835]: cluster 2024-09-06T15:08:09.690521+0000 mgr.smithi003.ghjsjw (mgr.14197) 317 : cluster [DBG] pgmap v279: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:12.408 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:08:12.408 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:08:13.087 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:12 smithi003 bash[19900]: cluster 2024-09-06T15:08:11.691200+0000 mgr.smithi003.ghjsjw (mgr.14197) 318 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:13.087 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:12 smithi003 bash[19900]: cluster 2024-09-06T15:08:11.691200+0000 mgr.smithi003.ghjsjw (mgr.14197) 318 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:13.087 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:12 smithi003 bash[19900]: audit 2024-09-06T15:08:12.410460+0000 mon.smithi003 (mon.0) 831 : audit [DBG] from='client.? 172.21.15.3:0/3631431382' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:13.088 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:12 smithi003 bash[19900]: audit 2024-09-06T15:08:12.410460+0000 mon.smithi003 (mon.0) 831 : audit [DBG] from='client.? 172.21.15.3:0/3631431382' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:13.088 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:12 smithi003 bash[19900]: audit 2024-09-06T15:08:12.533678+0000 mon.smithi003 (mon.0) 832 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:13.088 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:12 smithi003 bash[19900]: audit 2024-09-06T15:08:12.533678+0000 mon.smithi003 (mon.0) 832 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:13.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:12 smithi120 bash[24835]: cluster 2024-09-06T15:08:11.691200+0000 mgr.smithi003.ghjsjw (mgr.14197) 318 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:13.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:12 smithi120 bash[24835]: cluster 2024-09-06T15:08:11.691200+0000 mgr.smithi003.ghjsjw (mgr.14197) 318 : cluster [DBG] pgmap v280: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:13.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:12 smithi120 bash[24835]: audit 2024-09-06T15:08:12.410460+0000 mon.smithi003 (mon.0) 831 : audit [DBG] from='client.? 172.21.15.3:0/3631431382' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:13.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:12 smithi120 bash[24835]: audit 2024-09-06T15:08:12.410460+0000 mon.smithi003 (mon.0) 831 : audit [DBG] from='client.? 172.21.15.3:0/3631431382' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:13.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:12 smithi120 bash[24835]: audit 2024-09-06T15:08:12.533678+0000 mon.smithi003 (mon.0) 832 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:13.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:12 smithi120 bash[24835]: audit 2024-09-06T15:08:12.533678+0000 mon.smithi003 (mon.0) 832 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:14.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:13 smithi003 bash[19900]: cluster 2024-09-06T15:08:13.691982+0000 mgr.smithi003.ghjsjw (mgr.14197) 319 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:14.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:13 smithi003 bash[19900]: cluster 2024-09-06T15:08:13.691982+0000 mgr.smithi003.ghjsjw (mgr.14197) 319 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:14.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:13 smithi120 bash[24835]: cluster 2024-09-06T15:08:13.691982+0000 mgr.smithi003.ghjsjw (mgr.14197) 319 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:14.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:13 smithi120 bash[24835]: cluster 2024-09-06T15:08:13.691982+0000 mgr.smithi003.ghjsjw (mgr.14197) 319 : cluster [DBG] pgmap v281: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:16.090 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:08:17.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:16 smithi003 bash[19900]: cluster 2024-09-06T15:08:15.692635+0000 mgr.smithi003.ghjsjw (mgr.14197) 320 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:16 smithi003 bash[19900]: cluster 2024-09-06T15:08:15.692635+0000 mgr.smithi003.ghjsjw (mgr.14197) 320 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:17.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:16 smithi120 bash[24835]: cluster 2024-09-06T15:08:15.692635+0000 mgr.smithi003.ghjsjw (mgr.14197) 320 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:17.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:16 smithi120 bash[24835]: cluster 2024-09-06T15:08:15.692635+0000 mgr.smithi003.ghjsjw (mgr.14197) 320 : cluster [DBG] pgmap v282: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:19.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:18 smithi003 bash[19900]: cluster 2024-09-06T15:08:17.693360+0000 mgr.smithi003.ghjsjw (mgr.14197) 321 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:18 smithi003 bash[19900]: cluster 2024-09-06T15:08:17.693360+0000 mgr.smithi003.ghjsjw (mgr.14197) 321 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:19.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:18 smithi120 bash[24835]: cluster 2024-09-06T15:08:17.693360+0000 mgr.smithi003.ghjsjw (mgr.14197) 321 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:19.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:18 smithi120 bash[24835]: cluster 2024-09-06T15:08:17.693360+0000 mgr.smithi003.ghjsjw (mgr.14197) 321 : cluster [DBG] pgmap v283: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:20.922 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:08:21.020 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:20 smithi003 bash[19900]: cluster 2024-09-06T15:08:19.694047+0000 mgr.smithi003.ghjsjw (mgr.14197) 322 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:21.020 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:20 smithi003 bash[19900]: cluster 2024-09-06T15:08:19.694047+0000 mgr.smithi003.ghjsjw (mgr.14197) 322 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:21.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:20 smithi120 bash[24835]: cluster 2024-09-06T15:08:19.694047+0000 mgr.smithi003.ghjsjw (mgr.14197) 322 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:21.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:20 smithi120 bash[24835]: cluster 2024-09-06T15:08:19.694047+0000 mgr.smithi003.ghjsjw (mgr.14197) 322 : cluster [DBG] pgmap v284: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:22.401 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:08:22.401 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:08:23.077 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:22 smithi003 bash[19900]: cluster 2024-09-06T15:08:21.694750+0000 mgr.smithi003.ghjsjw (mgr.14197) 323 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:23.077 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:22 smithi003 bash[19900]: cluster 2024-09-06T15:08:21.694750+0000 mgr.smithi003.ghjsjw (mgr.14197) 323 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:23.077 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:22 smithi003 bash[19900]: audit 2024-09-06T15:08:22.403524+0000 mon.smithi003 (mon.0) 833 : audit [DBG] from='client.? 172.21.15.3:0/4146230347' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:23.077 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:22 smithi003 bash[19900]: audit 2024-09-06T15:08:22.403524+0000 mon.smithi003 (mon.0) 833 : audit [DBG] from='client.? 172.21.15.3:0/4146230347' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:23.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:22 smithi120 bash[24835]: cluster 2024-09-06T15:08:21.694750+0000 mgr.smithi003.ghjsjw (mgr.14197) 323 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:23.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:22 smithi120 bash[24835]: cluster 2024-09-06T15:08:21.694750+0000 mgr.smithi003.ghjsjw (mgr.14197) 323 : cluster [DBG] pgmap v285: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:23.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:22 smithi120 bash[24835]: audit 2024-09-06T15:08:22.403524+0000 mon.smithi003 (mon.0) 833 : audit [DBG] from='client.? 172.21.15.3:0/4146230347' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:23.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:22 smithi120 bash[24835]: audit 2024-09-06T15:08:22.403524+0000 mon.smithi003 (mon.0) 833 : audit [DBG] from='client.? 172.21.15.3:0/4146230347' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:25.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:24 smithi003 bash[19900]: cluster 2024-09-06T15:08:23.695459+0000 mgr.smithi003.ghjsjw (mgr.14197) 324 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:24 smithi003 bash[19900]: cluster 2024-09-06T15:08:23.695459+0000 mgr.smithi003.ghjsjw (mgr.14197) 324 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:25.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:24 smithi120 bash[24835]: cluster 2024-09-06T15:08:23.695459+0000 mgr.smithi003.ghjsjw (mgr.14197) 324 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:25.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:24 smithi120 bash[24835]: cluster 2024-09-06T15:08:23.695459+0000 mgr.smithi003.ghjsjw (mgr.14197) 324 : cluster [DBG] pgmap v286: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:26.079 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:08:27.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:26 smithi003 bash[19900]: cluster 2024-09-06T15:08:25.696141+0000 mgr.smithi003.ghjsjw (mgr.14197) 325 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:26 smithi003 bash[19900]: cluster 2024-09-06T15:08:25.696141+0000 mgr.smithi003.ghjsjw (mgr.14197) 325 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:27.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:26 smithi120 bash[24835]: cluster 2024-09-06T15:08:25.696141+0000 mgr.smithi003.ghjsjw (mgr.14197) 325 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:27.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:26 smithi120 bash[24835]: cluster 2024-09-06T15:08:25.696141+0000 mgr.smithi003.ghjsjw (mgr.14197) 325 : cluster [DBG] pgmap v287: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:28.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:27 smithi003 bash[19900]: audit 2024-09-06T15:08:27.534693+0000 mon.smithi003 (mon.0) 834 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:27 smithi003 bash[19900]: audit 2024-09-06T15:08:27.534693+0000 mon.smithi003 (mon.0) 834 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:28.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:27 smithi120 bash[24835]: audit 2024-09-06T15:08:27.534693+0000 mon.smithi003 (mon.0) 834 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:28.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:27 smithi120 bash[24835]: audit 2024-09-06T15:08:27.534693+0000 mon.smithi003 (mon.0) 834 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:29.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:28 smithi003 bash[19900]: cluster 2024-09-06T15:08:27.696794+0000 mgr.smithi003.ghjsjw (mgr.14197) 326 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:29.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:28 smithi003 bash[19900]: cluster 2024-09-06T15:08:27.696794+0000 mgr.smithi003.ghjsjw (mgr.14197) 326 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:29.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:28 smithi120 bash[24835]: cluster 2024-09-06T15:08:27.696794+0000 mgr.smithi003.ghjsjw (mgr.14197) 326 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:29.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:28 smithi120 bash[24835]: cluster 2024-09-06T15:08:27.696794+0000 mgr.smithi003.ghjsjw (mgr.14197) 326 : cluster [DBG] pgmap v288: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:30.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:29 smithi003 bash[19900]: cluster 2024-09-06T15:08:29.697485+0000 mgr.smithi003.ghjsjw (mgr.14197) 327 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:30.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:29 smithi003 bash[19900]: cluster 2024-09-06T15:08:29.697485+0000 mgr.smithi003.ghjsjw (mgr.14197) 327 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:30.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:29 smithi120 bash[24835]: cluster 2024-09-06T15:08:29.697485+0000 mgr.smithi003.ghjsjw (mgr.14197) 327 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:30.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:29 smithi120 bash[24835]: cluster 2024-09-06T15:08:29.697485+0000 mgr.smithi003.ghjsjw (mgr.14197) 327 : cluster [DBG] pgmap v289: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:30.909 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:08:32.497 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:08:32.498 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:08:32.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:32 smithi003 bash[19900]: cluster 2024-09-06T15:08:31.698282+0000 mgr.smithi003.ghjsjw (mgr.14197) 328 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:32.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:32 smithi003 bash[19900]: cluster 2024-09-06T15:08:31.698282+0000 mgr.smithi003.ghjsjw (mgr.14197) 328 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:32.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:32 smithi003 bash[19900]: audit 2024-09-06T15:08:32.500474+0000 mon.smithi003 (mon.0) 835 : audit [DBG] from='client.? 172.21.15.3:0/605141611' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:32.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:32 smithi003 bash[19900]: audit 2024-09-06T15:08:32.500474+0000 mon.smithi003 (mon.0) 835 : audit [DBG] from='client.? 172.21.15.3:0/605141611' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:33.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:32 smithi120 bash[24835]: cluster 2024-09-06T15:08:31.698282+0000 mgr.smithi003.ghjsjw (mgr.14197) 328 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:33.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:32 smithi120 bash[24835]: cluster 2024-09-06T15:08:31.698282+0000 mgr.smithi003.ghjsjw (mgr.14197) 328 : cluster [DBG] pgmap v290: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:33.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:32 smithi120 bash[24835]: audit 2024-09-06T15:08:32.500474+0000 mon.smithi003 (mon.0) 835 : audit [DBG] from='client.? 172.21.15.3:0/605141611' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:33.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:32 smithi120 bash[24835]: audit 2024-09-06T15:08:32.500474+0000 mon.smithi003 (mon.0) 835 : audit [DBG] from='client.? 172.21.15.3:0/605141611' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:35.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:34 smithi003 bash[19900]: cluster 2024-09-06T15:08:33.698963+0000 mgr.smithi003.ghjsjw (mgr.14197) 329 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:35.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:34 smithi003 bash[19900]: cluster 2024-09-06T15:08:33.698963+0000 mgr.smithi003.ghjsjw (mgr.14197) 329 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:35.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:34 smithi120 bash[24835]: cluster 2024-09-06T15:08:33.698963+0000 mgr.smithi003.ghjsjw (mgr.14197) 329 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:35.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:34 smithi120 bash[24835]: cluster 2024-09-06T15:08:33.698963+0000 mgr.smithi003.ghjsjw (mgr.14197) 329 : cluster [DBG] pgmap v291: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:36.136 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:08:37.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:36 smithi003 bash[19900]: cluster 2024-09-06T15:08:35.699652+0000 mgr.smithi003.ghjsjw (mgr.14197) 330 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:37.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:36 smithi003 bash[19900]: cluster 2024-09-06T15:08:35.699652+0000 mgr.smithi003.ghjsjw (mgr.14197) 330 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:37.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:36 smithi120 bash[24835]: cluster 2024-09-06T15:08:35.699652+0000 mgr.smithi003.ghjsjw (mgr.14197) 330 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:37.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:36 smithi120 bash[24835]: cluster 2024-09-06T15:08:35.699652+0000 mgr.smithi003.ghjsjw (mgr.14197) 330 : cluster [DBG] pgmap v292: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:39.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:38 smithi003 bash[19900]: cluster 2024-09-06T15:08:37.700312+0000 mgr.smithi003.ghjsjw (mgr.14197) 331 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:39.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:38 smithi003 bash[19900]: cluster 2024-09-06T15:08:37.700312+0000 mgr.smithi003.ghjsjw (mgr.14197) 331 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:39.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:38 smithi120 bash[24835]: cluster 2024-09-06T15:08:37.700312+0000 mgr.smithi003.ghjsjw (mgr.14197) 331 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:39.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:38 smithi120 bash[24835]: cluster 2024-09-06T15:08:37.700312+0000 mgr.smithi003.ghjsjw (mgr.14197) 331 : cluster [DBG] pgmap v293: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:40.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:40 smithi003 bash[19900]: cluster 2024-09-06T15:08:39.701020+0000 mgr.smithi003.ghjsjw (mgr.14197) 332 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:40.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:40 smithi003 bash[19900]: cluster 2024-09-06T15:08:39.701020+0000 mgr.smithi003.ghjsjw (mgr.14197) 332 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:40.968 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:08:41.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:40 smithi120 bash[24835]: cluster 2024-09-06T15:08:39.701020+0000 mgr.smithi003.ghjsjw (mgr.14197) 332 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:41.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:40 smithi120 bash[24835]: cluster 2024-09-06T15:08:39.701020+0000 mgr.smithi003.ghjsjw (mgr.14197) 332 : cluster [DBG] pgmap v294: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:42.493 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:08:42.493 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:08:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:42 smithi003 bash[19900]: cluster 2024-09-06T15:08:41.701735+0000 mgr.smithi003.ghjsjw (mgr.14197) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:42 smithi003 bash[19900]: cluster 2024-09-06T15:08:41.701735+0000 mgr.smithi003.ghjsjw (mgr.14197) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:42 smithi003 bash[19900]: audit 2024-09-06T15:08:42.496221+0000 mon.smithi003 (mon.0) 836 : audit [DBG] from='client.? 172.21.15.3:0/3774053408' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:42 smithi003 bash[19900]: audit 2024-09-06T15:08:42.496221+0000 mon.smithi003 (mon.0) 836 : audit [DBG] from='client.? 172.21.15.3:0/3774053408' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:42 smithi003 bash[19900]: audit 2024-09-06T15:08:42.534290+0000 mon.smithi003 (mon.0) 837 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:43.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:42 smithi003 bash[19900]: audit 2024-09-06T15:08:42.534290+0000 mon.smithi003 (mon.0) 837 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:43.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:42 smithi120 bash[24835]: cluster 2024-09-06T15:08:41.701735+0000 mgr.smithi003.ghjsjw (mgr.14197) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:43.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:42 smithi120 bash[24835]: cluster 2024-09-06T15:08:41.701735+0000 mgr.smithi003.ghjsjw (mgr.14197) 333 : cluster [DBG] pgmap v295: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:42 smithi120 bash[24835]: audit 2024-09-06T15:08:42.496221+0000 mon.smithi003 (mon.0) 836 : audit [DBG] from='client.? 172.21.15.3:0/3774053408' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:42 smithi120 bash[24835]: audit 2024-09-06T15:08:42.496221+0000 mon.smithi003 (mon.0) 836 : audit [DBG] from='client.? 172.21.15.3:0/3774053408' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:42 smithi120 bash[24835]: audit 2024-09-06T15:08:42.534290+0000 mon.smithi003 (mon.0) 837 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:43.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:42 smithi120 bash[24835]: audit 2024-09-06T15:08:42.534290+0000 mon.smithi003 (mon.0) 837 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:44.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:43 smithi003 bash[19900]: cluster 2024-09-06T15:08:43.702427+0000 mgr.smithi003.ghjsjw (mgr.14197) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:44.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:43 smithi003 bash[19900]: cluster 2024-09-06T15:08:43.702427+0000 mgr.smithi003.ghjsjw (mgr.14197) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:44.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:43 smithi120 bash[24835]: cluster 2024-09-06T15:08:43.702427+0000 mgr.smithi003.ghjsjw (mgr.14197) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:44.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:43 smithi120 bash[24835]: cluster 2024-09-06T15:08:43.702427+0000 mgr.smithi003.ghjsjw (mgr.14197) 334 : cluster [DBG] pgmap v296: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:46.162 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:08:47.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:46 smithi003 bash[19900]: cluster 2024-09-06T15:08:45.703105+0000 mgr.smithi003.ghjsjw (mgr.14197) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:47.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:46 smithi003 bash[19900]: cluster 2024-09-06T15:08:45.703105+0000 mgr.smithi003.ghjsjw (mgr.14197) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:47.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:46 smithi120 bash[24835]: cluster 2024-09-06T15:08:45.703105+0000 mgr.smithi003.ghjsjw (mgr.14197) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:47.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:46 smithi120 bash[24835]: cluster 2024-09-06T15:08:45.703105+0000 mgr.smithi003.ghjsjw (mgr.14197) 335 : cluster [DBG] pgmap v297: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:49.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:48 smithi003 bash[19900]: cluster 2024-09-06T15:08:47.703787+0000 mgr.smithi003.ghjsjw (mgr.14197) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:49.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:48 smithi003 bash[19900]: cluster 2024-09-06T15:08:47.703787+0000 mgr.smithi003.ghjsjw (mgr.14197) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:49.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:48 smithi120 bash[24835]: cluster 2024-09-06T15:08:47.703787+0000 mgr.smithi003.ghjsjw (mgr.14197) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:49.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:48 smithi120 bash[24835]: cluster 2024-09-06T15:08:47.703787+0000 mgr.smithi003.ghjsjw (mgr.14197) 336 : cluster [DBG] pgmap v298: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:50.990 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:08:51.086 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:50 smithi003 bash[19900]: cluster 2024-09-06T15:08:49.704455+0000 mgr.smithi003.ghjsjw (mgr.14197) 337 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:51.086 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:50 smithi003 bash[19900]: cluster 2024-09-06T15:08:49.704455+0000 mgr.smithi003.ghjsjw (mgr.14197) 337 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:51.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:50 smithi120 bash[24835]: cluster 2024-09-06T15:08:49.704455+0000 mgr.smithi003.ghjsjw (mgr.14197) 337 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:51.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:50 smithi120 bash[24835]: cluster 2024-09-06T15:08:49.704455+0000 mgr.smithi003.ghjsjw (mgr.14197) 337 : cluster [DBG] pgmap v299: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:52.509 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:08:52.509 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:08:52.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:52 smithi003 bash[19900]: cluster 2024-09-06T15:08:51.705192+0000 mgr.smithi003.ghjsjw (mgr.14197) 338 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:52.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:52 smithi003 bash[19900]: cluster 2024-09-06T15:08:51.705192+0000 mgr.smithi003.ghjsjw (mgr.14197) 338 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:52.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:52 smithi003 bash[19900]: audit 2024-09-06T15:08:52.512020+0000 mon.smithi003 (mon.0) 838 : audit [DBG] from='client.? 172.21.15.3:0/940563162' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:52.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:52 smithi003 bash[19900]: audit 2024-09-06T15:08:52.512020+0000 mon.smithi003 (mon.0) 838 : audit [DBG] from='client.? 172.21.15.3:0/940563162' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:53.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:52 smithi120 bash[24835]: cluster 2024-09-06T15:08:51.705192+0000 mgr.smithi003.ghjsjw (mgr.14197) 338 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:53.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:52 smithi120 bash[24835]: cluster 2024-09-06T15:08:51.705192+0000 mgr.smithi003.ghjsjw (mgr.14197) 338 : cluster [DBG] pgmap v300: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:53.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:52 smithi120 bash[24835]: audit 2024-09-06T15:08:52.512020+0000 mon.smithi003 (mon.0) 838 : audit [DBG] from='client.? 172.21.15.3:0/940563162' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:53.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:52 smithi120 bash[24835]: audit 2024-09-06T15:08:52.512020+0000 mon.smithi003 (mon.0) 838 : audit [DBG] from='client.? 172.21.15.3:0/940563162' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:08:55.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:54 smithi003 bash[19900]: cluster 2024-09-06T15:08:53.705839+0000 mgr.smithi003.ghjsjw (mgr.14197) 339 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:55.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:54 smithi003 bash[19900]: cluster 2024-09-06T15:08:53.705839+0000 mgr.smithi003.ghjsjw (mgr.14197) 339 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:55.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:54 smithi120 bash[24835]: cluster 2024-09-06T15:08:53.705839+0000 mgr.smithi003.ghjsjw (mgr.14197) 339 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:55.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:54 smithi120 bash[24835]: cluster 2024-09-06T15:08:53.705839+0000 mgr.smithi003.ghjsjw (mgr.14197) 339 : cluster [DBG] pgmap v301: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:56.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:55 smithi003 bash[19900]: cluster 2024-09-06T15:08:55.706536+0000 mgr.smithi003.ghjsjw (mgr.14197) 340 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:56.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:55 smithi003 bash[19900]: cluster 2024-09-06T15:08:55.706536+0000 mgr.smithi003.ghjsjw (mgr.14197) 340 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:56.176 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:08:56.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:55 smithi120 bash[24835]: cluster 2024-09-06T15:08:55.706536+0000 mgr.smithi003.ghjsjw (mgr.14197) 340 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:56.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:55 smithi120 bash[24835]: cluster 2024-09-06T15:08:55.706536+0000 mgr.smithi003.ghjsjw (mgr.14197) 340 : cluster [DBG] pgmap v302: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:57.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:56 smithi003 bash[19900]: audit 2024-09-06T15:08:55.954870+0000 mon.smithi003 (mon.0) 839 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:08:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:56 smithi003 bash[19900]: audit 2024-09-06T15:08:55.954870+0000 mon.smithi003 (mon.0) 839 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:08:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:56 smithi003 bash[19900]: audit 2024-09-06T15:08:56.578457+0000 mon.smithi003 (mon.0) 840 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:08:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:56 smithi003 bash[19900]: audit 2024-09-06T15:08:56.578457+0000 mon.smithi003 (mon.0) 840 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:08:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:56 smithi003 bash[19900]: audit 2024-09-06T15:08:56.586646+0000 mon.smithi003 (mon.0) 841 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:08:57.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:56 smithi003 bash[19900]: audit 2024-09-06T15:08:56.586646+0000 mon.smithi003 (mon.0) 841 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:08:57.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:56 smithi120 bash[24835]: audit 2024-09-06T15:08:55.954870+0000 mon.smithi003 (mon.0) 839 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:08:57.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:56 smithi120 bash[24835]: audit 2024-09-06T15:08:55.954870+0000 mon.smithi003 (mon.0) 839 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-06T15:08:57.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:56 smithi120 bash[24835]: audit 2024-09-06T15:08:56.578457+0000 mon.smithi003 (mon.0) 840 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:08:57.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:56 smithi120 bash[24835]: audit 2024-09-06T15:08:56.578457+0000 mon.smithi003 (mon.0) 840 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:08:57.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:56 smithi120 bash[24835]: audit 2024-09-06T15:08:56.586646+0000 mon.smithi003 (mon.0) 841 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:08:57.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:56 smithi120 bash[24835]: audit 2024-09-06T15:08:56.586646+0000 mon.smithi003 (mon.0) 841 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:08:58.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:57 smithi003 bash[19900]: audit 2024-09-06T15:08:57.535315+0000 mon.smithi003 (mon.0) 842 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:57 smithi003 bash[19900]: audit 2024-09-06T15:08:57.535315+0000 mon.smithi003 (mon.0) 842 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:57 smithi003 bash[19900]: cluster 2024-09-06T15:08:57.707140+0000 mgr.smithi003.ghjsjw (mgr.14197) 341 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:58.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:08:57 smithi003 bash[19900]: cluster 2024-09-06T15:08:57.707140+0000 mgr.smithi003.ghjsjw (mgr.14197) 341 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:58.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:57 smithi120 bash[24835]: audit 2024-09-06T15:08:57.535315+0000 mon.smithi003 (mon.0) 842 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:58.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:57 smithi120 bash[24835]: audit 2024-09-06T15:08:57.535315+0000 mon.smithi003 (mon.0) 842 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:08:58.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:57 smithi120 bash[24835]: cluster 2024-09-06T15:08:57.707140+0000 mgr.smithi003.ghjsjw (mgr.14197) 341 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:08:58.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:08:57 smithi120 bash[24835]: cluster 2024-09-06T15:08:57.707140+0000 mgr.smithi003.ghjsjw (mgr.14197) 341 : cluster [DBG] pgmap v303: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:00.991 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:09:01.086 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:00 smithi003 bash[19900]: cluster 2024-09-06T15:08:59.707842+0000 mgr.smithi003.ghjsjw (mgr.14197) 342 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:01.087 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:00 smithi003 bash[19900]: cluster 2024-09-06T15:08:59.707842+0000 mgr.smithi003.ghjsjw (mgr.14197) 342 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:01.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:00 smithi120 bash[24835]: cluster 2024-09-06T15:08:59.707842+0000 mgr.smithi003.ghjsjw (mgr.14197) 342 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:01.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:00 smithi120 bash[24835]: cluster 2024-09-06T15:08:59.707842+0000 mgr.smithi003.ghjsjw (mgr.14197) 342 : cluster [DBG] pgmap v304: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:02.585 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:09:02.586 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:09:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:01.541856+0000 mon.smithi003 (mon.0) 843 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:01.541856+0000 mon.smithi003 (mon.0) 843 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:01.547983+0000 mon.smithi003 (mon.0) 844 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:01.547983+0000 mon.smithi003 (mon.0) 844 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: cluster 2024-09-06T15:09:01.708201+0000 mgr.smithi003.ghjsjw (mgr.14197) 343 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: cluster 2024-09-06T15:09:01.708201+0000 mgr.smithi003.ghjsjw (mgr.14197) 343 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:01.886022+0000 mon.smithi003 (mon.0) 845 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.899 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:01.886022+0000 mon.smithi003 (mon.0) 845 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:01.892314+0000 mon.smithi003 (mon.0) 846 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:01.892314+0000 mon.smithi003 (mon.0) 846 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:02.513196+0000 mon.smithi003 (mon.0) 847 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:02.513196+0000 mon.smithi003 (mon.0) 847 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:02.513913+0000 mon.smithi003 (mon.0) 848 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:02.513913+0000 mon.smithi003 (mon.0) 848 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:02.518702+0000 mon.smithi003 (mon.0) 849 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:02.518702+0000 mon.smithi003 (mon.0) 849 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:02.521193+0000 mon.smithi003 (mon.0) 850 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:09:02.900 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:02 smithi003 bash[19900]: audit 2024-09-06T15:09:02.521193+0000 mon.smithi003 (mon.0) 850 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:09:02.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:01.541856+0000 mon.smithi003 (mon.0) 843 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:01.541856+0000 mon.smithi003 (mon.0) 843 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:01.547983+0000 mon.smithi003 (mon.0) 844 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:01.547983+0000 mon.smithi003 (mon.0) 844 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: cluster 2024-09-06T15:09:01.708201+0000 mgr.smithi003.ghjsjw (mgr.14197) 343 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:02.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: cluster 2024-09-06T15:09:01.708201+0000 mgr.smithi003.ghjsjw (mgr.14197) 343 : cluster [DBG] pgmap v305: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:02.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:01.886022+0000 mon.smithi003 (mon.0) 845 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:01.886022+0000 mon.smithi003 (mon.0) 845 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:01.892314+0000 mon.smithi003 (mon.0) 846 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:01.892314+0000 mon.smithi003 (mon.0) 846 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:02.513196+0000 mon.smithi003 (mon.0) 847 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:02.513196+0000 mon.smithi003 (mon.0) 847 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:02.513913+0000 mon.smithi003 (mon.0) 848 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:02.513913+0000 mon.smithi003 (mon.0) 848 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:02.518702+0000 mon.smithi003 (mon.0) 849 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:02.518702+0000 mon.smithi003 (mon.0) 849 : audit [INF] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' 2024-09-06T15:09:02.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:02.521193+0000 mon.smithi003 (mon.0) 850 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:09:02.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:02 smithi120 bash[24835]: audit 2024-09-06T15:09:02.521193+0000 mon.smithi003 (mon.0) 850 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-06T15:09:03.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:03 smithi003 bash[19900]: audit 2024-09-06T15:09:02.588460+0000 mon.smithi003 (mon.0) 851 : audit [DBG] from='client.? 172.21.15.3:0/852734762' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:03.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:03 smithi003 bash[19900]: audit 2024-09-06T15:09:02.588460+0000 mon.smithi003 (mon.0) 851 : audit [DBG] from='client.? 172.21.15.3:0/852734762' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:03.989 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:03 smithi120 bash[24835]: audit 2024-09-06T15:09:02.588460+0000 mon.smithi003 (mon.0) 851 : audit [DBG] from='client.? 172.21.15.3:0/852734762' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:03.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:03 smithi120 bash[24835]: audit 2024-09-06T15:09:02.588460+0000 mon.smithi003 (mon.0) 851 : audit [DBG] from='client.? 172.21.15.3:0/852734762' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:04.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:04 smithi003 bash[19900]: cluster 2024-09-06T15:09:03.708935+0000 mgr.smithi003.ghjsjw (mgr.14197) 344 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:04.898 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:04 smithi003 bash[19900]: cluster 2024-09-06T15:09:03.708935+0000 mgr.smithi003.ghjsjw (mgr.14197) 344 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:04.989 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:04 smithi120 bash[24835]: cluster 2024-09-06T15:09:03.708935+0000 mgr.smithi003.ghjsjw (mgr.14197) 344 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:04.989 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:04 smithi120 bash[24835]: cluster 2024-09-06T15:09:03.708935+0000 mgr.smithi003.ghjsjw (mgr.14197) 344 : cluster [DBG] pgmap v306: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:06.261 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:09:07.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:06 smithi003 bash[19900]: cluster 2024-09-06T15:09:05.709763+0000 mgr.smithi003.ghjsjw (mgr.14197) 345 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:07.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:06 smithi003 bash[19900]: cluster 2024-09-06T15:09:05.709763+0000 mgr.smithi003.ghjsjw (mgr.14197) 345 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:07.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:06 smithi120 bash[24835]: cluster 2024-09-06T15:09:05.709763+0000 mgr.smithi003.ghjsjw (mgr.14197) 345 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:07.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:06 smithi120 bash[24835]: cluster 2024-09-06T15:09:05.709763+0000 mgr.smithi003.ghjsjw (mgr.14197) 345 : cluster [DBG] pgmap v307: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:09.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:08 smithi003 bash[19900]: cluster 2024-09-06T15:09:07.710581+0000 mgr.smithi003.ghjsjw (mgr.14197) 346 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:09.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:08 smithi003 bash[19900]: cluster 2024-09-06T15:09:07.710581+0000 mgr.smithi003.ghjsjw (mgr.14197) 346 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:09.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:08 smithi120 bash[24835]: cluster 2024-09-06T15:09:07.710581+0000 mgr.smithi003.ghjsjw (mgr.14197) 346 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:09.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:08 smithi120 bash[24835]: cluster 2024-09-06T15:09:07.710581+0000 mgr.smithi003.ghjsjw (mgr.14197) 346 : cluster [DBG] pgmap v308: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:11.084 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:09:11.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:10 smithi003 bash[19900]: cluster 2024-09-06T15:09:09.711246+0000 mgr.smithi003.ghjsjw (mgr.14197) 347 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:11.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:10 smithi003 bash[19900]: cluster 2024-09-06T15:09:09.711246+0000 mgr.smithi003.ghjsjw (mgr.14197) 347 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:11.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:10 smithi120 bash[24835]: cluster 2024-09-06T15:09:09.711246+0000 mgr.smithi003.ghjsjw (mgr.14197) 347 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:11.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:10 smithi120 bash[24835]: cluster 2024-09-06T15:09:09.711246+0000 mgr.smithi003.ghjsjw (mgr.14197) 347 : cluster [DBG] pgmap v309: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:12.678 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:09:12.679 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:09:13.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:12 smithi003 bash[19900]: cluster 2024-09-06T15:09:11.711855+0000 mgr.smithi003.ghjsjw (mgr.14197) 348 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:12 smithi003 bash[19900]: cluster 2024-09-06T15:09:11.711855+0000 mgr.smithi003.ghjsjw (mgr.14197) 348 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:12 smithi003 bash[19900]: audit 2024-09-06T15:09:12.535602+0000 mon.smithi003 (mon.0) 852 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:09:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:12 smithi003 bash[19900]: audit 2024-09-06T15:09:12.535602+0000 mon.smithi003 (mon.0) 852 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:09:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:12 smithi003 bash[19900]: audit 2024-09-06T15:09:12.681402+0000 mon.smithi003 (mon.0) 853 : audit [DBG] from='client.? 172.21.15.3:0/3489697025' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:13.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:12 smithi003 bash[19900]: audit 2024-09-06T15:09:12.681402+0000 mon.smithi003 (mon.0) 853 : audit [DBG] from='client.? 172.21.15.3:0/3489697025' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:13.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:12 smithi120 bash[24835]: cluster 2024-09-06T15:09:11.711855+0000 mgr.smithi003.ghjsjw (mgr.14197) 348 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:13.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:12 smithi120 bash[24835]: cluster 2024-09-06T15:09:11.711855+0000 mgr.smithi003.ghjsjw (mgr.14197) 348 : cluster [DBG] pgmap v310: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:13.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:12 smithi120 bash[24835]: audit 2024-09-06T15:09:12.535602+0000 mon.smithi003 (mon.0) 852 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:09:13.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:12 smithi120 bash[24835]: audit 2024-09-06T15:09:12.535602+0000 mon.smithi003 (mon.0) 852 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:09:13.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:12 smithi120 bash[24835]: audit 2024-09-06T15:09:12.681402+0000 mon.smithi003 (mon.0) 853 : audit [DBG] from='client.? 172.21.15.3:0/3489697025' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:13.240 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:12 smithi120 bash[24835]: audit 2024-09-06T15:09:12.681402+0000 mon.smithi003 (mon.0) 853 : audit [DBG] from='client.? 172.21.15.3:0/3489697025' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:14.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:13 smithi003 bash[19900]: cluster 2024-09-06T15:09:13.712654+0000 mgr.smithi003.ghjsjw (mgr.14197) 349 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:14.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:13 smithi003 bash[19900]: cluster 2024-09-06T15:09:13.712654+0000 mgr.smithi003.ghjsjw (mgr.14197) 349 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:14.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:13 smithi120 bash[24835]: cluster 2024-09-06T15:09:13.712654+0000 mgr.smithi003.ghjsjw (mgr.14197) 349 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:14.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:13 smithi120 bash[24835]: cluster 2024-09-06T15:09:13.712654+0000 mgr.smithi003.ghjsjw (mgr.14197) 349 : cluster [DBG] pgmap v311: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:16.382 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:09:17.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:16 smithi003 bash[19900]: cluster 2024-09-06T15:09:15.713455+0000 mgr.smithi003.ghjsjw (mgr.14197) 350 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:17.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:16 smithi003 bash[19900]: cluster 2024-09-06T15:09:15.713455+0000 mgr.smithi003.ghjsjw (mgr.14197) 350 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:17.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:16 smithi120 bash[24835]: cluster 2024-09-06T15:09:15.713455+0000 mgr.smithi003.ghjsjw (mgr.14197) 350 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:17.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:16 smithi120 bash[24835]: cluster 2024-09-06T15:09:15.713455+0000 mgr.smithi003.ghjsjw (mgr.14197) 350 : cluster [DBG] pgmap v312: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:18 smithi003 bash[19900]: cluster 2024-09-06T15:09:17.714256+0000 mgr.smithi003.ghjsjw (mgr.14197) 351 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:19.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:18 smithi003 bash[19900]: cluster 2024-09-06T15:09:17.714256+0000 mgr.smithi003.ghjsjw (mgr.14197) 351 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:19.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:18 smithi120 bash[24835]: cluster 2024-09-06T15:09:17.714256+0000 mgr.smithi003.ghjsjw (mgr.14197) 351 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:19.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:18 smithi120 bash[24835]: cluster 2024-09-06T15:09:17.714256+0000 mgr.smithi003.ghjsjw (mgr.14197) 351 : cluster [DBG] pgmap v313: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:20.489 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:20 smithi120 bash[24835]: cluster 2024-09-06T15:09:19.714971+0000 mgr.smithi003.ghjsjw (mgr.14197) 352 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:20.489 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:20 smithi120 bash[24835]: cluster 2024-09-06T15:09:19.714971+0000 mgr.smithi003.ghjsjw (mgr.14197) 352 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:20.648 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:20 smithi003 bash[19900]: cluster 2024-09-06T15:09:19.714971+0000 mgr.smithi003.ghjsjw (mgr.14197) 352 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:20.649 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:20 smithi003 bash[19900]: cluster 2024-09-06T15:09:19.714971+0000 mgr.smithi003.ghjsjw (mgr.14197) 352 : cluster [DBG] pgmap v314: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:21.211 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:09:22.720 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:09:22.720 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:09:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:22 smithi003 bash[19900]: cluster 2024-09-06T15:09:21.715630+0000 mgr.smithi003.ghjsjw (mgr.14197) 353 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:22 smithi003 bash[19900]: cluster 2024-09-06T15:09:21.715630+0000 mgr.smithi003.ghjsjw (mgr.14197) 353 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:22 smithi003 bash[19900]: audit 2024-09-06T15:09:22.722792+0000 mon.smithi003 (mon.0) 854 : audit [DBG] from='client.? 172.21.15.3:0/3183236164' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:23.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:22 smithi003 bash[19900]: audit 2024-09-06T15:09:22.722792+0000 mon.smithi003 (mon.0) 854 : audit [DBG] from='client.? 172.21.15.3:0/3183236164' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:23.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:22 smithi120 bash[24835]: cluster 2024-09-06T15:09:21.715630+0000 mgr.smithi003.ghjsjw (mgr.14197) 353 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:23.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:22 smithi120 bash[24835]: cluster 2024-09-06T15:09:21.715630+0000 mgr.smithi003.ghjsjw (mgr.14197) 353 : cluster [DBG] pgmap v315: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:23.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:22 smithi120 bash[24835]: audit 2024-09-06T15:09:22.722792+0000 mon.smithi003 (mon.0) 854 : audit [DBG] from='client.? 172.21.15.3:0/3183236164' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:23.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:22 smithi120 bash[24835]: audit 2024-09-06T15:09:22.722792+0000 mon.smithi003 (mon.0) 854 : audit [DBG] from='client.? 172.21.15.3:0/3183236164' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-06T15:09:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:24 smithi003 bash[19900]: cluster 2024-09-06T15:09:23.716304+0000 mgr.smithi003.ghjsjw (mgr.14197) 354 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:25.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:24 smithi003 bash[19900]: cluster 2024-09-06T15:09:23.716304+0000 mgr.smithi003.ghjsjw (mgr.14197) 354 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:25.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:24 smithi120 bash[24835]: cluster 2024-09-06T15:09:23.716304+0000 mgr.smithi003.ghjsjw (mgr.14197) 354 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:25.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:24 smithi120 bash[24835]: cluster 2024-09-06T15:09:23.716304+0000 mgr.smithi003.ghjsjw (mgr.14197) 354 : cluster [DBG] pgmap v316: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:26.492 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:8b38c33cecf4b0b7a9b3116eb9089e21e444ac73 shell --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 -- ceph health --format=json 2024-09-06T15:09:27.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:26 smithi003 bash[19900]: cluster 2024-09-06T15:09:25.716992+0000 mgr.smithi003.ghjsjw (mgr.14197) 355 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:27.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:26 smithi003 bash[19900]: cluster 2024-09-06T15:09:25.716992+0000 mgr.smithi003.ghjsjw (mgr.14197) 355 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:27.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:26 smithi120 bash[24835]: cluster 2024-09-06T15:09:25.716992+0000 mgr.smithi003.ghjsjw (mgr.14197) 355 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:27.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:26 smithi120 bash[24835]: cluster 2024-09-06T15:09:25.716992+0000 mgr.smithi003.ghjsjw (mgr.14197) 355 : cluster [DBG] pgmap v317: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:28.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:27 smithi003 bash[19900]: audit 2024-09-06T15:09:27.536078+0000 mon.smithi003 (mon.0) 855 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:09:28.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:27 smithi003 bash[19900]: audit 2024-09-06T15:09:27.536078+0000 mon.smithi003 (mon.0) 855 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:09:28.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:27 smithi120 bash[24835]: audit 2024-09-06T15:09:27.536078+0000 mon.smithi003 (mon.0) 855 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:09:28.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:27 smithi120 bash[24835]: audit 2024-09-06T15:09:27.536078+0000 mon.smithi003 (mon.0) 855 : audit [DBG] from='mgr.14197 172.21.15.3:0/3301927210' entity='mgr.smithi003.ghjsjw' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-06T15:09:29.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:28 smithi003 bash[19900]: cluster 2024-09-06T15:09:27.717549+0000 mgr.smithi003.ghjsjw (mgr.14197) 356 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:29.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:28 smithi003 bash[19900]: cluster 2024-09-06T15:09:27.717549+0000 mgr.smithi003.ghjsjw (mgr.14197) 356 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:29.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:28 smithi120 bash[24835]: cluster 2024-09-06T15:09:27.717549+0000 mgr.smithi003.ghjsjw (mgr.14197) 356 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:29.241 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:28 smithi120 bash[24835]: cluster 2024-09-06T15:09:27.717549+0000 mgr.smithi003.ghjsjw (mgr.14197) 356 : cluster [DBG] pgmap v318: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:30.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:29 smithi003 bash[19900]: cluster 2024-09-06T15:09:29.718220+0000 mgr.smithi003.ghjsjw (mgr.14197) 357 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:30.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:29 smithi003 bash[19900]: cluster 2024-09-06T15:09:29.718220+0000 mgr.smithi003.ghjsjw (mgr.14197) 357 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:30.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:29 smithi120 bash[24835]: cluster 2024-09-06T15:09:29.718220+0000 mgr.smithi003.ghjsjw (mgr.14197) 357 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:30.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:29 smithi120 bash[24835]: cluster 2024-09-06T15:09:29.718220+0000 mgr.smithi003.ghjsjw (mgr.14197) 357 : cluster [DBG] pgmap v319: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:31.323 INFO:teuthology.orchestra.run.smithi003.stderr:Inferring config /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/mon.smithi003/config 2024-09-06T15:09:32.807 INFO:teuthology.orchestra.run.smithi003.stdout: 2024-09-06T15:09:32.807 INFO:teuthology.orchestra.run.smithi003.stdout:{"status":"HEALTH_WARN","checks":{"MGR_MODULE_DEPENDENCY":{"severity":"HEALTH_WARN","summary":{"message":"Module 'volumes' has failed dependency: No module named 'ceph.fs'","count":1},"muted":false},"RECENT_MGR_MODULE_CRASH":{"severity":"HEALTH_WARN","summary":{"message":"4 mgr modules have recently crashed","count":4},"muted":false}},"mutes":[]} 2024-09-06T15:09:33.148 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:32 smithi003 bash[19900]: cluster 2024-09-06T15:09:31.718848+0000 mgr.smithi003.ghjsjw (mgr.14197) 358 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:33.149 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:32 smithi003 bash[19900]: cluster 2024-09-06T15:09:31.718848+0000 mgr.smithi003.ghjsjw (mgr.14197) 358 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:33.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:32 smithi120 bash[24835]: cluster 2024-09-06T15:09:31.718848+0000 mgr.smithi003.ghjsjw (mgr.14197) 358 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:33.239 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:32 smithi120 bash[24835]: cluster 2024-09-06T15:09:31.718848+0000 mgr.smithi003.ghjsjw (mgr.14197) 358 : cluster [DBG] pgmap v320: 1 pgs: 1 active+clean; 577 KiB data, 228 MiB used, 715 GiB / 715 GiB avail 2024-09-06T15:09:33.532 INFO:tasks.cephadm:Teardown begin 2024-09-06T15:09:33.532 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/contextutil.py", line 32, in nested yield vars File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/cephadm.py", line 2371, in task healthy(ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph.py", line 1537, in healthy manager.wait_until_healthy(timeout=300) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph_manager.py", line 3299, in wait_until_healthy assert time.time() - start < timeout, \ AssertionError: timeout expired in wait_until_healthy 2024-09-06T15:09:33.537 DEBUG:teuthology.orchestra.run.smithi003:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-06T15:09:33.551 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-06T15:09:33.565 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-06T15:09:33.565 DEBUG:teuthology.orchestra.run.smithi003:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-06T15:09:33.598 DEBUG:teuthology.orchestra.run.smithi120:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-06T15:09:33.612 INFO:tasks.cephadm:Stopping all daemons... 2024-09-06T15:09:33.612 INFO:tasks.cephadm.mon.smithi003:Stopping mon.smithi003... 2024-09-06T15:09:33.612 DEBUG:teuthology.orchestra.run.smithi003:> sudo systemctl stop ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi003 2024-09-06T15:09:33.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:33 smithi003 systemd[1]: Stopping Ceph mon.smithi003 for 0f20e064-6c60-11ef-bce4-c7b262605968... 2024-09-06T15:09:33.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:33 smithi003 bash[19900]: debug 2024-09-06T15:09:33.772+0000 7fecfe7de640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi003 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-06T15:09:33.788 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:33 smithi003 bash[19900]: debug 2024-09-06T15:09:33.772+0000 7fecfe7de640 -1 mon.smithi003@0(leader) e2 *** Got Signal Terminated *** 2024-09-06T15:09:34.742 INFO:journalctl@ceph.mon.smithi003.smithi003.stdout:Sep 06 15:09:34 smithi003 bash[62377]: ceph-0f20e064-6c60-11ef-bce4-c7b262605968-mon-smithi003 2024-09-06T15:09:34.759 DEBUG:teuthology.orchestra.run.smithi003:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi003.service' 2024-09-06T15:09:34.802 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-06T15:09:34.803 INFO:tasks.cephadm.mon.smithi003:Stopped mon.smithi003 2024-09-06T15:09:34.803 INFO:tasks.cephadm.mon.smithi120:Stopping mon.smithi120... 2024-09-06T15:09:34.803 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi120 2024-09-06T15:09:35.077 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:34 smithi120 systemd[1]: Stopping Ceph mon.smithi120 for 0f20e064-6c60-11ef-bce4-c7b262605968... 2024-09-06T15:09:35.077 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:34 smithi120 bash[24835]: debug 2024-09-06T15:09:34.958+0000 7fa336923640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi120 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-06T15:09:35.077 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 06 15:09:34 smithi120 bash[24835]: debug 2024-09-06T15:09:34.958+0000 7fa336923640 -1 mon.smithi120@1(peon) e2 *** Got Signal Terminated *** 2024-09-06T15:09:35.758 DEBUG:teuthology.orchestra.run.smithi120:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0f20e064-6c60-11ef-bce4-c7b262605968@mon.smithi120.service' 2024-09-06T15:09:35.800 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-06T15:09:35.800 INFO:tasks.cephadm.mon.smithi120:Stopped mon.smithi120 2024-09-06T15:09:35.800 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 --force --keep-logs 2024-09-06T15:09:35.988 INFO:teuthology.orchestra.run.smithi003.stdout:Deleting cluster with fsid: 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:10:23.457 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 --force --keep-logs 2024-09-06T15:10:23.639 INFO:teuthology.orchestra.run.smithi120.stdout:Deleting cluster with fsid: 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:11:07.239 DEBUG:teuthology.orchestra.run.smithi003:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-06T15:11:07.254 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-06T15:11:07.267 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-06T15:11:07.268 DEBUG:teuthology.misc:Transferring archived files from smithi003:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/crash to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408/remote/smithi003/crash 2024-09-06T15:11:07.269 DEBUG:teuthology.orchestra.run.smithi003:> sudo tar c -f - -C /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/crash -- . 2024-09-06T15:11:07.309 INFO:teuthology.orchestra.run.smithi003.stderr:tar: /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/crash: Cannot open: No such file or directory 2024-09-06T15:11:07.309 INFO:teuthology.orchestra.run.smithi003.stderr:tar: Error is not recoverable: exiting now 2024-09-06T15:11:07.311 DEBUG:teuthology.misc:Transferring archived files from smithi120:/var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/crash to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408/remote/smithi120/crash 2024-09-06T15:11:07.312 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/crash -- . 2024-09-06T15:11:07.323 INFO:teuthology.orchestra.run.smithi120.stderr:tar: /var/lib/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/crash: Cannot open: No such file or directory 2024-09-06T15:11:07.323 INFO:teuthology.orchestra.run.smithi120.stderr:tar: Error is not recoverable: exiting now 2024-09-06T15:11:07.324 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-06T15:11:07.324 DEBUG:teuthology.orchestra.run.smithi003:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-06T15:11:07.368 INFO:tasks.cephadm:Compressing logs... 2024-09-06T15:11:07.368 DEBUG:teuthology.orchestra.run.smithi003:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-06T15:11:07.411 DEBUG:teuthology.orchestra.run.smithi120:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-06T15:11:07.419 INFO:teuthology.orchestra.run.smithi003.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-06T15:11:07.425 INFO:teuthology.orchestra.run.smithi120.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-06T15:11:07.427 INFO:teuthology.orchestra.run.smithi003.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-06T15:11:07.427 INFO:teuthology.orchestra.run.smithi003.stderr:gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.7.log 2024-09-06T15:11:07.428 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi003.log 2024-09-06T15:11:07.428 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.cephadm.log 2024-09-06T15:11:07.429 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi003.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.3.log 2024-09-06T15:11:07.430 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.5.log 2024-09-06T15:11:07.430 INFO:teuthology.orchestra.run.smithi003.stderr: 94.3% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi003.log.gz 2024-09-06T15:11:07.430 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.1.log 2024-09-06T15:11:07.430 INFO:teuthology.orchestra.run.smithi003.stderr: 84.4% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.cephadm.log.gz 2024-09-06T15:11:07.431 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mon.smithi003.log 2024-09-06T15:11:07.431 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.log 2024-09-06T15:11:07.432 INFO:teuthology.orchestra.run.smithi003.stderr:gzip/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mon.smithi003.log: -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-volume.log 2024-09-06T15:11:07.432 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mgr.smithi003.ghjsjw.log 2024-09-06T15:11:07.434 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-volume.log: 88.9% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.log.gz 2024-09-06T15:11:07.434 INFO:teuthology.orchestra.run.smithi003.stderr:gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.audit.log 2024-09-06T15:11:07.437 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-06T15:11:07.438 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.0.log 2024-09-06T15:11:07.438 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.2.log 2024-09-06T15:11:07.439 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.6.log 2024-09-06T15:11:07.439 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.2.log: /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.cephadm.log 2024-09-06T15:11:07.440 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi120.log 2024-09-06T15:11:07.440 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mgr.smithi120.nvkvbd.log 2024-09-06T15:11:07.440 INFO:teuthology.orchestra.run.smithi120.stderr: 82.4% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.cephadm.log.gz 2024-09-06T15:11:07.441 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi120.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.log 2024-09-06T15:11:07.441 INFO:teuthology.orchestra.run.smithi120.stderr: 89.9% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-06T15:11:07.441 INFO:teuthology.orchestra.run.smithi120.stderr: 30.5% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-client.ceph-exporter.smithi120.log.gz 2024-09-06T15:11:07.441 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mgr.smithi120.nvkvbd.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-volume.log 2024-09-06T15:11:07.443 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mon.smithi120.log 2024-09-06T15:11:07.443 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.log: /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.audit.log 2024-09-06T15:11:07.443 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mon.smithi120.log: gzip -5 --verbose -- /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.4.log 2024-09-06T15:11:07.443 INFO:teuthology.orchestra.run.smithi120.stderr: 88.8% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.log.gz 2024-09-06T15:11:07.445 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.audit.log: /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.4.log: 91.3% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.audit.log.gz 2024-09-06T15:11:07.447 INFO:teuthology.orchestra.run.smithi120.stderr: 91.7% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mgr.smithi120.nvkvbd.log.gz 2024-09-06T15:11:07.448 INFO:teuthology.orchestra.run.smithi003.stderr:/var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mgr.smithi003.ghjsjw.log: /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.audit.log: 91.1% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph.audit.log.gz 2024-09-06T15:11:07.449 INFO:teuthology.orchestra.run.smithi003.stderr: 91.1% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-volume.log.gz 2024-09-06T15:11:07.456 INFO:teuthology.orchestra.run.smithi120.stderr: 91.4% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-volume.log.gz 2024-09-06T15:11:07.461 INFO:teuthology.orchestra.run.smithi003.stderr: 91.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-06T15:11:07.502 INFO:teuthology.orchestra.run.smithi003.stderr: 92.6% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.5.log.gz 2024-09-06T15:11:07.509 INFO:teuthology.orchestra.run.smithi120.stderr: 92.6% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.6.log.gz 2024-09-06T15:11:07.515 INFO:teuthology.orchestra.run.smithi003.stderr: 92.2% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.3.log.gz 2024-09-06T15:11:07.537 INFO:teuthology.orchestra.run.smithi120.stderr: 93.2% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mon.smithi120.log.gz 2024-09-06T15:11:07.542 INFO:teuthology.orchestra.run.smithi120.stderr: 92.6% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.4.log.gz 2024-09-06T15:11:07.549 INFO:teuthology.orchestra.run.smithi003.stderr: 92.4% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.7.log.gz 2024-09-06T15:11:07.551 INFO:teuthology.orchestra.run.smithi120.stderr: 93.3% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.2.log.gz 2024-09-06T15:11:07.559 INFO:teuthology.orchestra.run.smithi120.stderr: 92.7% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.0.log.gz 2024-09-06T15:11:07.560 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-09-06T15:11:07.560 INFO:teuthology.orchestra.run.smithi120.stderr:real 0m0.145s 2024-09-06T15:11:07.561 INFO:teuthology.orchestra.run.smithi120.stderr:user 0m0.506s 2024-09-06T15:11:07.561 INFO:teuthology.orchestra.run.smithi120.stderr:sys 0m0.049s 2024-09-06T15:11:07.565 INFO:teuthology.orchestra.run.smithi003.stderr: 92.9% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-osd.1.log.gz 2024-09-06T15:11:07.598 INFO:teuthology.orchestra.run.smithi003.stderr: 90.0% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mgr.smithi003.ghjsjw.log.gz 2024-09-06T15:11:07.782 INFO:teuthology.orchestra.run.smithi003.stderr: 90.7% -- replaced with /var/log/ceph/0f20e064-6c60-11ef-bce4-c7b262605968/ceph-mon.smithi003.log.gz 2024-09-06T15:11:07.785 INFO:teuthology.orchestra.run.smithi003.stderr: 2024-09-06T15:11:07.785 INFO:teuthology.orchestra.run.smithi003.stderr:real 0m0.371s 2024-09-06T15:11:07.785 INFO:teuthology.orchestra.run.smithi003.stderr:user 0m0.946s 2024-09-06T15:11:07.785 INFO:teuthology.orchestra.run.smithi003.stderr:sys 0m0.063s 2024-09-06T15:11:07.785 INFO:tasks.cephadm:Archiving logs... 2024-09-06T15:11:07.785 DEBUG:teuthology.misc:Transferring archived files from smithi003:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408/remote/smithi003/log 2024-09-06T15:11:07.786 DEBUG:teuthology.orchestra.run.smithi003:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-06T15:11:07.951 DEBUG:teuthology.misc:Transferring archived files from smithi120:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408/remote/smithi120/log 2024-09-06T15:11:07.952 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-06T15:11:08.034 INFO:tasks.cephadm:Removing cluster... 2024-09-06T15:11:08.034 DEBUG:teuthology.orchestra.run.smithi003:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 --force 2024-09-06T15:11:08.226 INFO:teuthology.orchestra.run.smithi003.stdout:Deleting cluster with fsid: 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:11:09.375 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0f20e064-6c60-11ef-bce4-c7b262605968 --force 2024-09-06T15:11:09.558 INFO:teuthology.orchestra.run.smithi120.stdout:Deleting cluster with fsid: 0f20e064-6c60-11ef-bce4-c7b262605968 2024-09-06T15:11:10.678 INFO:tasks.cephadm:Removing cephadm ... 2024-09-06T15:11:10.678 DEBUG:teuthology.orchestra.run.smithi003:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-06T15:11:10.684 DEBUG:teuthology.orchestra.run.smithi120:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-06T15:11:10.689 INFO:tasks.cephadm:Teardown complete 2024-09-06T15:11:10.690 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/cephadm.py", line 2371, in task healthy(ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph.py", line 1537, in healthy manager.wait_until_healthy(timeout=300) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph_manager.py", line 3299, in wait_until_healthy assert time.time() - start < timeout, \ AssertionError: timeout expired in wait_until_healthy 2024-09-06T15:11:10.934 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=2b5436e896284d16a29cf50bd28fe7d6 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/cephadm.py", line 2371, in task healthy(ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph.py", line 1537, in healthy manager.wait_until_healthy(timeout=300) File "/home/teuthworker/src/git.ceph.com_ceph-c_8b38c33cecf4b0b7a9b3116eb9089e21e444ac73/qa/tasks/ceph_manager.py", line 3299, in wait_until_healthy assert time.time() - start < timeout, \ AssertionError: timeout expired in wait_until_healthy 2024-09-06T15:11:10.937 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-06T15:11:10.945 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-06T15:11:10.991 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi003:/dev/vg_nvme/lv_1... 2024-09-06T15:11:10.992 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme disconnect -n lv_1 2024-09-06T15:11:11.294 INFO:teuthology.orchestra.run.smithi003.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-06T15:11:11.295 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:11.295 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi003:/dev/vg_nvme/lv_2... 2024-09-06T15:11:11.295 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme disconnect -n lv_2 2024-09-06T15:11:11.566 INFO:teuthology.orchestra.run.smithi003.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-06T15:11:11.567 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:11.567 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi003:/dev/vg_nvme/lv_3... 2024-09-06T15:11:11.568 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme disconnect -n lv_3 2024-09-06T15:11:11.830 INFO:teuthology.orchestra.run.smithi003.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-06T15:11:11.831 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:11.832 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi003:/dev/vg_nvme/lv_4... 2024-09-06T15:11:11.832 DEBUG:teuthology.orchestra.run.smithi003:> sudo nvme disconnect -n lv_4 2024-09-06T15:11:12.097 INFO:teuthology.orchestra.run.smithi003.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-06T15:11:12.099 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:12.099 DEBUG:teuthology.orchestra.run.smithi003:> set -ex 2024-09-06T15:11:12.099 DEBUG:teuthology.orchestra.run.smithi003:> sudo dd of=/scratch_devs 2024-09-06T15:11:12.113 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_1... 2024-09-06T15:11:12.113 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_1 2024-09-06T15:11:12.395 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-06T15:11:12.396 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:12.397 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_2... 2024-09-06T15:11:12.397 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_2 2024-09-06T15:11:12.675 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-06T15:11:12.677 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:12.677 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_3... 2024-09-06T15:11:12.677 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_3 2024-09-06T15:11:12.971 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-06T15:11:12.973 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:12.973 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_4... 2024-09-06T15:11:12.974 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_4 2024-09-06T15:11:13.243 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-06T15:11:13.244 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:13.245 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-06T15:11:13.245 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/scratch_devs 2024-09-06T15:11:13.261 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-06T15:11:13.270 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-06T15:11:13.271 DEBUG:teuthology.orchestra.run.smithi003:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-06T15:11:13.273 DEBUG:teuthology.orchestra.run.smithi120:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-06T15:11:13.286 INFO:teuthology.orchestra.run.smithi003.stdout: remote refid st t when poll reach delay offset jitter 2024-09-06T15:11:13.287 INFO:teuthology.orchestra.run.smithi003.stdout:============================================================================== 2024-09-06T15:11:13.287 INFO:teuthology.orchestra.run.smithi003.stdout:+hv01.front.sepi 67.205.162.81 3 u 33 64 377 0.092 -2.575 0.608 2024-09-06T15:11:13.287 INFO:teuthology.orchestra.run.smithi003.stdout:+hv02.front.sepi 63.231.80.2 3 u 20 64 377 0.057 +0.121 0.684 2024-09-06T15:11:13.287 INFO:teuthology.orchestra.run.smithi003.stdout:*hv03.front.sepi 74.6.168.72 3 u 26 64 377 0.096 -1.215 0.454 2024-09-06T15:11:13.287 INFO:teuthology.orchestra.run.smithi003.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-06T15:11:13.318 INFO:teuthology.orchestra.run.smithi120.stdout: remote refid st t when poll reach delay offset jitter 2024-09-06T15:11:13.318 INFO:teuthology.orchestra.run.smithi120.stdout:============================================================================== 2024-09-06T15:11:13.318 INFO:teuthology.orchestra.run.smithi120.stdout:+hv01.front.sepi 67.205.162.81 3 u 18 64 377 0.073 -2.927 3.132 2024-09-06T15:11:13.319 INFO:teuthology.orchestra.run.smithi120.stdout:*hv02.front.sepi 63.231.80.2 3 u 22 64 377 0.126 -5.950 3.536 2024-09-06T15:11:13.319 INFO:teuthology.orchestra.run.smithi120.stdout:+hv03.front.sepi 74.6.168.72 3 u 26 64 377 0.088 -6.740 3.272 2024-09-06T15:11:13.319 INFO:teuthology.orchestra.run.smithi120.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-06T15:11:13.320 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-06T15:11:13.329 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-06T15:11:13.330 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-06T15:11:13.359 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-06T15:11:13.391 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-06T15:11:13.425 INFO:teuthology.task.internal:Duration was 1433.538482 seconds 2024-09-06T15:11:13.425 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-06T15:11:13.459 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-06T15:11:13.459 DEBUG:teuthology.orchestra.run.smithi003:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-06T15:11:13.462 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-06T15:11:13.499 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-06T15:11:13.499 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi003.front.sepia.ceph.com 2024-09-06T15:11:13.500 DEBUG:teuthology.orchestra.run.smithi003:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-06T15:11:13.550 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi120.front.sepia.ceph.com 2024-09-06T15:11:13.551 DEBUG:teuthology.orchestra.run.smithi120:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-06T15:11:13.561 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-06T15:11:13.561 DEBUG:teuthology.orchestra.run.smithi003:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-06T15:11:13.595 DEBUG:teuthology.orchestra.run.smithi120:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-06T15:11:13.642 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-06T15:11:13.642 DEBUG:teuthology.orchestra.run.smithi003:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-06T15:11:13.644 DEBUG:teuthology.orchestra.run.smithi120:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-06T15:11:13.779 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-06T15:11:13.790 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-06T15:11:13.790 DEBUG:teuthology.orchestra.run.smithi003:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-06T15:11:13.803 DEBUG:teuthology.orchestra.run.smithi120:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-06T15:11:13.816 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-06T15:11:13.826 DEBUG:teuthology.orchestra.run.smithi003:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-06T15:11:13.847 DEBUG:teuthology.orchestra.run.smithi120:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-06T15:11:13.856 INFO:teuthology.orchestra.run.smithi003.stdout:kernel.core_pattern = core 2024-09-06T15:11:13.869 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern = core 2024-09-06T15:11:13.892 DEBUG:teuthology.orchestra.run.smithi003:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-06T15:11:13.925 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:13.926 DEBUG:teuthology.orchestra.run.smithi120:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-06T15:11:13.938 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-06T15:11:13.939 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-06T15:11:13.948 INFO:teuthology.task.internal:Transferring archived files... 2024-09-06T15:11:13.949 DEBUG:teuthology.misc:Transferring archived files from smithi003:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408/remote/smithi003 2024-09-06T15:11:13.949 DEBUG:teuthology.orchestra.run.smithi003:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-06T15:11:13.994 DEBUG:teuthology.misc:Transferring archived files from smithi120:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-06_13:43:09-orch:cephadm-wip-athakkar-testing-2024-09-04-1837-distro-default-smithi/7892408/remote/smithi120 2024-09-06T15:11:13.994 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-06T15:11:14.017 INFO:teuthology.task.internal:Removing archive directory... 2024-09-06T15:11:14.017 DEBUG:teuthology.orchestra.run.smithi003:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-06T15:11:14.035 DEBUG:teuthology.orchestra.run.smithi120:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-06T15:11:14.059 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-06T15:11:14.070 INFO:teuthology.task.internal:Not uploading archives. 2024-09-06T15:11:14.071 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-06T15:11:14.102 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-06T15:11:14.103 DEBUG:teuthology.orchestra.run.smithi003:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-06T15:11:14.105 DEBUG:teuthology.orchestra.run.smithi120:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-06T15:11:14.109 INFO:teuthology.orchestra.run.smithi003.stdout: 658641 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 6 15:11 /home/ubuntu/cephtest 2024-09-06T15:11:14.112 INFO:teuthology.orchestra.run.smithi120.stdout: 658622 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 6 15:11 /home/ubuntu/cephtest 2024-09-06T15:11:14.113 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-06T15:11:14.136 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-06T15:11:14.250 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 1433.538482427597 failure_reason: timeout expired in wait_until_healthy owner: scheduled_adking@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=2b5436e896284d16a29cf50bd28fe7d6 status: fail success: false 2024-09-06T15:11:14.250 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-06T15:11:14.339 INFO:teuthology.run:FAIL