2024-09-10T03:59:46.112 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-10T03:59:46.128 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-10T03:59:46.215 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624 branch: wip-adk-testing-2024-09-09-1904 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: '7898624' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-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-adk-testing-2024-09-09-1904 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: 3a5e3f16720f432aea965c40a8f6eb480095ec6c ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 3a5e3f16720f432aea965c40a8f6eb480095ec6c workunit: branch: wip-adk-testing-2024-09-09-1904 sha1: 3a5e3f16720f432aea965c40a8f6eb480095ec6c owner: scheduled_adking@teuthology priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 6964 sha1: 3a5e3f16720f432aea965c40a8f6eb480095ec6c sleep_before_teardown: 0 subset: 1/20 suite: orch:cephadm suite_branch: wip-adk-testing-2024-09-09-1904 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_3a5e3f16720f432aea965c40a8f6eb480095ec6c/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 3a5e3f16720f432aea965c40a8f6eb480095ec6c targets: smithi120.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEwWJF3F3EfvSW2/b8HYw1ChGfpBbm3ys/jZPZ2tbF5EXOhLrliwsl7ExonfNKOqOcHXyhfQS4I4i/8qXVQHrio= smithi151.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNQSGoNTkkeCjWB34xp9ppUYjk7f4rrsV6Ivqg0m6JIfYOSFSKYALTVyDXyzMQPQo9v1YXQ8VJqotoSraTp5LLw= 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-10_02:59:23 tube: smithi user: adking verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-10T03:59:46.215 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_3a5e3f16720f432aea965c40a8f6eb480095ec6c/qa; will attempt to use it 2024-09-10T03:59:46.216 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_3a5e3f16720f432aea965c40a8f6eb480095ec6c/qa/tasks 2024-09-10T03:59:46.216 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-10T03:59:46.218 INFO:teuthology.task.internal:Checking packages... 2024-09-10T03:59:46.239 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '3a5e3f16720f432aea965c40a8f6eb480095ec6c' 2024-09-10T03:59:46.239 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-10T03:59:46.239 INFO:teuthology.packaging:ref: None 2024-09-10T03:59:46.239 INFO:teuthology.packaging:tag: None 2024-09-10T03:59:46.239 INFO:teuthology.packaging:branch: wip-adk-testing-2024-09-09-1904 2024-09-10T03:59:46.239 INFO:teuthology.packaging:sha1: 3a5e3f16720f432aea965c40a8f6eb480095ec6c 2024-09-10T03:59:46.240 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-adk-testing-2024-09-09-1904 2024-09-10T03:59:46.388 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4885-g3a5e3f16-1jammy 2024-09-10T03:59:46.389 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-10T03:59:46.396 INFO:teuthology.task.internal:no buildpackages task found 2024-09-10T03:59:46.396 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-10T03:59:46.402 INFO:teuthology.task.internal:Saving configuration 2024-09-10T03:59:46.416 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-10T03:59:46.421 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-10T03:59:46.447 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi120.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624', '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-10 03:54:02.145005', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFwxMVyvirswzdemYAohkJQrOuSHMqDkMl3oRULbfnbc'} 2024-09-10T03:59:46.464 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi151.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624', '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-10 03:54:02.143504', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE75m9HMXuCwpWpKq7EN5/KGQUCglVzJvePnFgJwadXt'} 2024-09-10T03:59:46.465 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-10T03:59:46.471 INFO:teuthology.task.internal:roles: ubuntu@smithi120.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-10T03:59:46.471 INFO:teuthology.task.internal:roles: ubuntu@smithi151.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-10T03:59:46.471 INFO:teuthology.run_tasks:Running task console_log... 2024-09-10T03:59:46.529 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f6a75eb3be0>, signals=[15]) 2024-09-10T03:59:46.529 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-10T03:59:46.534 INFO:teuthology.task.internal:Opening connections... 2024-09-10T03:59:46.534 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T03:59:46.536 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T03:59:46.618 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi151.front.sepia.ceph.com 2024-09-10T03:59:46.619 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T03:59:46.695 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-10T03:59:46.702 DEBUG:teuthology.orchestra.run.smithi120:> uname -m 2024-09-10T03:59:46.707 INFO:teuthology.orchestra.run.smithi120.stdout:x86_64 2024-09-10T03:59:46.707 DEBUG:teuthology.orchestra.run.smithi120:> cat /etc/os-release 2024-09-10T03:59:46.755 INFO:teuthology.orchestra.run.smithi120.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-10T03:59:46.755 INFO:teuthology.orchestra.run.smithi120.stdout:NAME="Ubuntu" 2024-09-10T03:59:46.755 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION_ID="22.04" 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION_CODENAME=jammy 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:ID=ubuntu 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:ID_LIKE=debian 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-10T03:59:46.756 INFO:teuthology.orchestra.run.smithi120.stdout:UBUNTU_CODENAME=jammy 2024-09-10T03:59:46.757 INFO:teuthology.lock.ops:Updating smithi120.front.sepia.ceph.com on lock server 2024-09-10T03:59:46.793 DEBUG:teuthology.orchestra.run.smithi151:> uname -m 2024-09-10T03:59:46.798 INFO:teuthology.orchestra.run.smithi151.stdout:x86_64 2024-09-10T03:59:46.798 DEBUG:teuthology.orchestra.run.smithi151:> cat /etc/os-release 2024-09-10T03:59:46.842 INFO:teuthology.orchestra.run.smithi151.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:NAME="Ubuntu" 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:VERSION_ID="22.04" 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:VERSION_CODENAME=jammy 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:ID=ubuntu 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:ID_LIKE=debian 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-10T03:59:46.843 INFO:teuthology.orchestra.run.smithi151.stdout:UBUNTU_CODENAME=jammy 2024-09-10T03:59:46.844 INFO:teuthology.lock.ops:Updating smithi151.front.sepia.ceph.com on lock server 2024-09-10T03:59:46.877 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-10T03:59:46.885 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-10T03:59:46.920 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-10T03:59:46.920 DEBUG:teuthology.orchestra.run.smithi120:> test '!' -e /home/ubuntu/cephtest 2024-09-10T03:59:46.923 DEBUG:teuthology.orchestra.run.smithi151:> test '!' -e /home/ubuntu/cephtest 2024-09-10T03:59:46.927 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-10T03:59:46.933 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-10T03:59:46.933 DEBUG:teuthology.orchestra.run.smithi120:> test -z $(ls -A /var/lib/ceph) 2024-09-10T03:59:46.969 DEBUG:teuthology.orchestra.run.smithi151:> test -z $(ls -A /var/lib/ceph) 2024-09-10T03:59:47.058 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-10T03:59:47.111 INFO:teuthology.run_tasks:Running task kernel... 2024-09-10T03:59:47.125 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-10T03:59:47.125 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-10T03:59:47.126 DEBUG:teuthology.orchestra.run.smithi120:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-10T03:59:47.126 DEBUG:teuthology.orchestra.run.smithi151:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-10T03:59:47.130 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T03:59:47.130 DEBUG:teuthology.orchestra.run.smithi120:> uname -r 2024-09-10T03:59:47.131 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T03:59:47.131 DEBUG:teuthology.orchestra.run.smithi151:> uname -r 2024-09-10T03:59:47.176 INFO:teuthology.orchestra.run.smithi120.stdout:5.15.0-56-generic 2024-09-10T03:59:47.176 INFO:teuthology.task.kernel:Running kernel on smithi120: 5.15.0-56-generic 2024-09-10T03:59:47.176 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get clean 2024-09-10T03:59:47.179 INFO:teuthology.orchestra.run.smithi151.stdout:5.15.0-56-generic 2024-09-10T03:59:47.180 INFO:teuthology.task.kernel:Running kernel on smithi151: 5.15.0-56-generic 2024-09-10T03:59:47.180 DEBUG:teuthology.orchestra.run.smithi151:> sudo apt-get clean 2024-09-10T03:59:47.310 DEBUG:teuthology.orchestra.run.smithi151:> sudo apt-get update 2024-09-10T03:59:47.311 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get update 2024-09-10T03:59:47.453 INFO:teuthology.orchestra.run.smithi151.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-10T03:59:47.564 INFO:teuthology.orchestra.run.smithi151.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-10T03:59:47.565 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-10T03:59:47.583 INFO:teuthology.orchestra.run.smithi120.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-10T03:59:47.636 INFO:teuthology.orchestra.run.smithi120.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-10T03:59:47.645 INFO:teuthology.orchestra.run.smithi151.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-10T03:59:47.662 INFO:teuthology.orchestra.run.smithi151.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,771 kB] 2024-09-10T03:59:47.763 INFO:teuthology.orchestra.run.smithi151.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [533 kB] 2024-09-10T03:59:47.767 INFO:teuthology.orchestra.run.smithi151.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [291 kB] 2024-09-10T03:59:47.770 INFO:teuthology.orchestra.run.smithi151.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-10T03:59:47.770 INFO:teuthology.orchestra.run.smithi151.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,327 kB] 2024-09-10T03:59:47.790 INFO:teuthology.orchestra.run.smithi151.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-10T03:59:47.791 INFO:teuthology.orchestra.run.smithi151.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [400 kB] 2024-09-10T03:59:47.794 INFO:teuthology.orchestra.run.smithi151.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-10T03:59:47.794 INFO:teuthology.orchestra.run.smithi151.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [626 kB] 2024-09-10T03:59:47.799 INFO:teuthology.orchestra.run.smithi151.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [901 kB] 2024-09-10T03:59:47.807 INFO:teuthology.orchestra.run.smithi151.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-10T03:59:47.808 INFO:teuthology.orchestra.run.smithi151.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-10T03:59:47.809 INFO:teuthology.orchestra.run.smithi151.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-10T03:59:47.809 INFO:teuthology.orchestra.run.smithi151.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-10T03:59:47.821 INFO:teuthology.orchestra.run.smithi151.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-10T03:59:47.853 INFO:teuthology.orchestra.run.smithi151.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-10T03:59:47.993 INFO:teuthology.orchestra.run.smithi120.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-10T03:59:48.002 INFO:teuthology.orchestra.run.smithi151.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-10T03:59:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [533 kB] 2024-09-10T03:59:48.132 INFO:teuthology.orchestra.run.smithi120.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,988 kB] 2024-09-10T03:59:48.140 INFO:teuthology.orchestra.run.smithi151.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [690 kB] 2024-09-10T03:59:48.313 INFO:teuthology.orchestra.run.smithi120.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,771 kB] 2024-09-10T03:59:48.334 INFO:teuthology.orchestra.run.smithi151.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,988 kB] 2024-09-10T03:59:48.448 INFO:teuthology.orchestra.run.smithi120.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [690 kB] 2024-09-10T03:59:48.483 INFO:teuthology.orchestra.run.smithi120.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [349 kB] 2024-09-10T03:59:48.485 INFO:teuthology.orchestra.run.smithi120.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [291 kB] 2024-09-10T03:59:48.492 INFO:teuthology.orchestra.run.smithi151.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [349 kB] 2024-09-10T03:59:48.498 INFO:teuthology.orchestra.run.smithi120.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-10T03:59:48.498 INFO:teuthology.orchestra.run.smithi120.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-10T03:59:48.498 INFO:teuthology.orchestra.run.smithi120.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-10T03:59:48.500 INFO:teuthology.orchestra.run.smithi120.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,386 kB] 2024-09-10T03:59:48.500 INFO:teuthology.orchestra.run.smithi120.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,327 kB] 2024-09-10T03:59:48.506 INFO:teuthology.orchestra.run.smithi151.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-10T03:59:48.507 INFO:teuthology.orchestra.run.smithi151.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-10T03:59:48.508 INFO:teuthology.orchestra.run.smithi151.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,386 kB] 2024-09-10T03:59:48.566 INFO:teuthology.orchestra.run.smithi120.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-10T03:59:48.577 INFO:teuthology.orchestra.run.smithi151.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [410 kB] 2024-09-10T03:59:48.592 INFO:teuthology.orchestra.run.smithi151.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-10T03:59:48.593 INFO:teuthology.orchestra.run.smithi151.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,123 kB] 2024-09-10T03:59:48.620 INFO:teuthology.orchestra.run.smithi120.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [410 kB] 2024-09-10T03:59:48.620 INFO:teuthology.orchestra.run.smithi120.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [400 kB] 2024-09-10T03:59:48.625 INFO:teuthology.orchestra.run.smithi151.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [731 kB] 2024-09-10T03:59:48.629 INFO:teuthology.orchestra.run.smithi120.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-10T03:59:48.630 INFO:teuthology.orchestra.run.smithi120.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [626 kB] 2024-09-10T03:59:48.630 INFO:teuthology.orchestra.run.smithi120.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-10T03:59:48.630 INFO:teuthology.orchestra.run.smithi120.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [731 kB] 2024-09-10T03:59:48.643 INFO:teuthology.orchestra.run.smithi120.stdout:Get:23 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [901 kB] 2024-09-10T03:59:48.645 INFO:teuthology.orchestra.run.smithi151.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-10T03:59:48.647 INFO:teuthology.orchestra.run.smithi120.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,123 kB] 2024-09-10T03:59:48.650 INFO:teuthology.orchestra.run.smithi151.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-10T03:59:48.658 INFO:teuthology.orchestra.run.smithi151.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-10T03:59:48.658 INFO:teuthology.orchestra.run.smithi120.stdout:Get:25 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [176 kB] 2024-09-10T03:59:48.658 INFO:teuthology.orchestra.run.smithi151.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-10T03:59:48.659 INFO:teuthology.orchestra.run.smithi151.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-10T03:59:48.660 INFO:teuthology.orchestra.run.smithi120.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-09-10T03:59:48.661 INFO:teuthology.orchestra.run.smithi120.stdout:Get:27 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-10T03:59:48.661 INFO:teuthology.orchestra.run.smithi120.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-10T03:59:48.661 INFO:teuthology.orchestra.run.smithi120.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-10T03:59:48.663 INFO:teuthology.orchestra.run.smithi120.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-10T03:59:48.666 INFO:teuthology.orchestra.run.smithi120.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-10T03:59:48.666 INFO:teuthology.orchestra.run.smithi120.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-10T03:59:48.667 INFO:teuthology.orchestra.run.smithi120.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-10T03:59:48.703 INFO:teuthology.orchestra.run.smithi120.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-10T03:59:48.732 INFO:teuthology.orchestra.run.smithi120.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-10T03:59:48.733 INFO:teuthology.orchestra.run.smithi151.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-10T03:59:48.733 INFO:teuthology.orchestra.run.smithi151.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-10T03:59:48.734 INFO:teuthology.orchestra.run.smithi151.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-10T03:59:48.735 INFO:teuthology.orchestra.run.smithi151.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-10T03:59:48.736 INFO:teuthology.orchestra.run.smithi151.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-10T03:59:48.739 INFO:teuthology.orchestra.run.smithi151.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-10T03:59:48.740 INFO:teuthology.orchestra.run.smithi151.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-10T03:59:48.748 INFO:teuthology.orchestra.run.smithi120.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-10T03:59:48.748 INFO:teuthology.orchestra.run.smithi120.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-10T03:59:48.750 INFO:teuthology.orchestra.run.smithi120.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-10T03:59:48.751 INFO:teuthology.orchestra.run.smithi120.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-10T03:59:48.751 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-10T03:59:48.785 INFO:teuthology.orchestra.run.smithi120.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-10T03:59:48.786 INFO:teuthology.orchestra.run.smithi120.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-10T03:59:48.786 INFO:teuthology.orchestra.run.smithi120.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-10T03:59:48.787 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-10T03:59:48.821 INFO:teuthology.orchestra.run.smithi151.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-10T03:59:48.821 INFO:teuthology.orchestra.run.smithi151.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-10T03:59:54.344 INFO:teuthology.orchestra.run.smithi151.stdout:Fetched 15.8 MB in 2s (7,446 kB/s) 2024-09-10T03:59:55.074 INFO:teuthology.orchestra.run.smithi120.stdout:Fetched 15.8 MB in 3s (5,763 kB/s) 2024-09-10T03:59:55.861 INFO:teuthology.orchestra.run.smithi151.stdout:Reading package lists... 2024-09-10T03:59:55.878 DEBUG:teuthology.orchestra.run.smithi151:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-10T03:59:55.941 INFO:teuthology.orchestra.run.smithi151.stdout:Reading package lists... 2024-09-10T03:59:56.151 INFO:teuthology.orchestra.run.smithi151.stdout:Building dependency tree... 2024-09-10T03:59:56.152 INFO:teuthology.orchestra.run.smithi151.stdout:Reading state information... 2024-09-10T03:59:56.328 INFO:teuthology.orchestra.run.smithi151.stdout:The following packages were automatically installed and are no longer required: 2024-09-10T03:59:56.328 INFO:teuthology.orchestra.run.smithi151.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-10T03:59:56.328 INFO:teuthology.orchestra.run.smithi151.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-10T03:59:56.329 INFO:teuthology.orchestra.run.smithi151.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-10T03:59:56.329 INFO:teuthology.orchestra.run.smithi151.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-10T03:59:56.329 INFO:teuthology.orchestra.run.smithi151.stdout: python2.7-minimal 2024-09-10T03:59:56.329 INFO:teuthology.orchestra.run.smithi151.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-10T03:59:56.330 INFO:teuthology.orchestra.run.smithi151.stdout:The following additional packages will be installed: 2024-09-10T03:59:56.330 INFO:teuthology.orchestra.run.smithi151.stdout: linux-generic linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-10T03:59:56.330 INFO:teuthology.orchestra.run.smithi151.stdout: linux-headers-generic linux-image-5.15.0-119-generic 2024-09-10T03:59:56.330 INFO:teuthology.orchestra.run.smithi151.stdout: linux-modules-5.15.0-119-generic linux-modules-extra-5.15.0-119-generic 2024-09-10T03:59:56.331 INFO:teuthology.orchestra.run.smithi151.stdout:Suggested packages: 2024-09-10T03:59:56.331 INFO:teuthology.orchestra.run.smithi151.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-10T03:59:56.332 INFO:teuthology.orchestra.run.smithi151.stdout:Recommended packages: 2024-09-10T03:59:56.332 INFO:teuthology.orchestra.run.smithi151.stdout: thermald 2024-09-10T03:59:56.382 INFO:teuthology.orchestra.run.smithi151.stdout:The following NEW packages will be installed: 2024-09-10T03:59:56.382 INFO:teuthology.orchestra.run.smithi151.stdout: linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-10T03:59:56.382 INFO:teuthology.orchestra.run.smithi151.stdout: linux-image-5.15.0-119-generic linux-modules-5.15.0-119-generic 2024-09-10T03:59:56.383 INFO:teuthology.orchestra.run.smithi151.stdout: linux-modules-extra-5.15.0-119-generic 2024-09-10T03:59:56.384 INFO:teuthology.orchestra.run.smithi151.stdout:The following packages will be upgraded: 2024-09-10T03:59:56.384 INFO:teuthology.orchestra.run.smithi151.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-10T03:59:56.497 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-10T03:59:56.514 DEBUG:teuthology.orchestra.run.smithi120:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-10T03:59:56.564 INFO:teuthology.orchestra.run.smithi151.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-10T03:59:56.564 INFO:teuthology.orchestra.run.smithi151.stdout:Need to get 113 MB of archives. 2024-09-10T03:59:56.564 INFO:teuthology.orchestra.run.smithi151.stdout:After this operation, 583 MB of additional disk space will be used. 2024-09-10T03:59:56.564 INFO:teuthology.orchestra.run.smithi151.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-10T03:59:56.575 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-10T03:59:56.760 INFO:teuthology.orchestra.run.smithi120.stdout:Building dependency tree... 2024-09-10T03:59:56.761 INFO:teuthology.orchestra.run.smithi120.stdout:Reading state information... 2024-09-10T03:59:56.926 INFO:teuthology.orchestra.run.smithi120.stdout:The following packages were automatically installed and are no longer required: 2024-09-10T03:59:56.926 INFO:teuthology.orchestra.run.smithi120.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-10T03:59:56.926 INFO:teuthology.orchestra.run.smithi120.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-10T03:59:56.926 INFO:teuthology.orchestra.run.smithi120.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-10T03:59:56.927 INFO:teuthology.orchestra.run.smithi120.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-10T03:59:56.927 INFO:teuthology.orchestra.run.smithi120.stdout: python2.7-minimal 2024-09-10T03:59:56.927 INFO:teuthology.orchestra.run.smithi120.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-10T03:59:56.928 INFO:teuthology.orchestra.run.smithi120.stdout:The following additional packages will be installed: 2024-09-10T03:59:56.928 INFO:teuthology.orchestra.run.smithi120.stdout: linux-generic linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-10T03:59:56.928 INFO:teuthology.orchestra.run.smithi120.stdout: linux-headers-generic linux-image-5.15.0-119-generic 2024-09-10T03:59:56.928 INFO:teuthology.orchestra.run.smithi120.stdout: linux-modules-5.15.0-119-generic linux-modules-extra-5.15.0-119-generic 2024-09-10T03:59:56.929 INFO:teuthology.orchestra.run.smithi120.stdout:Suggested packages: 2024-09-10T03:59:56.929 INFO:teuthology.orchestra.run.smithi120.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-10T03:59:56.929 INFO:teuthology.orchestra.run.smithi120.stdout:Recommended packages: 2024-09-10T03:59:56.929 INFO:teuthology.orchestra.run.smithi120.stdout: thermald 2024-09-10T03:59:56.981 INFO:teuthology.orchestra.run.smithi120.stdout:The following NEW packages will be installed: 2024-09-10T03:59:56.981 INFO:teuthology.orchestra.run.smithi120.stdout: linux-headers-5.15.0-119 linux-headers-5.15.0-119-generic 2024-09-10T03:59:56.981 INFO:teuthology.orchestra.run.smithi120.stdout: linux-image-5.15.0-119-generic linux-modules-5.15.0-119-generic 2024-09-10T03:59:56.982 INFO:teuthology.orchestra.run.smithi120.stdout: linux-modules-extra-5.15.0-119-generic 2024-09-10T03:59:56.982 INFO:teuthology.orchestra.run.smithi120.stdout:The following packages will be upgraded: 2024-09-10T03:59:56.983 INFO:teuthology.orchestra.run.smithi120.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-10T03:59:57.165 INFO:teuthology.orchestra.run.smithi120.stdout:3 upgraded, 5 newly installed, 0 to remove and 344 not upgraded. 2024-09-10T03:59:57.165 INFO:teuthology.orchestra.run.smithi120.stdout:Need to get 113 MB of archives. 2024-09-10T03:59:57.165 INFO:teuthology.orchestra.run.smithi120.stdout:After this operation, 583 MB of additional disk space will be used. 2024-09-10T03:59:57.165 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-10T03:59:57.967 INFO:teuthology.orchestra.run.smithi151.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-10T03:59:58.312 INFO:teuthology.orchestra.run.smithi151.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-10T03:59:58.580 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-10T03:59:58.932 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-10T04:00:00.498 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:00.498 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:00.498 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:00.836 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:00.916 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:01.161 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-10T04:00:01.161 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-10T04:00:01.162 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-10T04:00:01.313 INFO:teuthology.orchestra.run.smithi151.stdout:Fetched 113 MB in 5s (25.0 MB/s) 2024-09-10T04:00:01.473 INFO:teuthology.orchestra.run.smithi151.stdout:Selecting previously unselected package linux-modules-5.15.0-119-generic. 2024-09-10T04:00:01.505 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-10T04:00:01.585 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-10T04:00:01.985 INFO:teuthology.orchestra.run.smithi120.stdout:Fetched 113 MB in 5s (24.7 MB/s) 2024-09-10T04:00:02.225 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-modules-5.15.0-119-generic. 2024-09-10T04:00:03.521 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:03.526 INFO:teuthology.orchestra.run.smithi151.stdout:Preparing to unpack .../0-linux-modules-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-10T04:00:03.637 INFO:teuthology.orchestra.run.smithi151.stdout:Unpacking linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:04.227 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-10T04:00:04.232 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-10T04:00:04.288 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:06.097 INFO:teuthology.orchestra.run.smithi151.stdout:Selecting previously unselected package linux-image-5.15.0-119-generic. 2024-09-10T04:00:06.118 INFO:teuthology.orchestra.run.smithi151.stdout:Preparing to unpack .../1-linux-image-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-10T04:00:06.212 INFO:teuthology.orchestra.run.smithi151.stdout:Unpacking linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:06.633 INFO:teuthology.orchestra.run.smithi151.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-119-generic. 2024-09-10T04:00:06.654 INFO:teuthology.orchestra.run.smithi151.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-10T04:00:06.691 INFO:teuthology.orchestra.run.smithi151.stdout:Unpacking linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:06.881 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-image-5.15.0-119-generic. 2024-09-10T04:00:06.902 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-10T04:00:06.993 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:07.451 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-119-generic. 2024-09-10T04:00:07.471 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-10T04:00:07.508 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:13.458 INFO:teuthology.orchestra.run.smithi151.stdout:Preparing to unpack .../3-linux-generic_5.15.0.119.119_amd64.deb ... 2024-09-10T04:00:13.585 INFO:teuthology.orchestra.run.smithi151.stdout:Unpacking linux-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-10T04:00:13.926 INFO:teuthology.orchestra.run.smithi151.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.119.119_amd64.deb ... 2024-09-10T04:00:14.055 INFO:teuthology.orchestra.run.smithi151.stdout:Unpacking linux-image-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-10T04:00:14.096 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../3-linux-generic_5.15.0.119.119_amd64.deb ... 2024-09-10T04:00:14.204 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-10T04:00:14.350 INFO:teuthology.orchestra.run.smithi151.stdout:Selecting previously unselected package linux-headers-5.15.0-119. 2024-09-10T04:00:14.372 INFO:teuthology.orchestra.run.smithi151.stdout:Preparing to unpack .../5-linux-headers-5.15.0-119_5.15.0-119.129_all.deb ... 2024-09-10T04:00:14.408 INFO:teuthology.orchestra.run.smithi151.stdout:Unpacking linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-10T04:00:14.546 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.119.119_amd64.deb ... 2024-09-10T04:00:14.674 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-image-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-10T04:00:14.961 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-headers-5.15.0-119. 2024-09-10T04:00:14.974 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-10T04:00:15.011 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-10T04:00:20.430 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-headers-5.15.0-119-generic. 2024-09-10T04:00:20.442 INFO:teuthology.orchestra.run.smithi151.stdout:Selecting previously unselected package linux-headers-5.15.0-119-generic. 2024-09-10T04:00:20.467 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-10T04:00:20.480 INFO:teuthology.orchestra.run.smithi151.stdout:Preparing to unpack .../6-linux-headers-5.15.0-119-generic_5.15.0-119.129_amd64.deb ... 2024-09-10T04:00:20.496 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:20.517 INFO:teuthology.orchestra.run.smithi151.stdout:Unpacking linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:24.273 INFO:teuthology.orchestra.run.smithi151.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.119.119_amd64.deb ... 2024-09-10T04:00:24.395 INFO:teuthology.orchestra.run.smithi151.stdout:Unpacking linux-headers-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-10T04:00:24.671 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.119.119_amd64.deb ... 2024-09-10T04:00:24.737 INFO:teuthology.orchestra.run.smithi151.stdout:Setting up linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-10T04:00:24.804 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-headers-generic (5.15.0.119.119) over (5.15.0.56.54) ... 2024-09-10T04:00:24.866 INFO:teuthology.orchestra.run.smithi151.stdout:Setting up linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:24.993 INFO:teuthology.orchestra.run.smithi151.stdout:Setting up linux-headers-generic (5.15.0.119.119) ... 2024-09-10T04:00:25.105 INFO:teuthology.orchestra.run.smithi151.stdout:Setting up linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:25.163 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-headers-5.15.0-119 (5.15.0-119.129) ... 2024-09-10T04:00:25.285 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-headers-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:25.411 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-headers-generic (5.15.0.119.119) ... 2024-09-10T04:00:25.540 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:26.405 INFO:teuthology.orchestra.run.smithi151.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-10T04:00:26.405 INFO:teuthology.orchestra.run.smithi151.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-10T04:00:26.405 INFO:teuthology.orchestra.run.smithi151.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-119-generic 2024-09-10T04:00:26.405 INFO:teuthology.orchestra.run.smithi151.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-119-generic 2024-09-10T04:00:26.590 INFO:teuthology.orchestra.run.smithi151.stdout:Setting up linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:26.856 INFO:teuthology.orchestra.run.smithi120.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-10T04:00:26.857 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-10T04:00:26.857 INFO:teuthology.orchestra.run.smithi120.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-119-generic 2024-09-10T04:00:26.857 INFO:teuthology.orchestra.run.smithi120.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-119-generic 2024-09-10T04:00:27.001 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-modules-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:27.983 INFO:teuthology.orchestra.run.smithi151.stdout:Setting up linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:28.402 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-modules-extra-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:29.876 INFO:teuthology.orchestra.run.smithi151.stdout:Setting up linux-image-generic (5.15.0.119.119) ... 2024-09-10T04:00:30.002 INFO:teuthology.orchestra.run.smithi151.stdout:Setting up linux-generic (5.15.0.119.119) ... 2024-09-10T04:00:30.128 INFO:teuthology.orchestra.run.smithi151.stdout:Processing triggers for linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:30.205 INFO:teuthology.orchestra.run.smithi151.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-10T04:00:30.206 INFO:teuthology.orchestra.run.smithi151.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-119-generic 2024-09-10T04:00:30.237 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-image-generic (5.15.0.119.119) ... 2024-09-10T04:00:30.380 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-generic (5.15.0.119.119) ... 2024-09-10T04:00:30.506 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for linux-image-5.15.0-119-generic (5.15.0-119.129) ... 2024-09-10T04:00:30.562 INFO:teuthology.orchestra.run.smithi120.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-10T04:00:30.562 INFO:teuthology.orchestra.run.smithi120.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-119-generic 2024-09-10T04:00:44.312 INFO:teuthology.orchestra.run.smithi151.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-10T04:00:44.312 INFO:teuthology.orchestra.run.smithi151.stdout:Sourcing file `/etc/default/grub' 2024-09-10T04:00:44.336 INFO:teuthology.orchestra.run.smithi151.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-10T04:00:44.353 INFO:teuthology.orchestra.run.smithi151.stdout:Generating grub configuration file ... 2024-09-10T04:00:44.600 INFO:teuthology.orchestra.run.smithi120.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-10T04:00:44.600 INFO:teuthology.orchestra.run.smithi120.stdout:Sourcing file `/etc/default/grub' 2024-09-10T04:00:44.615 INFO:teuthology.orchestra.run.smithi120.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-10T04:00:44.633 INFO:teuthology.orchestra.run.smithi120.stdout:Generating grub configuration file ... 2024-09-10T04:00:44.732 INFO:teuthology.orchestra.run.smithi151.stdout:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-10T04:00:44.762 INFO:teuthology.orchestra.run.smithi151.stdout:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-10T04:00:44.895 INFO:teuthology.orchestra.run.smithi120.stdout:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-10T04:00:44.915 INFO:teuthology.orchestra.run.smithi120.stdout:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-10T04:00:45.087 INFO:teuthology.orchestra.run.smithi151.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-10T04:00:45.093 INFO:teuthology.orchestra.run.smithi151.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-10T04:00:45.160 INFO:teuthology.orchestra.run.smithi151.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-10T04:00:45.166 INFO:teuthology.orchestra.run.smithi151.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-10T04:00:45.214 INFO:teuthology.orchestra.run.smithi120.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-10T04:00:45.219 INFO:teuthology.orchestra.run.smithi120.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-10T04:00:45.286 INFO:teuthology.orchestra.run.smithi120.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-10T04:00:45.292 INFO:teuthology.orchestra.run.smithi120.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-10T04:00:45.321 INFO:teuthology.orchestra.run.smithi151.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-10T04:00:45.321 INFO:teuthology.orchestra.run.smithi151.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-10T04:00:45.321 INFO:teuthology.orchestra.run.smithi151.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-10T04:00:45.365 INFO:teuthology.orchestra.run.smithi151.stdout:done 2024-09-10T04:00:45.457 INFO:teuthology.orchestra.run.smithi120.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-10T04:00:45.457 INFO:teuthology.orchestra.run.smithi120.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-10T04:00:45.457 INFO:teuthology.orchestra.run.smithi120.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-10T04:00:45.503 INFO:teuthology.orchestra.run.smithi120.stdout:done 2024-09-10T04:00:45.837 DEBUG:teuthology.orchestra.run.smithi151:> dpkg -s linux-image-generic 2024-09-10T04:00:45.859 INFO:teuthology.orchestra.run.smithi151.stdout:Package: linux-image-generic 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.stdout:Status: install ok installed 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.stdout:Priority: optional 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.stdout:Section: kernel 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.stdout:Installed-Size: 21 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.stdout:Maintainer: Ubuntu Kernel Team 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.stdout:Architecture: amd64 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.stdout:Source: linux-meta 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.stdout:Version: 5.15.0.119.119 2024-09-10T04:00:45.860 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:45.861 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:45.861 INFO:teuthology.orchestra.run.smithi151.stdout:Recommends: thermald 2024-09-10T04:00:45.861 INFO:teuthology.orchestra.run.smithi151.stdout:Description: Generic Linux kernel image 2024-09-10T04:00:45.861 INFO:teuthology.orchestra.run.smithi151.stdout: This package will always depend on the latest generic kernel image 2024-09-10T04:00:45.861 INFO:teuthology.orchestra.run.smithi151.stdout: available. 2024-09-10T04:00:45.861 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-119-generic 2024-09-10T04:00:45.861 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-10T04:00:45.861 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-10T04:00:45.862 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-10T04:00:45.862 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi151.front.sepia.ceph.com, path=None, version=distro) 2024-09-10T04:00:45.862 DEBUG:teuthology.orchestra.run.smithi151:> sudo apt-get clean 2024-09-10T04:00:45.965 DEBUG:teuthology.orchestra.run.smithi120:> dpkg -s linux-image-generic 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Package: linux-image-generic 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Status: install ok installed 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Priority: optional 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Section: kernel 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Installed-Size: 21 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Maintainer: Ubuntu Kernel Team 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Architecture: amd64 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Source: linux-meta 2024-09-10T04:00:45.989 INFO:teuthology.orchestra.run.smithi120.stdout:Version: 5.15.0.119.119 2024-09-10T04:00:45.990 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-10T04:00:45.990 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-10T04:00:45.990 INFO:teuthology.orchestra.run.smithi120.stdout:Recommends: thermald 2024-09-10T04:00:45.990 INFO:teuthology.orchestra.run.smithi120.stdout:Description: Generic Linux kernel image 2024-09-10T04:00:45.990 INFO:teuthology.orchestra.run.smithi120.stdout: This package will always depend on the latest generic kernel image 2024-09-10T04:00:45.990 INFO:teuthology.orchestra.run.smithi120.stdout: available. 2024-09-10T04:00:45.990 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-119-generic 2024-09-10T04:00:45.990 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-10T04:00:45.990 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-10T04:00:45.991 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-10T04:00:45.991 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi120.front.sepia.ceph.com, path=None, version=distro) 2024-09-10T04:00:45.991 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get clean 2024-09-10T04:00:46.008 DEBUG:teuthology.orchestra.run.smithi151:> sudo apt-get update 2024-09-10T04:00:46.191 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get update 2024-09-10T04:00:46.254 INFO:teuthology.orchestra.run.smithi151.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-10T04:00:46.289 INFO:teuthology.orchestra.run.smithi151.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-10T04:00:46.370 INFO:teuthology.orchestra.run.smithi151.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-10T04:00:46.452 INFO:teuthology.orchestra.run.smithi151.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-10T04:00:46.535 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-10T04:00:46.535 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-10T04:00:46.542 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-10T04:00:46.559 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-10T04:00:47.674 INFO:teuthology.orchestra.run.smithi151.stdout:Reading package lists... 2024-09-10T04:00:47.691 DEBUG:teuthology.orchestra.run.smithi151:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-10T04:00:47.753 INFO:teuthology.orchestra.run.smithi151.stdout:Reading package lists... 2024-09-10T04:00:47.971 INFO:teuthology.orchestra.run.smithi151.stdout:Building dependency tree... 2024-09-10T04:00:47.972 INFO:teuthology.orchestra.run.smithi151.stdout:Reading state information... 2024-09-10T04:00:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-10T04:00:48.054 DEBUG:teuthology.orchestra.run.smithi120:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-10T04:00:48.116 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-10T04:00:48.157 INFO:teuthology.orchestra.run.smithi151.stdout:linux-image-generic is already the newest version (5.15.0.119.119). 2024-09-10T04:00:48.158 INFO:teuthology.orchestra.run.smithi151.stdout:The following packages were automatically installed and are no longer required: 2024-09-10T04:00:48.158 INFO:teuthology.orchestra.run.smithi151.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-10T04:00:48.158 INFO:teuthology.orchestra.run.smithi151.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-10T04:00:48.158 INFO:teuthology.orchestra.run.smithi151.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-10T04:00:48.158 INFO:teuthology.orchestra.run.smithi151.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-10T04:00:48.159 INFO:teuthology.orchestra.run.smithi151.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-10T04:00:48.159 INFO:teuthology.orchestra.run.smithi151.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-10T04:00:48.198 INFO:teuthology.orchestra.run.smithi151.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-10T04:00:48.200 DEBUG:teuthology.orchestra.run.smithi151:> dpkg -s linux-image-generic 2024-09-10T04:00:48.215 INFO:teuthology.orchestra.run.smithi151.stdout:Package: linux-image-generic 2024-09-10T04:00:48.215 INFO:teuthology.orchestra.run.smithi151.stdout:Status: install ok installed 2024-09-10T04:00:48.215 INFO:teuthology.orchestra.run.smithi151.stdout:Priority: optional 2024-09-10T04:00:48.215 INFO:teuthology.orchestra.run.smithi151.stdout:Section: kernel 2024-09-10T04:00:48.215 INFO:teuthology.orchestra.run.smithi151.stdout:Installed-Size: 21 2024-09-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.stdout:Maintainer: Ubuntu Kernel Team 2024-09-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.stdout:Architecture: amd64 2024-09-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.stdout:Source: linux-meta 2024-09-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.stdout:Version: 5.15.0.119.119 2024-09-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.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-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.stdout:Recommends: thermald 2024-09-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.stdout:Description: Generic Linux kernel image 2024-09-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.stdout: This package will always depend on the latest generic kernel image 2024-09-10T04:00:48.216 INFO:teuthology.orchestra.run.smithi151.stdout: available. 2024-09-10T04:00:48.217 DEBUG:teuthology.orchestra.run.smithi151:> mktemp 2024-09-10T04:00:48.263 INFO:teuthology.orchestra.run.smithi151.stdout:/tmp/tmp.CsJjrGVeW5 2024-09-10T04:00:48.263 DEBUG:teuthology.orchestra.run.smithi151:> sudo cp /boot/grub/grub.cfg /tmp/tmp.CsJjrGVeW5 2024-09-10T04:00:48.319 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod 0666 /tmp/tmp.CsJjrGVeW5 2024-09-10T04:00:48.331 INFO:teuthology.orchestra.run.smithi120.stdout:Building dependency tree... 2024-09-10T04:00:48.332 INFO:teuthology.orchestra.run.smithi120.stdout:Reading state information... 2024-09-10T04:00:48.439 DEBUG:teuthology.orchestra.remote:smithi151:/tmp/tmp.CsJjrGVeW5 is 10KB 2024-09-10T04:00:48.451 DEBUG:teuthology.orchestra.run.smithi151:> rm -fr /tmp/tmp.CsJjrGVeW5 2024-09-10T04:00:48.456 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-10T04:00:48.508 INFO:teuthology.orchestra.run.smithi120.stdout:linux-image-generic is already the newest version (5.15.0.119.119). 2024-09-10T04:00:48.508 INFO:teuthology.orchestra.run.smithi120.stdout:The following packages were automatically installed and are no longer required: 2024-09-10T04:00:48.508 INFO:teuthology.orchestra.run.smithi120.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-10T04:00:48.508 INFO:teuthology.orchestra.run.smithi120.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-10T04:00:48.508 INFO:teuthology.orchestra.run.smithi120.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-10T04:00:48.509 INFO:teuthology.orchestra.run.smithi120.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-10T04:00:48.509 INFO:teuthology.orchestra.run.smithi120.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-10T04:00:48.509 INFO:teuthology.orchestra.run.smithi120.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-10T04:00:48.514 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:00:48.515 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-10T04:00:48.515 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-10T04:00:48.547 INFO:teuthology.orchestra.run.smithi120.stdout:0 upgraded, 0 newly installed, 0 to remove and 344 not upgraded. 2024-09-10T04:00:48.548 DEBUG:teuthology.orchestra.run.smithi120:> dpkg -s linux-image-generic 2024-09-10T04:00:48.564 INFO:teuthology.orchestra.run.smithi120.stdout:Package: linux-image-generic 2024-09-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Status: install ok installed 2024-09-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Priority: optional 2024-09-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Section: kernel 2024-09-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Installed-Size: 21 2024-09-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Maintainer: Ubuntu Kernel Team 2024-09-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Architecture: amd64 2024-09-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Source: linux-meta 2024-09-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Version: 5.15.0.119.119 2024-09-10T04:00:48.565 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-10T04:00:48.565 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-10T04:00:48.565 INFO:teuthology.orchestra.run.smithi120.stdout:Recommends: thermald 2024-09-10T04:00:48.566 INFO:teuthology.orchestra.run.smithi120.stdout:Description: Generic Linux kernel image 2024-09-10T04:00:48.566 INFO:teuthology.orchestra.run.smithi120.stdout: This package will always depend on the latest generic kernel image 2024-09-10T04:00:48.566 INFO:teuthology.orchestra.run.smithi120.stdout: available. 2024-09-10T04:00:48.566 DEBUG:teuthology.orchestra.run.smithi120:> mktemp 2024-09-10T04:00:48.581 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-119-generic 2024-09-10T04:00:48.581 DEBUG:teuthology.orchestra.run.smithi151:> sudo update-grub 2024-09-10T04:00:48.614 INFO:teuthology.orchestra.run.smithi120.stdout:/tmp/tmp.Yp2dbo5ydk 2024-09-10T04:00:48.615 DEBUG:teuthology.orchestra.run.smithi120:> sudo cp /boot/grub/grub.cfg /tmp/tmp.Yp2dbo5ydk 2024-09-10T04:00:48.669 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 0666 /tmp/tmp.Yp2dbo5ydk 2024-09-10T04:00:48.788 DEBUG:teuthology.orchestra.remote:smithi120:/tmp/tmp.Yp2dbo5ydk is 10KB 2024-09-10T04:00:48.801 DEBUG:teuthology.orchestra.run.smithi120:> rm -fr /tmp/tmp.Yp2dbo5ydk 2024-09-10T04:00:48.806 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-10T04:00:48.859 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:00:48.859 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-10T04:00:48.859 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-10T04:00:48.930 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-119-generic 2024-09-10T04:00:48.930 DEBUG:teuthology.orchestra.run.smithi120:> sudo update-grub 2024-09-10T04:00:49.951 INFO:teuthology.orchestra.run.smithi151.stderr:Sourcing file `/etc/default/grub' 2024-09-10T04:00:49.952 INFO:teuthology.orchestra.run.smithi151.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-10T04:00:49.961 INFO:teuthology.orchestra.run.smithi151.stderr:Generating grub configuration file ... 2024-09-10T04:00:50.141 INFO:teuthology.orchestra.run.smithi151.stderr:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-10T04:00:50.147 INFO:teuthology.orchestra.run.smithi151.stderr:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-10T04:00:50.173 INFO:teuthology.orchestra.run.smithi120.stderr:Sourcing file `/etc/default/grub' 2024-09-10T04:00:50.173 INFO:teuthology.orchestra.run.smithi120.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-10T04:00:50.174 INFO:teuthology.orchestra.run.smithi120.stderr:Generating grub configuration file ... 2024-09-10T04:00:50.363 INFO:teuthology.orchestra.run.smithi120.stderr:Found linux image: /boot/vmlinuz-5.15.0-119-generic 2024-09-10T04:00:50.369 INFO:teuthology.orchestra.run.smithi120.stderr:Found initrd image: /boot/initrd.img-5.15.0-119-generic 2024-09-10T04:00:50.387 INFO:teuthology.orchestra.run.smithi151.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-10T04:00:50.392 INFO:teuthology.orchestra.run.smithi151.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-10T04:00:50.431 INFO:teuthology.orchestra.run.smithi151.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-10T04:00:50.437 INFO:teuthology.orchestra.run.smithi151.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-10T04:00:50.561 INFO:teuthology.orchestra.run.smithi151.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-10T04:00:50.561 INFO:teuthology.orchestra.run.smithi151.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-10T04:00:50.561 INFO:teuthology.orchestra.run.smithi151.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-10T04:00:50.593 INFO:teuthology.orchestra.run.smithi151.stderr:done 2024-09-10T04:00:50.602 DEBUG:teuthology.orchestra.run.smithi151:> sudo shutdown -r now 2024-09-10T04:00:50.605 INFO:teuthology.orchestra.run.smithi120.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-10T04:00:50.610 INFO:teuthology.orchestra.run.smithi120.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-10T04:00:50.650 INFO:teuthology.orchestra.run.smithi120.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-10T04:00:50.655 INFO:teuthology.orchestra.run.smithi120.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-10T04:00:50.781 INFO:teuthology.orchestra.run.smithi120.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-10T04:00:50.781 INFO:teuthology.orchestra.run.smithi120.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-10T04:00:50.781 INFO:teuthology.orchestra.run.smithi120.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-10T04:00:50.794 INFO:teuthology.orchestra.run.smithi120.stderr:done 2024-09-10T04:00:50.813 DEBUG:teuthology.orchestra.run.smithi120:> sudo shutdown -r now 2024-09-10T04:01:20.633 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-10T04:01:20.634 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-10T04:01:20.635 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:01:20.816 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-10T04:01:20.816 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-10T04:01:20.817 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:01:39.133 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.151 2024-09-10T04:01:39.134 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-09-10T04:01:48.141 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-10T04:01:48.142 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:01:48.144 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-10T04:01:48.144 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:01:51.197 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.151 2024-09-10T04:01:51.197 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-09-10T04:02:03.209 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-10T04:02:03.210 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:02:03.212 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-10T04:02:03.212 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:02:21.629 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.151 2024-09-10T04:02:21.630 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-09-10T04:02:36.645 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-10T04:02:36.647 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:02:36.648 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-10T04:02:36.649 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:02:37.027 DEBUG:teuthology.orchestra.run.smithi120:> true 2024-09-10T04:02:37.162 DEBUG:teuthology.orchestra.run.smithi151:> true 2024-09-10T04:02:37.570 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-10T04:02:37.570 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-119-generic"... 2024-09-10T04:02:37.571 DEBUG:teuthology.orchestra.run.smithi120:> uname -r 2024-09-10T04:02:37.619 INFO:teuthology.orchestra.run.smithi120.stdout:5.15.0-119-generic 2024-09-10T04:02:37.619 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-119-generic vs 5.15.0-119-generic 2024-09-10T04:02:37.619 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-10T04:02:37.619 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-10T04:02:38.154 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-10T04:02:38.154 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-119-generic"... 2024-09-10T04:02:38.154 DEBUG:teuthology.orchestra.run.smithi151:> uname -r 2024-09-10T04:02:38.159 INFO:teuthology.orchestra.run.smithi151.stdout:5.15.0-119-generic 2024-09-10T04:02:38.159 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-119-generic vs 5.15.0-119-generic 2024-09-10T04:02:38.159 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-10T04:02:38.159 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-10T04:02:38.620 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-10T04:02:38.620 DEBUG:teuthology.orchestra.run.smithi120:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-10T04:02:38.977 INFO:teuthology.orchestra.run.smithi120.stdout:ttyS1 2024-09-10T04:02:38.997 DEBUG:teuthology.parallel:result is None 2024-09-10T04:02:39.160 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-10T04:02:39.160 DEBUG:teuthology.orchestra.run.smithi151:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-10T04:02:39.328 INFO:teuthology.orchestra.run.smithi151.stdout:ttyS1 2024-09-10T04:02:39.357 DEBUG:teuthology.parallel:result is None 2024-09-10T04:02:39.357 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-10T04:02:39.364 INFO:teuthology.task.internal:Creating test directory... 2024-09-10T04:02:39.364 DEBUG:teuthology.orchestra.run.smithi120:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-10T04:02:39.367 DEBUG:teuthology.orchestra.run.smithi151:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-10T04:02:39.371 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-10T04:02:39.454 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-10T04:02:39.462 INFO:teuthology.task.internal:Creating archive directory... 2024-09-10T04:02:39.463 DEBUG:teuthology.orchestra.run.smithi120:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-10T04:02:39.465 DEBUG:teuthology.orchestra.run.smithi151:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-10T04:02:39.483 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-10T04:02:39.489 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-10T04:02:39.489 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-10T04:02:39.524 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:02:39.545 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-10T04:02:39.552 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-10T04:02:39.555 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-10T04:02:39.563 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-10T04:02:39.564 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-10T04:02:39.571 INFO:teuthology.task.internal:Configuring sudo... 2024-09-10T04:02:39.571 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-10T04:02:39.612 DEBUG:teuthology.orchestra.run.smithi151:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-10T04:02:39.629 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-10T04:02:39.638 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-10T04:02:39.638 DEBUG:teuthology.orchestra.run.smithi120:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-10T04:02:39.672 DEBUG:teuthology.orchestra.run.smithi151:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-10T04:02:39.677 DEBUG:teuthology.orchestra.run.smithi120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-10T04:02:39.723 DEBUG:teuthology.orchestra.run.smithi120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-10T04:02:39.771 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:02:39.771 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-10T04:02:39.840 DEBUG:teuthology.orchestra.run.smithi151:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-10T04:02:39.846 DEBUG:teuthology.orchestra.run.smithi151:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-10T04:02:39.896 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:02:39.896 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-10T04:02:39.987 DEBUG:teuthology.orchestra.run.smithi120:> sudo service rsyslog restart 2024-09-10T04:02:39.989 DEBUG:teuthology.orchestra.run.smithi151:> sudo service rsyslog restart 2024-09-10T04:02:40.101 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-10T04:02:40.108 INFO:teuthology.task.internal:Starting timer... 2024-09-10T04:02:40.109 INFO:teuthology.run_tasks:Running task pcp... 2024-09-10T04:02:40.119 INFO:teuthology.run_tasks:Running task selinux... 2024-09-10T04:02:40.129 DEBUG:teuthology.task.selinux:Excluding smithi120: OS 'ubuntu' does not support SELinux 2024-09-10T04:02:40.129 DEBUG:teuthology.task.selinux:Excluding smithi151: OS 'ubuntu' does not support SELinux 2024-09-10T04:02:40.129 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-10T04:02:40.129 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-10T04:02:40.129 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-10T04:02:40.129 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-10T04:02:40.137 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-10T04:02:40.140 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-10T04:02:40.292 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-10T04:02:40.302 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-10T04:02:40.303 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi120.front.sepia.ceph.com,smithi151.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-10T04:10:09.606 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi120.front.sepia.ceph.com'), Remote(name='ubuntu@smithi151.front.sepia.ceph.com')] 2024-09-10T04:10:09.607 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-10T04:10:09.608 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:10:09.747 DEBUG:teuthology.orchestra.run.smithi120:> true 2024-09-10T04:10:09.829 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-09-10T04:10:09.829 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-10T04:10:09.830 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-10T04:10:09.908 DEBUG:teuthology.orchestra.run.smithi151:> true 2024-09-10T04:10:09.989 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-09-10T04:10:09.990 INFO:teuthology.run_tasks:Running task clock... 2024-09-10T04:10:09.999 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-10T04:10:10.000 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-10T04:10:10.000 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-10T04:10:10.003 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-10T04:10:10.003 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:10:10.031 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-10T04:10:10.031 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Command line: ntpd -gq 2024-09-10T04:10:10.031 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: ---------------------------------------------------- 2024-09-10T04:10:10.031 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: ntp-4 is maintained by Network Time Foundation, 2024-09-10T04:10:10.031 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-10T04:10:10.031 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: corporation. Support and training for ntp-4 are 2024-09-10T04:10:10.031 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: available at https://www.nwtime.org/support 2024-09-10T04:10:10.032 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: ---------------------------------------------------- 2024-09-10T04:10:10.032 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: proto: precision = 0.061 usec (-24) 2024-09-10T04:10:10.033 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: basedate set to 2022-02-04 2024-09-10T04:10:10.033 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: gps base set to 2022-02-06 (week 2196) 2024-09-10T04:10:10.033 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-10T04:10:10.033 INFO:teuthology.orchestra.run.smithi120.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-10T04:10:10.033 INFO:teuthology.orchestra.run.smithi120.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-10T04:10:10.034 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: restrict ::: KOD does nothing without LIMITED. 2024-09-10T04:10:10.034 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Listen and drop on 0 v6wildcard [::]:123 2024-09-10T04:10:10.034 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-10T04:10:10.035 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Listen normally on 2 lo 127.0.0.1:123 2024-09-10T04:10:10.035 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Listen normally on 3 enp3s0f1 172.21.15.120:123 2024-09-10T04:10:10.035 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Listen normally on 4 lo [::1]:123 2024-09-10T04:10:10.035 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:478f%5]:123 2024-09-10T04:10:10.035 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:10 ntpd[18455]: Listening on routing socket on fd #22 for interface updates 2024-09-10T04:10:10.060 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-10T04:10:10.060 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Command line: ntpd -gq 2024-09-10T04:10:10.060 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: ---------------------------------------------------- 2024-09-10T04:10:10.060 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: ntp-4 is maintained by Network Time Foundation, 2024-09-10T04:10:10.060 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-10T04:10:10.061 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: corporation. Support and training for ntp-4 are 2024-09-10T04:10:10.061 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: available at https://www.nwtime.org/support 2024-09-10T04:10:10.061 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: ---------------------------------------------------- 2024-09-10T04:10:10.061 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: proto: precision = 0.044 usec (-24) 2024-09-10T04:10:10.061 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: basedate set to 2022-02-04 2024-09-10T04:10:10.061 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: gps base set to 2022-02-06 (week 2196) 2024-09-10T04:10:10.062 INFO:teuthology.orchestra.run.smithi151.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-10T04:10:10.062 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-10T04:10:10.062 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: restrict ::: KOD does nothing without LIMITED. 2024-09-10T04:10:10.062 INFO:teuthology.orchestra.run.smithi151.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-10T04:10:10.063 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Listen and drop on 0 v6wildcard [::]:123 2024-09-10T04:10:10.063 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-10T04:10:10.063 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Listen normally on 2 lo 127.0.0.1:123 2024-09-10T04:10:10.063 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Listen normally on 3 enp3s0f1 172.21.15.151:123 2024-09-10T04:10:10.064 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Listen normally on 4 lo [::1]:123 2024-09-10T04:10:10.064 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:6f63%5]:123 2024-09-10T04:10:10.064 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:10 ntpd[18426]: Listening on routing socket on fd #22 for interface updates 2024-09-10T04:10:11.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:11 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:11.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:11 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:11.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:11 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:11.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:11 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:11.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:11 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:11.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:11 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:11.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:11 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:11.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:11 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:11.061 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:11 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:11.061 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:11 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:11.061 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:11 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:11.061 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:11 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:11.061 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:11 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:11.061 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:11 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:12.031 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:12 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:12.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:12 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:12.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:12 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:12.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:12 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:12.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:12 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:12.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:12 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:12.061 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:12 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:12.061 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:12 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:13.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:13.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:13.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:13 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:13.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:13.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:13 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:14.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:14 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:14.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:14 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:14.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:14 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:14.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:14 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:14.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:14 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:14.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:14 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:15.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:15.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:15 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:15.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.064 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:15.064 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:15.064 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:15.064 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:15.064 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:15.064 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:15 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:16.031 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:16 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:16.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:16 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:16.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:16 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:16.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:16 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:16.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:16 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:16.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:16 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:17.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.032 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:17.033 INFO:teuthology.orchestra.run.smithi120.stdout:10 Sep 04:10:17 ntpd[18455]: ntpd: time slew -0.000808 s 2024-09-10T04:10:17.034 INFO:teuthology.orchestra.run.smithi120.stdout:ntpd: time slew -0.000808s 2024-09-10T04:10:17.034 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-10T04:10:17.034 INFO:teuthology.orchestra.run.smithi120.stderr:10 Sep 04:10:17 ntpd[18455]: can't open /var/log/ntpstats/loopstats.20240910: Permission denied 2024-09-10T04:10:17.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.062 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/rawstats.20240910: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-10T04:10:17.063 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/peerstats.20240910: Permission denied 2024-09-10T04:10:17.064 INFO:teuthology.orchestra.run.smithi151.stdout:10 Sep 04:10:17 ntpd[18426]: ntpd: time slew -0.000276 s 2024-09-10T04:10:17.064 INFO:teuthology.orchestra.run.smithi151.stdout:ntpd: time slew -0.000276s 2024-09-10T04:10:17.064 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-10T04:10:17.064 INFO:teuthology.orchestra.run.smithi151.stderr:10 Sep 04:10:17 ntpd[18426]: can't open /var/log/ntpstats/loopstats.20240910: Permission denied 2024-09-10T04:10:17.087 INFO:teuthology.orchestra.run.smithi120.stdout: remote refid st t when poll reach delay offset jitter 2024-09-10T04:10:17.087 INFO:teuthology.orchestra.run.smithi120.stdout:============================================================================== 2024-09-10T04:10:17.087 INFO:teuthology.orchestra.run.smithi120.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-10T04:10:17.087 INFO:teuthology.orchestra.run.smithi120.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-10T04:10:17.087 INFO:teuthology.orchestra.run.smithi120.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-10T04:10:17.087 INFO:teuthology.orchestra.run.smithi120.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-10T04:10:17.115 INFO:teuthology.orchestra.run.smithi151.stdout: remote refid st t when poll reach delay offset jitter 2024-09-10T04:10:17.115 INFO:teuthology.orchestra.run.smithi151.stdout:============================================================================== 2024-09-10T04:10:17.115 INFO:teuthology.orchestra.run.smithi151.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-10T04:10:17.115 INFO:teuthology.orchestra.run.smithi151.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-10T04:10:17.115 INFO:teuthology.orchestra.run.smithi151.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-10T04:10:17.115 INFO:teuthology.orchestra.run.smithi151.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-10T04:10:17.116 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-10T04:10:17.126 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-10T04:10:17.127 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:10:17.127 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-09-10T04:10:17.136 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-10T04:10:17.136 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_1 2024-09-10T04:10:17.188 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-10T04:10:17.188 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-10T04:10:17.188 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 874 Links: 1 2024-09-10T04:10:17.188 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-10T04:10:17.188 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-10 04:06:39.191343020 +0000 2024-09-10T04:10:17.188 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-10 04:06:38.927345377 +0000 2024-09-10T04:10:17.189 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-10 04:06:38.927345377 +0000 2024-09-10T04:10:17.189 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-10T04:10:17.189 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-10T04:10:17.242 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-10T04:10:17.243 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-10T04:10:17.243 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000385963 s, 1.3 MB/s 2024-09-10T04:10:17.244 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-10T04:10:17.293 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_2 2024-09-10T04:10:17.344 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-10T04:10:17.344 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-10T04:10:17.344 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 891 Links: 1 2024-09-10T04:10:17.344 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-10T04:10:17.344 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-10 04:06:39.699338482 +0000 2024-09-10T04:10:17.344 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-10 04:06:39.431340876 +0000 2024-09-10T04:10:17.344 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-10 04:06:39.431340876 +0000 2024-09-10T04:10:17.344 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-10T04:10:17.344 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-10T04:10:17.401 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-10T04:10:17.401 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-10T04:10:17.402 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.00030358 s, 1.7 MB/s 2024-09-10T04:10:17.402 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-10T04:10:17.449 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_3 2024-09-10T04:10:17.496 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-10T04:10:17.496 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-10T04:10:17.497 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 911 Links: 1 2024-09-10T04:10:17.497 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-10T04:10:17.497 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-10 04:06:40.199334016 +0000 2024-09-10T04:10:17.497 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-10 04:06:39.935336375 +0000 2024-09-10T04:10:17.497 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-10 04:06:39.935336375 +0000 2024-09-10T04:10:17.497 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-10T04:10:17.498 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-10T04:10:17.549 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-10T04:10:17.549 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-10T04:10:17.550 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000429166 s, 1.2 MB/s 2024-09-10T04:10:17.551 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-10T04:10:17.601 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_4 2024-09-10T04:10:17.648 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-10T04:10:17.648 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-10T04:10:17.648 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 921 Links: 1 2024-09-10T04:10:17.648 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-10T04:10:17.648 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-10 04:06:40.687329657 +0000 2024-09-10T04:10:17.648 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-10 04:06:40.427331979 +0000 2024-09-10T04:10:17.648 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-10 04:06:40.427331979 +0000 2024-09-10T04:10:17.648 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-10T04:10:17.649 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-10T04:10:17.702 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-10T04:10:17.702 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-10T04:10:17.702 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000401207 s, 1.3 MB/s 2024-09-10T04:10:17.704 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-10T04:10:17.753 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-10T04:10:17.897 INFO:teuthology.orchestra.run.smithi120.stdout:loop 2024-09-10T04:10:17.898 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_1... 2024-09-10T04:10:17.898 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-10T04:10:17.915 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-09-10T04:10:17.933 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_11 2024-09-10T04:10:17.950 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_2... 2024-09-10T04:10:17.950 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-10T04:10:18.006 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-09-10T04:10:18.027 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_21 2024-09-10T04:10:18.044 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_3... 2024-09-10T04:10:18.044 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-10T04:10:18.103 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-09-10T04:10:18.124 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_31 2024-09-10T04:10:18.142 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_4... 2024-09-10T04:10:18.143 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-10T04:10:18.200 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-09-10T04:10:18.222 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_41 2024-09-10T04:10:18.238 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:10:18.238 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-09-10T04:10:18.288 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme list -o json 2024-09-10T04:10:18.341 INFO:teuthology.orchestra.run.smithi120.stdout:{ 2024-09-10T04:10:18.341 INFO:teuthology.orchestra.run.smithi120.stdout: "Devices" : [ 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "8DV101F0", 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 0, 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "INTEL SSDPEDMD400G4", 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "PHFT620400XV400BGN" 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: }, 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "5.15.0-1", 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 1, 2024-09-10T04:10:18.342 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "Linux", 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "c97f2b817277ea7591b8" 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: }, 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "5.15.0-1", 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 2, 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "Linux", 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "0a3755113558249d0b7a" 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: }, 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-10T04:10:18.343 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "5.15.0-1", 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 3, 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "Linux", 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "3d66f4bf1349f73f3726" 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: }, 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: { 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "Firmware" : "5.15.0-1", 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "Index" : 4, 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "ModelNumber" : "Linux", 2024-09-10T04:10:18.344 INFO:teuthology.orchestra.run.smithi120.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:18.345 INFO:teuthology.orchestra.run.smithi120.stdout: "SerialNumber" : "9c6d6df1f745e55473d2" 2024-09-10T04:10:18.345 INFO:teuthology.orchestra.run.smithi120.stdout: } 2024-09-10T04:10:18.345 INFO:teuthology.orchestra.run.smithi120.stdout: ] 2024-09-10T04:10:18.345 INFO:teuthology.orchestra.run.smithi120.stdout:} 2024-09-10T04:10:18.346 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-10T04:10:18.346 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:10:18.346 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/scratch_devs 2024-09-10T04:10:18.400 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:10:18.401 DEBUG:teuthology.orchestra.run.smithi151:> dd if=/scratch_devs of=/dev/stdout 2024-09-10T04:10:18.407 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-10T04:10:18.407 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_1 2024-09-10T04:10:18.455 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-10T04:10:18.455 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-10T04:10:18.455 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 877 Links: 1 2024-09-10T04:10:18.455 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-10T04:10:18.455 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-10 04:06:40.067031218 +0000 2024-09-10T04:10:18.455 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-10 04:06:39.847033183 +0000 2024-09-10T04:10:18.455 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-10 04:06:39.847033183 +0000 2024-09-10T04:10:18.455 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: - 2024-09-10T04:10:18.456 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-10T04:10:18.509 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-10T04:10:18.509 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-10T04:10:18.509 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000437136 s, 1.2 MB/s 2024-09-10T04:10:18.510 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-10T04:10:18.563 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_2 2024-09-10T04:10:18.610 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-10T04:10:18.610 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-10T04:10:18.610 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 893 Links: 1 2024-09-10T04:10:18.610 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-10T04:10:18.610 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-10 04:06:40.559026824 +0000 2024-09-10T04:10:18.610 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-10 04:06:40.339028789 +0000 2024-09-10T04:10:18.610 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-10 04:06:40.339028789 +0000 2024-09-10T04:10:18.610 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: - 2024-09-10T04:10:18.611 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-10T04:10:18.664 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-10T04:10:18.665 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-10T04:10:18.665 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000447202 s, 1.1 MB/s 2024-09-10T04:10:18.666 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-10T04:10:18.715 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_3 2024-09-10T04:10:18.762 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-10T04:10:18.762 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-10T04:10:18.762 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 909 Links: 1 2024-09-10T04:10:18.762 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-10T04:10:18.762 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-10 04:06:41.015022751 +0000 2024-09-10T04:10:18.762 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-10 04:06:40.791024752 +0000 2024-09-10T04:10:18.762 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-10 04:06:40.791024752 +0000 2024-09-10T04:10:18.763 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: - 2024-09-10T04:10:18.763 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-10T04:10:18.815 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-10T04:10:18.815 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-10T04:10:18.815 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000320052 s, 1.6 MB/s 2024-09-10T04:10:18.817 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-10T04:10:18.868 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_4 2024-09-10T04:10:18.914 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-10T04:10:18.914 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-10T04:10:18.914 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 927 Links: 1 2024-09-10T04:10:18.914 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-10T04:10:18.914 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-10 04:06:41.491018500 +0000 2024-09-10T04:10:18.914 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-10 04:06:41.251020643 +0000 2024-09-10T04:10:18.915 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-10 04:06:41.251020643 +0000 2024-09-10T04:10:18.915 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: - 2024-09-10T04:10:18.915 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-10T04:10:18.968 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-10T04:10:18.968 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-10T04:10:18.968 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000394953 s, 1.3 MB/s 2024-09-10T04:10:18.969 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-10T04:10:19.021 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:10:19.151 INFO:teuthology.orchestra.run.smithi151.stdout:loop 2024-09-10T04:10:19.152 INFO:tasks.nvme_loop:Connecting nvme_loop smithi151:/dev/vg_nvme/lv_1... 2024-09-10T04:10:19.152 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:10:19.168 INFO:teuthology.orchestra.run.smithi151.stdout:1 2024-09-10T04:10:19.187 INFO:teuthology.orchestra.run.smithi151.stdout:/dev/vg_nvme/lv_11 2024-09-10T04:10:19.204 INFO:tasks.nvme_loop:Connecting nvme_loop smithi151:/dev/vg_nvme/lv_2... 2024-09-10T04:10:19.204 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:10:19.261 INFO:teuthology.orchestra.run.smithi151.stdout:1 2024-09-10T04:10:19.280 INFO:teuthology.orchestra.run.smithi151.stdout:/dev/vg_nvme/lv_21 2024-09-10T04:10:19.297 INFO:tasks.nvme_loop:Connecting nvme_loop smithi151:/dev/vg_nvme/lv_3... 2024-09-10T04:10:19.297 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:10:19.359 INFO:teuthology.orchestra.run.smithi151.stdout:1 2024-09-10T04:10:19.381 INFO:teuthology.orchestra.run.smithi151.stdout:/dev/vg_nvme/lv_31 2024-09-10T04:10:19.399 INFO:tasks.nvme_loop:Connecting nvme_loop smithi151:/dev/vg_nvme/lv_4... 2024-09-10T04:10:19.399 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:10:19.461 INFO:teuthology.orchestra.run.smithi151.stdout:1 2024-09-10T04:10:19.481 INFO:teuthology.orchestra.run.smithi151.stdout:/dev/vg_nvme/lv_41 2024-09-10T04:10:19.498 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:10:19.498 DEBUG:teuthology.orchestra.run.smithi151:> dd if=/scratch_devs of=/dev/stdout 2024-09-10T04:10:19.547 DEBUG:teuthology.orchestra.run.smithi151:> sudo nvme list -o json 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout:{ 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout: "Devices" : [ 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout: { 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout: "Firmware" : "8DV101H0", 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout: "Index" : 0, 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout: "ModelNumber" : "INTEL SSDPEDMD400G4", 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:19.599 INFO:teuthology.orchestra.run.smithi151.stdout: "SerialNumber" : "CVFT623300JJ400BGN" 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: }, 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: { 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: "Firmware" : "5.15.0-1", 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: "Index" : 1, 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: "ModelNumber" : "Linux", 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: "SerialNumber" : "d878e9a532523eef89e8" 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: }, 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: { 2024-09-10T04:10:19.600 INFO:teuthology.orchestra.run.smithi151.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "Firmware" : "5.15.0-1", 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "Index" : 2, 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "ModelNumber" : "Linux", 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "SerialNumber" : "7ed5e1b21ec5ab56ee88" 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: }, 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: { 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "Firmware" : "5.15.0-1", 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "Index" : 3, 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "ModelNumber" : "Linux", 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:19.601 INFO:teuthology.orchestra.run.smithi151.stdout: "SerialNumber" : "2062593e4d0942f0b17a" 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: }, 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: { 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: "Firmware" : "5.15.0-1", 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: "Index" : 4, 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: "ModelNumber" : "Linux", 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: "ProductName" : "Unknown Device", 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: "SerialNumber" : "ee0a5ab323846e5e4542" 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: } 2024-09-10T04:10:19.602 INFO:teuthology.orchestra.run.smithi151.stdout: ] 2024-09-10T04:10:19.603 INFO:teuthology.orchestra.run.smithi151.stdout:} 2024-09-10T04:10:19.603 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-10T04:10:19.603 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:10:19.603 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/scratch_devs 2024-09-10T04:10:19.657 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-10T04:10:19.753 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': '3a5e3f16720f432aea965c40a8f6eb480095ec6c'} 2024-09-10T04:10:19.754 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c 2024-09-10T04:10:19.754 INFO:tasks.cephadm:Cluster fsid is 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:10:19.754 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-10T04:10:19.754 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-10T04:10:19.754 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi120': '172.21.15.120', 'mon.smithi151': '172.21.15.151'} 2024-09-10T04:10:19.755 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-10T04:10:19.755 DEBUG:teuthology.orchestra.run.smithi120:> sudo hostname $(hostname -s) 2024-09-10T04:10:19.769 DEBUG:teuthology.orchestra.run.smithi151:> sudo hostname $(hostname -s) 2024-09-10T04:10:19.784 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-10T04:10:19.784 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=3a5e3f16720f432aea965c40a8f6eb480095ec6c 2024-09-10T04:10:19.935 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '3a5e3f16720f432aea965c40a8f6eb480095ec6c', '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/82931/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4885-g3a5e3f16', 'node_name': '172.21.5.33+adami03', '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-4885-g3a5e3f16-1jammy'}, 'url': 'https://2.chacra.ceph.com/r/ceph/wip-adk-testing-2024-09-09-1904/3a5e3f16720f432aea965c40a8f6eb480095ec6c/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-10 02:40:38.846024', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-adk-testing-2024-09-09-1904', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/wip-adk-testing-2024-09-09-1904/3a5e3f16720f432aea965c40a8f6eb480095ec6c/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-10T04:10:20.075 INFO:tasks.util.chacra:got chacra host 2.chacra.ceph.com, ref wip-adk-testing-2024-09-09-1904, sha1 3a5e3f16720f432aea965c40a8f6eb480095ec6c from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=3a5e3f16720f432aea965c40a8f6eb480095ec6c 2024-09-10T04:10:20.076 INFO:tasks.cephadm:Discovered cachra url: https://2.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-09-1904/3a5e3f16720f432aea965c40a8f6eb480095ec6c/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-10T04:10:20.076 INFO:tasks.cephadm:Downloading cephadm from url: https://2.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-09-1904/3a5e3f16720f432aea965c40a8f6eb480095ec6c/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-10T04:10:20.076 DEBUG:teuthology.orchestra.run.smithi120:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-09-1904/3a5e3f16720f432aea965c40a8f6eb480095ec6c/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-10T04:10:20.551 INFO:teuthology.orchestra.run.smithi120.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811825 Sep 10 04:10 /home/ubuntu/cephtest/cephadm 2024-09-10T04:10:20.552 DEBUG:teuthology.orchestra.run.smithi151:> curl --silent -L https://2.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-09-1904/3a5e3f16720f432aea965c40a8f6eb480095ec6c/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-10T04:10:21.033 INFO:teuthology.orchestra.run.smithi151.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811825 Sep 10 04:10 /home/ubuntu/cephtest/cephadm 2024-09-10T04:10:21.034 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-10T04:10:21.041 DEBUG:teuthology.orchestra.run.smithi151:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-10T04:10:21.058 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c on all hosts... 2024-09-10T04:10:21.058 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c pull 2024-09-10T04:10:21.090 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c pull 2024-09-10T04:10:21.272 INFO:teuthology.orchestra.run.smithi151.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c... 2024-09-10T04:10:21.273 INFO:teuthology.orchestra.run.smithi120.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c... 2024-09-10T04:11:19.883 INFO:teuthology.orchestra.run.smithi151.stdout:{ 2024-09-10T04:11:19.884 INFO:teuthology.orchestra.run.smithi151.stdout: "ceph_version": "ceph version 19.3.0-4885-g3a5e3f16 (3a5e3f16720f432aea965c40a8f6eb480095ec6c) squid (dev)", 2024-09-10T04:11:19.884 INFO:teuthology.orchestra.run.smithi151.stdout: "image_id": "d6d839bc8a4bdc14017733b053ef2e9b386c4d0f48b6d189c0888843abe03578", 2024-09-10T04:11:19.884 INFO:teuthology.orchestra.run.smithi151.stdout: "repo_digests": [ 2024-09-10T04:11:19.884 INFO:teuthology.orchestra.run.smithi151.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:2db6858ffc169715474ea237dd8b2beae440a5514686b8202506e12cb7dc1fca" 2024-09-10T04:11:19.884 INFO:teuthology.orchestra.run.smithi151.stdout: ] 2024-09-10T04:11:19.885 INFO:teuthology.orchestra.run.smithi151.stdout:} 2024-09-10T04:11:36.923 INFO:teuthology.orchestra.run.smithi120.stdout:{ 2024-09-10T04:11:36.923 INFO:teuthology.orchestra.run.smithi120.stdout: "ceph_version": "ceph version 19.3.0-4885-g3a5e3f16 (3a5e3f16720f432aea965c40a8f6eb480095ec6c) squid (dev)", 2024-09-10T04:11:36.923 INFO:teuthology.orchestra.run.smithi120.stdout: "image_id": "d6d839bc8a4bdc14017733b053ef2e9b386c4d0f48b6d189c0888843abe03578", 2024-09-10T04:11:36.924 INFO:teuthology.orchestra.run.smithi120.stdout: "repo_digests": [ 2024-09-10T04:11:36.924 INFO:teuthology.orchestra.run.smithi120.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:2db6858ffc169715474ea237dd8b2beae440a5514686b8202506e12cb7dc1fca" 2024-09-10T04:11:36.924 INFO:teuthology.orchestra.run.smithi120.stdout: ] 2024-09-10T04:11:36.924 INFO:teuthology.orchestra.run.smithi120.stdout:} 2024-09-10T04:11:36.965 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /etc/ceph 2024-09-10T04:11:36.979 DEBUG:teuthology.orchestra.run.smithi151:> sudo mkdir -p /etc/ceph 2024-09-10T04:11:36.994 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 777 /etc/ceph 2024-09-10T04:11:37.038 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod 777 /etc/ceph 2024-09-10T04:11:37.051 INFO:tasks.cephadm:Writing seed config... 2024-09-10T04:11:37.052 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-10T04:11:37.052 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-10T04:11:37.052 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-10T04:11:37.052 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-10T04:11:37.053 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-10T04:11:37.053 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-10T04:11:37.053 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-10T04:11:37.053 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-10T04:11:37.053 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:11:37.054 DEBUG:teuthology.orchestra.run.smithi120:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-10T04:11:37.083 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 = 97c7e8e6-6f2a-11ef-bcea-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-10T04:11:37.084 DEBUG:teuthology.orchestra.run.smithi120:mon.smithi120> sudo journalctl -f -n 0 -u ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi120.service 2024-09-10T04:11:37.129 INFO:tasks.cephadm:Bootstrapping... 2024-09-10T04:11:37.129 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c -v bootstrap --fsid 97c7e8e6-6f2a-11ef-bcea-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.120 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-10T04:11:37.355 INFO:teuthology.orchestra.run.smithi120.stdout:-------------------------------------------------------------------------------- 2024-09-10T04:11:37.356 INFO:teuthology.orchestra.run.smithi120.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c', '-v', 'bootstrap', '--fsid', '97c7e8e6-6f2a-11ef-bcea-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.120', '--skip-admin-label'] 2024-09-10T04:11:37.356 INFO:teuthology.orchestra.run.smithi120.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-10T04:11:37.357 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying podman|docker is present... 2024-09-10T04:11:37.357 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying lvm2 is present... 2024-09-10T04:11:37.357 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying time synchronization is in place... 2024-09-10T04:11:37.361 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-10T04:11:37.362 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-10T04:11:37.365 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-10T04:11:37.366 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout inactive 2024-09-10T04:11:37.369 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-10T04:11:37.369 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-10T04:11:37.372 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-10T04:11:37.373 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout inactive 2024-09-10T04:11:37.378 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-10T04:11:37.379 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout masked 2024-09-10T04:11:37.382 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-10T04:11:37.382 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout inactive 2024-09-10T04:11:37.386 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-10T04:11:37.386 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-10T04:11:37.390 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-10T04:11:37.390 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout inactive 2024-09-10T04:11:37.394 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout enabled 2024-09-10T04:11:37.398 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout active 2024-09-10T04:11:37.398 INFO:teuthology.orchestra.run.smithi120.stdout:Unit ntp.service is enabled and running 2024-09-10T04:11:37.398 INFO:teuthology.orchestra.run.smithi120.stdout:Repeating the final host check... 2024-09-10T04:11:37.398 INFO:teuthology.orchestra.run.smithi120.stdout:docker (/usr/bin/docker) is present 2024-09-10T04:11:37.398 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl is present 2024-09-10T04:11:37.398 INFO:teuthology.orchestra.run.smithi120.stdout:lvcreate is present 2024-09-10T04:11:37.401 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-10T04:11:37.401 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-10T04:11:37.404 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-10T04:11:37.404 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout inactive 2024-09-10T04:11:37.407 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-10T04:11:37.407 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-10T04:11:37.410 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-10T04:11:37.411 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout inactive 2024-09-10T04:11:37.414 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-10T04:11:37.414 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout masked 2024-09-10T04:11:37.417 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-10T04:11:37.417 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout inactive 2024-09-10T04:11:37.420 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-10T04:11:37.420 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-10T04:11:37.424 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-10T04:11:37.424 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout inactive 2024-09-10T04:11:37.427 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout enabled 2024-09-10T04:11:37.431 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stdout active 2024-09-10T04:11:37.431 INFO:teuthology.orchestra.run.smithi120.stdout:Unit ntp.service is enabled and running 2024-09-10T04:11:37.431 INFO:teuthology.orchestra.run.smithi120.stdout:Host looks OK 2024-09-10T04:11:37.431 INFO:teuthology.orchestra.run.smithi120.stdout:Cluster fsid: 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:37.431 INFO:teuthology.orchestra.run.smithi120.stdout:Acquiring lock 140351172934816 on /run/cephadm/97c7e8e6-6f2a-11ef-bcea-c7b262605968.lock 2024-09-10T04:11:37.432 INFO:teuthology.orchestra.run.smithi120.stdout:Lock 140351172934816 acquired on /run/cephadm/97c7e8e6-6f2a-11ef-bcea-c7b262605968.lock 2024-09-10T04:11:37.432 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying IP 172.21.15.120 port 3300 ... 2024-09-10T04:11:37.432 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying IP 172.21.15.120 port 6789 ... 2024-09-10T04:11:37.432 INFO:teuthology.orchestra.run.smithi120.stdout:Base mon IP(s) is [172.21.15.120:3300, 172.21.15.120:6789], mon addrv is [v2:172.21.15.120:3300,v1:172.21.15.120:6789] 2024-09-10T04:11:37.434 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-09-10T04:11:37.434 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.120 metric 100 2024-09-10T04:11:37.434 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.120 metric 100 2024-09-10T04:11:37.434 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-10T04:11:37.435 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.120 metric 100 2024-09-10T04:11:37.435 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.120 metric 100 2024-09-10T04:11:37.435 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.120 metric 100 2024-09-10T04:11:37.435 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.120 metric 100 2024-09-10T04:11:37.436 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-10T04:11:37.436 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-09-10T04:11:37.436 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1764sec pref medium 2024-09-10T04:11:37.438 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-10T04:11:37.438 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-10T04:11:37.438 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-10T04:11:37.438 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-10T04:11:37.438 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:478f/64 scope link 2024-09-10T04:11:37.438 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Mon IP `172.21.15.120` is in CIDR network `172.21.0.0/20` 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Mon IP `172.21.15.120` is in CIDR network `172.21.0.0/20` 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Mon IP `172.21.15.120` is in CIDR network `172.21.0.1/32` 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Mon IP `172.21.15.120` is in CIDR network `172.21.0.1/32` 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Mon IP `172.21.15.120` is in CIDR network `172.21.0.2/32` 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Mon IP `172.21.15.120` is in CIDR network `172.21.0.2/32` 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Mon IP `172.21.15.120` is in CIDR network `172.21.15.254/32` 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Mon IP `172.21.15.120` is in CIDR network `172.21.15.254/32` 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.0.1/32', '172.21.0.1/32', '172.21.0.2/32', '172.21.0.2/32', '172.21.15.254/32', '172.21.15.254/32'] 2024-09-10T04:11:37.440 INFO:teuthology.orchestra.run.smithi120.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-10T04:11:37.441 INFO:teuthology.orchestra.run.smithi120.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c... 2024-09-10T04:11:37.659 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/docker: stdout 3a5e3f16720f432aea965c40a8f6eb480095ec6c: Pulling from ceph-ci/ceph 2024-09-10T04:11:37.659 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/docker: stdout Digest: sha256:2db6858ffc169715474ea237dd8b2beae440a5514686b8202506e12cb7dc1fca 2024-09-10T04:11:37.659 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c 2024-09-10T04:11:37.659 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c 2024-09-10T04:11:39.229 INFO:teuthology.orchestra.run.smithi120.stdout:ceph: stdout ceph version 19.3.0-4885-g3a5e3f16 (3a5e3f16720f432aea965c40a8f6eb480095ec6c) squid (dev) 2024-09-10T04:11:39.229 INFO:teuthology.orchestra.run.smithi120.stdout:Ceph version: ceph version 19.3.0-4885-g3a5e3f16 (3a5e3f16720f432aea965c40a8f6eb480095ec6c) squid (dev) 2024-09-10T04:11:39.229 INFO:teuthology.orchestra.run.smithi120.stdout:Extracting ceph user uid/gid from container image... 2024-09-10T04:11:40.669 INFO:teuthology.orchestra.run.smithi120.stdout:stat: stdout 167 167 2024-09-10T04:11:40.669 INFO:teuthology.orchestra.run.smithi120.stdout:Creating initial keys... 2024-09-10T04:11:42.075 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-authtool: stdout AQD9xt9m/0tOHRAAwkEFf866XCaMISgUQ8GOdg== 2024-09-10T04:11:43.598 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-authtool: stdout AQD/xt9mmml9ABAAy51CFa5Fw+MWRjWjguQycQ== 2024-09-10T04:11:44.997 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-authtool: stdout AQAAx99mvGdxHBAA0e0WDI3IOveI+rmb5GTDpw== 2024-09-10T04:11:44.998 INFO:teuthology.orchestra.run.smithi120.stdout:Creating initial monmap... 2024-09-10T04:11:46.529 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout:monmaptool for smithi120 [v2:172.21.15.120:3300,v1:172.21.15.120:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout:setting min_mon_release = quincy 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/monmaptool: set fsid to 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:11:46.530 INFO:teuthology.orchestra.run.smithi120.stdout:Creating mon... 2024-09-10T04:11:47.987 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.468+0000 7f2d7ba61c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-10T04:11:47.987 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.468+0000 7f2d7ba61c80 1 imported monmap: 2024-09-10T04:11:47.987 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-10T04:11:47.987 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:47.988 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:47.988 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:47.988 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-10T04:11:47.988 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-10T04:11:47.988 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:11:47.989 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:47.989 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.468+0000 7f2d7ba61c80 0 /usr/bin/ceph-mon: set fsid to 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:47.989 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-10T04:11:47.989 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:47.989 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Git sha 0 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Compile date 2024-09-10 00:49:01 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: DB SUMMARY 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: DB Session ID: 2MGHKDMB1CXALBJR1YG3 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi120/store.db dir, Total Num: 0, files: 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi120/store.db: 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.error_if_exists: 0 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.create_if_missing: 1 2024-09-10T04:11:47.991 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-10T04:11:47.992 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-10T04:11:47.992 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-10T04:11:47.992 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-10T04:11:47.992 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.env: 0x55df52c24120 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.info_log: 0x55df535b8d80 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.statistics: (nil) 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.use_fsync: 0 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-10T04:11:47.995 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.db_log_dir: 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.wal_dir: 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-10T04:11:47.996 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-10T04:11:47.997 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-10T04:11:47.997 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.write_buffer_manager: 0x55df535b1cc0 2024-09-10T04:11:48.000 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-10T04:11:48.000 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-10T04:11:48.000 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.unordered_write: 0 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.row_cache: None 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.wal_filter: None 2024-09-10T04:11:48.001 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.two_write_queues: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.wal_compression: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.atomic_flush: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-10T04:11:48.002 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-10T04:11:48.003 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-10T04:11:48.007 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_open_files: -1 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Compression algorithms supported: 2024-09-10T04:11:48.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: kZSTD supported: 0 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: kXpressCompression supported: 0 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: kZlibCompression supported: 1 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.472+0000 7f2d7ba61c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi120/store.db/MANIFEST-000001 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.merge_operator: 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_filter: None 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55df535b89a0) 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-10T04:11:48.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55df535a1610 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-10T04:11:48.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-10T04:11:48.018 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-10T04:11:48.018 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-10T04:11:48.018 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-10T04:11:48.018 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-10T04:11:48.018 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-10T04:11:48.018 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-10T04:11:48.018 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-10T04:11:48.019 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression: NoCompression 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.num_levels: 7 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-10T04:11:48.020 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-10T04:11:48.021 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-10T04:11:48.022 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-10T04:11:48.023 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-10T04:11:48.031 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-10T04:11:48.031 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-10T04:11:48.032 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.bloom_locality: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.ttl: 2592000 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-10T04:11:48.033 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.enable_blob_files: false 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.min_blob_size: 0 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi120/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-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.034 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: a94762f5-8dce-42df-a843-ceb70584b858 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.476+0000 7f2d7ba61c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.480+0000 7f2d7ba61c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55df535d0e00 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.480+0000 7f2d7ba61c80 4 rocksdb: DB pointer 0x55df536b2000 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.480+0000 7f2d731ec640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.480+0000 7f2d731ec640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.035 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.036 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.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-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55df535a1610#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-09-10T04:11:48.037 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-10T04:11:48.038 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.038 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-10T04:11:48.038 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr 2024-09-10T04:11:48.038 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.480+0000 7f2d7ba61c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-10T04:11:48.038 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.480+0000 7f2d7ba61c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-10T04:11:48.038 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-10T04:11:47.480+0000 7f2d7ba61c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi120 for mon.smithi120 2024-09-10T04:11:48.038 INFO:teuthology.orchestra.run.smithi120.stdout:create mon.smithi120 on 2024-09-10T04:11:48.522 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-10T04:11:48.749 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968.target -> /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968.target. 2024-09-10T04:11:48.749 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968.target -> /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968.target. 2024-09-10T04:11:49.069 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi120 2024-09-10T04:11:49.069 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Failed to reset failed state of unit ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi120.service: Unit ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi120.service not loaded. 2024-09-10T04:11:49.266 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968.target.wants/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi120.service -> /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@.service. 2024-09-10T04:11:49.276 INFO:teuthology.orchestra.run.smithi120.stdout:firewalld does not appear to be present 2024-09-10T04:11:49.277 INFO:teuthology.orchestra.run.smithi120.stdout:Not possible to enable service . firewalld.service is not available 2024-09-10T04:11:49.277 INFO:teuthology.orchestra.run.smithi120.stdout:Waiting for mon to start... 2024-09-10T04:11:49.277 INFO:teuthology.orchestra.run.smithi120.stdout:Waiting for mon... 2024-09-10T04:11:49.449 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:49 smithi120 systemd[1]: Started Ceph mon.smithi120 for 97c7e8e6-6f2a-11ef-bcea-c7b262605968. 2024-09-10T04:11:51.450 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:51 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.218838+0000 mon.smithi120 (mon.0) 0 : cluster [INF] mkfs 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:51.450 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:51 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.218838+0000 mon.smithi120 (mon.0) 0 : cluster [INF] mkfs 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:51.450 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:51 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.213714+0000 mon.smithi120 (mon.0) 1 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-09-10T04:11:51.450 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:51 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.213714+0000 mon.smithi120 (mon.0) 1 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-09-10T04:11:52.064 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout cluster: 2024-09-10T04:11:52.300 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout id: 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout services: 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi120 (age 0.220463s) 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout data: 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-10T04:11:52.301 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout pgs: 2024-09-10T04:11:52.302 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:11:52.302 INFO:teuthology.orchestra.run.smithi120.stdout:mon is available 2024-09-10T04:11:52.302 INFO:teuthology.orchestra.run.smithi120.stdout:Assimilating anything we can from ceph.conf... 2024-09-10T04:11:52.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217780+0000 mon.smithi120 (mon.0) 2 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-09-10T04:11:52.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217780+0000 mon.smithi120 (mon.0) 2 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-09-10T04:11:52.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217966+0000 mon.smithi120 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-10T04:11:52.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217966+0000 mon.smithi120 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-10T04:11:52.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217976+0000 mon.smithi120 (mon.0) 4 : cluster [DBG] fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:52.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217976+0000 mon.smithi120 (mon.0) 4 : cluster [DBG] fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217983+0000 mon.smithi120 (mon.0) 5 : cluster [DBG] last_changed 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217983+0000 mon.smithi120 (mon.0) 5 : cluster [DBG] last_changed 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217991+0000 mon.smithi120 (mon.0) 6 : cluster [DBG] created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.217991+0000 mon.smithi120 (mon.0) 6 : cluster [DBG] created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.218000+0000 mon.smithi120 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.218000+0000 mon.smithi120 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.218007+0000 mon.smithi120 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.218007+0000 mon.smithi120 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.218015+0000 mon.smithi120 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.218015+0000 mon.smithi120 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:11:52.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.220542+0000 mon.smithi120 (mon.0) 10 : cluster [DBG] fsmap 2024-09-10T04:11:52.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.220542+0000 mon.smithi120 (mon.0) 10 : cluster [DBG] fsmap 2024-09-10T04:11:52.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.222917+0000 mon.smithi120 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-10T04:11:52.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.222917+0000 mon.smithi120 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-10T04:11:52.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.223406+0000 mon.smithi120 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-10T04:11:52.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: cluster 2024-09-10T04:11:51.223406+0000 mon.smithi120 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-10T04:11:52.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: audit 2024-09-10T04:11:51.438189+0000 mon.smithi120 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.120:0/486537369' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-10T04:11:52.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:52 smithi120 bash[19464]: audit 2024-09-10T04:11:51.438189+0000 mon.smithi120 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.120:0/486537369' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-10T04:11:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:53 smithi120 bash[19464]: audit 2024-09-10T04:11:53.293076+0000 mon.smithi120 (mon.0) 14 : audit [INF] from='client.? 172.21.15.120:0/3162649388' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-10T04:11:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:53 smithi120 bash[19464]: audit 2024-09-10T04:11:53.293076+0000 mon.smithi120 (mon.0) 14 : audit [INF] from='client.? 172.21.15.120:0/3162649388' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-10T04:11:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:53 smithi120 bash[19464]: audit 2024-09-10T04:11:53.296749+0000 mon.smithi120 (mon.0) 15 : audit [INF] from='client.? 172.21.15.120:0/3162649388' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-10T04:11:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:53 smithi120 bash[19464]: audit 2024-09-10T04:11:53.296749+0000 mon.smithi120 (mon.0) 15 : audit [INF] from='client.? 172.21.15.120:0/3162649388' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-10T04:11:53.838 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:11:53.840 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout [global] 2024-09-10T04:11:53.840 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout fsid = 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:53.840 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-10T04:11:53.840 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.120:3300,v1:172.21.15.120:6789] 2024-09-10T04:11:53.840 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-10T04:11:53.841 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-10T04:11:53.841 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-10T04:11:53.841 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-10T04:11:53.841 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:11:53.842 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-10T04:11:53.842 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-10T04:11:53.842 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:11:53.842 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout [osd] 2024-09-10T04:11:53.842 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-10T04:11:53.842 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-10T04:11:53.842 INFO:teuthology.orchestra.run.smithi120.stdout:Generating new minimal ceph.conf... 2024-09-10T04:11:55.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:55 smithi120 bash[19464]: audit 2024-09-10T04:11:54.982030+0000 mon.smithi120 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.120:0/3019469095' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:11:55.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:55 smithi120 bash[19464]: audit 2024-09-10T04:11:54.982030+0000 mon.smithi120 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.120:0/3019469095' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:11:55.502 INFO:teuthology.orchestra.run.smithi120.stdout:Restarting the monitor... 2024-09-10T04:11:55.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:55 smithi120 systemd[1]: Stopping Ceph mon.smithi120 for 97c7e8e6-6f2a-11ef-bcea-c7b262605968... 2024-09-10T04:11:55.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:55 smithi120 bash[19464]: debug 2024-09-10T04:11:55.632+0000 7f7543a5a640 -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-10T04:11:55.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:55 smithi120 bash[19464]: debug 2024-09-10T04:11:55.632+0000 7f7543a5a640 -1 mon.smithi120@0(leader) e1 *** Got Signal Terminated *** 2024-09-10T04:11:56.220 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:56 smithi120 bash[19846]: ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968-mon-smithi120 2024-09-10T04:11:56.235 INFO:teuthology.orchestra.run.smithi120.stdout:Setting public_network to 172.21.0.0/20,172.21.0.2/32,172.21.0.1/32,172.21.15.254/32 in mon config section 2024-09-10T04:11:56.520 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:56 smithi120 bash[19907]: Error response from daemon: No such container: ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968-mon-smithi120 2024-09-10T04:11:56.520 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:56 smithi120 systemd[1]: ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi120.service: Deactivated successfully. 2024-09-10T04:11:56.520 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:56 smithi120 systemd[1]: Stopped Ceph mon.smithi120 for 97c7e8e6-6f2a-11ef-bcea-c7b262605968. 2024-09-10T04:11:56.520 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:56 smithi120 systemd[1]: Started Ceph mon.smithi120 for 97c7e8e6-6f2a-11ef-bcea-c7b262605968. 2024-09-10T04:11:57.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.668+0000 7fafaceaec80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-10T04:11:57.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.668+0000 7fafaceaec80 0 ceph version 19.3.0-4885-g3a5e3f16 (3a5e3f16720f432aea965c40a8f6eb480095ec6c) squid (dev), process ceph-mon, pid 7 2024-09-10T04:11:57.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.668+0000 7fafaceaec80 0 pidfile_write: ignore empty --pid-file 2024-09-10T04:11:57.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.672+0000 7fafaceaec80 0 load: jerasure load: lrc 2024-09-10T04:11:57.866 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: RocksDB version: 7.9.2 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Git sha 0 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Compile date 2024-09-10 00:49:01 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: DB SUMMARY 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: DB Session ID: AG1JW43ARJ9JS2AKHEJY 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: CURRENT file: CURRENT 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi120/store.db dir, Total Num: 1, files: 000008.sst 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi120/store.db: 000009.log size: 89102 ; 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.error_if_exists: 0 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.create_if_missing: 0 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.paranoid_checks: 1 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-10T04:11:57.867 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-10T04:11:57.868 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-10T04:11:57.868 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.env: 0x55d9ea8cd120 2024-09-10T04:11:57.868 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-10T04:11:57.868 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.info_log: 0x55d9ec3bd8e0 2024-09-10T04:11:57.868 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-10T04:11:57.868 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.statistics: (nil) 2024-09-10T04:11:57.868 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.use_fsync: 0 2024-09-10T04:11:57.868 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_log_file_size: 0 2024-09-10T04:11:57.869 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-10T04:11:57.869 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-10T04:11:57.869 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.allow_fallocate: 1 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.use_direct_reads: 0 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.db_log_dir: 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.wal_dir: 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-10T04:11:57.870 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.write_buffer_manager: 0x55d9ec3c1b80 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-10T04:11:57.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.unordered_write: 0 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.row_cache: None 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.wal_filter: None 2024-09-10T04:11:57.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-10T04:11:57.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-10T04:11:57.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.two_write_queues: 0 2024-09-10T04:11:57.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-10T04:11:57.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.wal_compression: 0 2024-09-10T04:11:57.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.atomic_flush: 0 2024-09-10T04:11:57.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-10T04:11:57.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-10T04:11:57.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-10T04:11:57.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.log_readahead_size: 0 2024-09-10T04:11:57.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-10T04:11:57.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-10T04:11:57.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_background_jobs: 2 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_background_compactions: -1 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_subcompactions: 1 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-10T04:11:57.875 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_open_files: -1 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_background_flushes: -1 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Compression algorithms supported: 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: kZSTD supported: 0 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: kXpressCompression supported: 0 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: kBZip2Compression supported: 0 2024-09-10T04:11:57.876 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: kLZ4Compression supported: 1 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: kZlibCompression supported: 1 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: kSnappyCompression supported: 1 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi120/store.db/MANIFEST-000010 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.merge_operator: 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_filter: None 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-10T04:11:57.877 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55d9ec3bd540) 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cache_index_and_filter_blocks: 1 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: pin_top_level_index_and_filter: 1 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: index_type: 0 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: data_block_index_type: 0 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: index_shortening: 1 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: data_block_hash_table_util_ratio: 0.750000 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: checksum: 4 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: no_block_cache: 0 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: block_cache: 0x55d9ec3b3610 2024-09-10T04:11:57.878 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: block_cache_name: BinnedLRUCache 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: block_cache_options: 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: capacity : 536870912 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: num_shard_bits : 4 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: strict_capacity_limit : 0 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: high_pri_pool_ratio: 0.000 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: block_cache_compressed: (nil) 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: persistent_cache: (nil) 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: block_size: 4096 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: block_size_deviation: 10 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: block_restart_interval: 16 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: index_block_restart_interval: 1 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: metadata_block_size: 4096 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: partition_filters: 0 2024-09-10T04:11:57.879 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: use_delta_encoding: 1 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: filter_policy: bloomfilter 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: whole_key_filtering: 1 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: verify_compression: 0 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: read_amp_bytes_per_bit: 0 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: format_version: 5 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: enable_index_compression: 1 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: block_align: 0 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: max_auto_readahead_size: 262144 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: prepopulate_block_cache: 0 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: initial_auto_readahead_size: 8192 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: num_file_reads_for_auto_readahead: 2 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-10T04:11:57.880 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression: NoCompression 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.num_levels: 7 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-10T04:11:57.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-10T04:11:57.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-10T04:11:57.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-10T04:11:57.884 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.inplace_update_support: 0 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.bloom_locality: 0 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.max_successive_merges: 0 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-10T04:11:57.885 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.ttl: 2592000 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.enable_blob_files: false 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.min_blob_size: 0 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-10T04:11:57.886 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi120/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-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: a94762f5-8dce-42df-a843-ceb70584b858 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725941517681936, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725941517683213, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85878, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 257, "table_properties": {"data_size": 84018, "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": 78267, "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": 1725941517, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "a94762f5-8dce-42df-a843-ceb70584b858", "db_session_id": "AG1JW43ARJ9JS2AKHEJY", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725941517683350, "job": 1, "event": "recovery_finished"} 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.676+0000 7fafaceaec80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-10T04:11:57.887 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi120/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-10T04:11:57.888 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55d9ec3e0e00 2024-09-10T04:11:57.888 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 4 rocksdb: DB pointer 0x55d9ec4e4000 2024-09-10T04:11:57.888 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafa2c76640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-10T04:11:57.888 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafa2c76640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-10T04:11:57.888 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: ** DB Stats ** 2024-09-10T04:11:57.888 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: 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-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: 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-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: ** Compaction Stats [default] ** 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: 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-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: L0 2/0 85.76 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 105.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Sum 2/0 85.76 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 105.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 105.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: ** Compaction Stats [default] ** 2024-09-10T04:11:57.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: 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-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 105.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: AddFile(Total Files): cumulative 0, interval 0 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: AddFile(Keys): cumulative 0, interval 0 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Cumulative compaction: 0.00 GB write, 18.06 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Interval compaction: 0.00 GB write, 18.06 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: 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-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: Block cache BinnedLRUCache@0x55d9ec3b3610#7 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.5e-05 secs_since: 0 2024-09-10T04:11:57.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: 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-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: ** File Read Latency Histogram By Level [default] ** 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 0 starting mon.smithi120 rank 0 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 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 1 mon.smithi120@-1(???) e1 preinit fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 0 mon.smithi120@-1(???).mds e1 new map 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 0 mon.smithi120@-1(???).mds e1 print_map 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: e1 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: btime 2024-09-10T04:11:51:218440+0000 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: 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-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: legacy client fscid: -1 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: No filesystems configured 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 0 mon.smithi120@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-10T04:11:57.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 0 mon.smithi120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 0 mon.smithi120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 0 mon.smithi120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: debug 2024-09-10T04:11:57.680+0000 7fafaceaec80 1 mon.smithi120@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691665+0000 mon.smithi120 (mon.0) 1 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691665+0000 mon.smithi120 (mon.0) 1 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691736+0000 mon.smithi120 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691736+0000 mon.smithi120 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691745+0000 mon.smithi120 (mon.0) 3 : cluster [DBG] fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691745+0000 mon.smithi120 (mon.0) 3 : cluster [DBG] fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691756+0000 mon.smithi120 (mon.0) 4 : cluster [DBG] last_changed 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691756+0000 mon.smithi120 (mon.0) 4 : cluster [DBG] last_changed 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691766+0000 mon.smithi120 (mon.0) 5 : cluster [DBG] created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:57.892 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691766+0000 mon.smithi120 (mon.0) 5 : cluster [DBG] created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691778+0000 mon.smithi120 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691778+0000 mon.smithi120 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691788+0000 mon.smithi120 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691788+0000 mon.smithi120 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691799+0000 mon.smithi120 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.691799+0000 mon.smithi120 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.708628+0000 mon.smithi120 (mon.0) 9 : cluster [DBG] fsmap 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.708628+0000 mon.smithi120 (mon.0) 9 : cluster [DBG] fsmap 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.708663+0000 mon.smithi120 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.708663+0000 mon.smithi120 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.709053+0000 mon.smithi120 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-10T04:11:57.893 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:57 smithi120 bash[19947]: cluster 2024-09-10T04:11:57.709053+0000 mon.smithi120 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-10T04:11:58.408 INFO:teuthology.orchestra.run.smithi120.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-10T04:11:58.434 INFO:teuthology.orchestra.run.smithi120.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-10T04:11:58.435 INFO:teuthology.orchestra.run.smithi120.stdout:Creating mgr... 2024-09-10T04:11:58.435 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-10T04:11:58.435 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-10T04:11:58.436 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-10T04:11:58.737 INFO:teuthology.orchestra.run.smithi120.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mgr.smithi120.xfjtcc 2024-09-10T04:11:58.737 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Failed to reset failed state of unit ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mgr.smithi120.xfjtcc.service: Unit ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mgr.smithi120.xfjtcc.service not loaded. 2024-09-10T04:11:58.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:58 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:11:58.933 INFO:teuthology.orchestra.run.smithi120.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968.target.wants/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mgr.smithi120.xfjtcc.service -> /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@.service. 2024-09-10T04:11:58.939 INFO:teuthology.orchestra.run.smithi120.stdout:firewalld does not appear to be present 2024-09-10T04:11:58.940 INFO:teuthology.orchestra.run.smithi120.stdout:Not possible to enable service . firewalld.service is not available 2024-09-10T04:11:58.940 INFO:teuthology.orchestra.run.smithi120.stdout:firewalld does not appear to be present 2024-09-10T04:11:58.940 INFO:teuthology.orchestra.run.smithi120.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-10T04:11:58.940 INFO:teuthology.orchestra.run.smithi120.stdout:Waiting for mgr to start... 2024-09-10T04:11:58.940 INFO:teuthology.orchestra.run.smithi120.stdout:Waiting for mgr... 2024-09-10T04:11:59.207 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:58 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:11:59.207 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:58 smithi120 bash[19947]: audit 2024-09-10T04:11:57.855686+0000 mon.smithi120 (mon.0) 12 : audit [INF] from='client.? 172.21.15.120:0/2483807371' entity='client.admin' 2024-09-10T04:11:59.207 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:11:58 smithi120 bash[19947]: audit 2024-09-10T04:11:57.855686+0000 mon.smithi120 (mon.0) 12 : audit [INF] from='client.? 172.21.15.120:0/2483807371' entity='client.admin' 2024-09-10T04:12:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:00 smithi120 bash[19947]: audit 2024-09-10T04:12:00.773519+0000 mon.smithi120 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.120:0/3373588850' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-10T04:12:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:00 smithi120 bash[19947]: audit 2024-09-10T04:12:00.773519+0000 mon.smithi120 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.120:0/3373588850' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-10T04:12:01.332 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout { 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "fsid": "97c7e8e6-6f2a-11ef-bcea-c7b262605968", 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "health": { 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-10T04:12:01.333 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 0 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "smithi120" 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-10T04:12:01.334 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:01.335 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-10T04:12:01.335 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:01.335 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-10T04:12:01.335 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-10T04:12:01.335 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-10T04:12:01.335 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-10T04:12:01.335 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-10T04:12:01.335 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-10T04:12:01.339 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "btime": "2024-09-10T04:11:51:218440+0000", 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-10T04:12:01.340 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "restful" 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "modified": "2024-09-10T04:11:51.219324+0000", 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:01.341 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-10T04:12:01.342 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout } 2024-09-10T04:12:01.342 INFO:teuthology.orchestra.run.smithi120.stdout:mgr not available, waiting (1/15)... 2024-09-10T04:12:04.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:04 smithi120 bash[19947]: audit 2024-09-10T04:12:04.461634+0000 mon.smithi120 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.120:0/3483195699' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-10T04:12:04.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:04 smithi120 bash[19947]: audit 2024-09-10T04:12:04.461634+0000 mon.smithi120 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.120:0/3483195699' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-10T04:12:05.007 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:12:05.007 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout { 2024-09-10T04:12:05.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "fsid": "97c7e8e6-6f2a-11ef-bcea-c7b262605968", 2024-09-10T04:12:05.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "health": { 2024-09-10T04:12:05.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-10T04:12:05.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-10T04:12:05.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-10T04:12:05.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:05.008 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 0 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "smithi120" 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-10T04:12:05.009 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:05.010 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-10T04:12:05.011 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "btime": "2024-09-10T04:11:51:218440+0000", 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "restful" 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:05.012 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "modified": "2024-09-10T04:11:51.219324+0000", 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout } 2024-09-10T04:12:05.013 INFO:teuthology.orchestra.run.smithi120.stdout:mgr not available, waiting (2/15)... 2024-09-10T04:12:07.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: cluster 2024-09-10T04:12:06.571221+0000 mon.smithi120 (mon.0) 15 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:12:07.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: cluster 2024-09-10T04:12:06.571221+0000 mon.smithi120 (mon.0) 15 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: cluster 2024-09-10T04:12:06.579218+0000 mon.smithi120 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi120.xfjtcc(active, starting, since 0.00834986s) 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: cluster 2024-09-10T04:12:06.579218+0000 mon.smithi120 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi120.xfjtcc(active, starting, since 0.00834986s) 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.580079+0000 mon.smithi120 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.580079+0000 mon.smithi120 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.580220+0000 mon.smithi120 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.580220+0000 mon.smithi120 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.580315+0000 mon.smithi120 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.580315+0000 mon.smithi120 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.580418+0000 mon.smithi120 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:12:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.580418+0000 mon.smithi120 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.581699+0000 mon.smithi120 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.581699+0000 mon.smithi120 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: cluster 2024-09-10T04:12:06.607668+0000 mon.smithi120 (mon.0) 22 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: cluster 2024-09-10T04:12:06.607668+0000 mon.smithi120 (mon.0) 22 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.617765+0000 mon.smithi120 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.617765+0000 mon.smithi120 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.620221+0000 mon.smithi120 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.620221+0000 mon.smithi120 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.621841+0000 mon.smithi120 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:06 smithi120 bash[19947]: audit 2024-09-10T04:12:06.621841+0000 mon.smithi120 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:07.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:07 smithi120 bash[19947]: audit 2024-09-10T04:12:06.627078+0000 mon.smithi120 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:07.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:07 smithi120 bash[19947]: audit 2024-09-10T04:12:06.627078+0000 mon.smithi120 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:07.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:07 smithi120 bash[19947]: audit 2024-09-10T04:12:06.638213+0000 mon.smithi120 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:07.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:07 smithi120 bash[19947]: audit 2024-09-10T04:12:06.638213+0000 mon.smithi120 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.120:0/3816671937' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:07.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:07 smithi120 bash[19947]: cluster 2024-09-10T04:12:07.587437+0000 mon.smithi120 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi120.xfjtcc(active, since 1.01656s) 2024-09-10T04:12:07.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:07 smithi120 bash[19947]: cluster 2024-09-10T04:12:07.587437+0000 mon.smithi120 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi120.xfjtcc(active, since 1.01656s) 2024-09-10T04:12:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:08 smithi120 bash[19947]: audit 2024-09-10T04:12:08.626185+0000 mon.smithi120 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.120:0/3467923022' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-10T04:12:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:08 smithi120 bash[19947]: audit 2024-09-10T04:12:08.626185+0000 mon.smithi120 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.120:0/3467923022' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-10T04:12:09.172 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:12:09.172 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout { 2024-09-10T04:12:09.172 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "fsid": "97c7e8e6-6f2a-11ef-bcea-c7b262605968", 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "health": { 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 0 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "smithi120" 2024-09-10T04:12:09.173 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-10T04:12:09.174 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-10T04:12:09.178 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "btime": "2024-09-10T04:11:51:218440+0000", 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-10T04:12:09.179 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "restful" 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ], 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "modified": "2024-09-10T04:11:51.219324+0000", 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout }, 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-10T04:12:09.180 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout } 2024-09-10T04:12:09.181 INFO:teuthology.orchestra.run.smithi120.stdout:mgr is available 2024-09-10T04:12:09.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:09 smithi120 bash[19947]: cluster 2024-09-10T04:12:08.638678+0000 mon.smithi120 (mon.0) 30 : cluster [DBG] mgrmap e4: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:12:09.976 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:09 smithi120 bash[19947]: cluster 2024-09-10T04:12:08.638678+0000 mon.smithi120 (mon.0) 30 : cluster [DBG] mgrmap e4: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:12:10.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:10 smithi120 bash[19947]: audit 2024-09-10T04:12:10.509923+0000 mon.smithi120 (mon.0) 31 : audit [INF] from='client.? 172.21.15.120:0/211132430' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-10T04:12:10.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:10 smithi120 bash[19947]: audit 2024-09-10T04:12:10.509923+0000 mon.smithi120 (mon.0) 31 : audit [INF] from='client.? 172.21.15.120:0/211132430' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout [global] 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout fsid = 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.120:3300,v1:172.21.15.120:6789] 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-10T04:12:11.096 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:12:11.097 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-10T04:12:11.097 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-10T04:12:11.097 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 2024-09-10T04:12:11.097 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout [osd] 2024-09-10T04:12:11.097 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-10T04:12:11.097 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-10T04:12:11.097 INFO:teuthology.orchestra.run.smithi120.stdout:Enabling cephadm module... 2024-09-10T04:12:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:12 smithi120 bash[19947]: audit 2024-09-10T04:12:12.533975+0000 mon.smithi120 (mon.0) 32 : audit [INF] from='client.? 172.21.15.120:0/4163958004' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-10T04:12:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:12 smithi120 bash[19947]: audit 2024-09-10T04:12:12.533975+0000 mon.smithi120 (mon.0) 32 : audit [INF] from='client.? 172.21.15.120:0/4163958004' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-10T04:12:14.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:13 smithi120 bash[19947]: audit 2024-09-10T04:12:12.585551+0000 mon.smithi120 (mon.0) 33 : audit [INF] from='client.? 172.21.15.120:0/4163958004' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-10T04:12:14.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:13 smithi120 bash[19947]: audit 2024-09-10T04:12:12.585551+0000 mon.smithi120 (mon.0) 33 : audit [INF] from='client.? 172.21.15.120:0/4163958004' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-10T04:12:14.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:13 smithi120 bash[19947]: cluster 2024-09-10T04:12:12.592252+0000 mon.smithi120 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi120.xfjtcc(active, since 6s) 2024-09-10T04:12:14.025 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:13 smithi120 bash[19947]: cluster 2024-09-10T04:12:12.592252+0000 mon.smithi120 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi120.xfjtcc(active, since 6s) 2024-09-10T04:12:15.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:14 smithi120 bash[19947]: audit 2024-09-10T04:12:14.631721+0000 mon.smithi120 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.120:0/1008504747' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-10T04:12:15.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:14 smithi120 bash[19947]: audit 2024-09-10T04:12:14.631721+0000 mon.smithi120 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.120:0/1008504747' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-10T04:12:15.168 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout { 2024-09-10T04:12:15.168 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-10T04:12:15.168 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-10T04:12:15.169 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "active_name": "smithi120.xfjtcc", 2024-09-10T04:12:15.169 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-10T04:12:15.169 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout } 2024-09-10T04:12:15.169 INFO:teuthology.orchestra.run.smithi120.stdout:Waiting for the mgr to restart... 2024-09-10T04:12:15.169 INFO:teuthology.orchestra.run.smithi120.stdout:Waiting for mgr epoch 5... 2024-09-10T04:12:19.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.586957+0000 mon.smithi120 (mon.0) 36 : cluster [INF] Active manager daemon smithi120.xfjtcc restarted 2024-09-10T04:12:19.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.586957+0000 mon.smithi120 (mon.0) 36 : cluster [INF] Active manager daemon smithi120.xfjtcc restarted 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.587414+0000 mon.smithi120 (mon.0) 37 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.587414+0000 mon.smithi120 (mon.0) 37 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.592909+0000 mon.smithi120 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.592909+0000 mon.smithi120 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.593056+0000 mon.smithi120 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi120.xfjtcc(active, starting, since 0.00583815s) 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.593056+0000 mon.smithi120 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi120.xfjtcc(active, starting, since 0.00583815s) 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.594894+0000 mon.smithi120 (mon.0) 40 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.594894+0000 mon.smithi120 (mon.0) 40 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.596472+0000 mon.smithi120 (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.596472+0000 mon.smithi120 (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.597998+0000 mon.smithi120 (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.597998+0000 mon.smithi120 (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:12:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.598346+0000 mon.smithi120 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:12:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.598346+0000 mon.smithi120 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:12:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.598474+0000 mon.smithi120 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:12:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: audit 2024-09-10T04:12:18.598474+0000 mon.smithi120 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:12:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.622473+0000 mon.smithi120 (mon.0) 45 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:12:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:18 smithi120 bash[19947]: cluster 2024-09-10T04:12:18.622473+0000 mon.smithi120 (mon.0) 45 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:12:20.158 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout { 2024-09-10T04:12:20.158 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-10T04:12:20.158 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-10T04:12:20.158 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout } 2024-09-10T04:12:20.158 INFO:teuthology.orchestra.run.smithi120.stdout:mgr epoch 5 is available 2024-09-10T04:12:20.158 INFO:teuthology.orchestra.run.smithi120.stdout:Verifying orchestrator module is enabled... 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.319772+0000 mon.smithi120 (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.319772+0000 mon.smithi120 (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.325274+0000 mon.smithi120 (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.325274+0000 mon.smithi120 (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: cephadm 2024-09-10T04:12:19.326043+0000 mgr.smithi120.xfjtcc (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: cephadm 2024-09-10T04:12:19.326043+0000 mgr.smithi120.xfjtcc (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.329757+0000 mon.smithi120 (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.329757+0000 mon.smithi120 (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.335632+0000 mon.smithi120 (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.335632+0000 mon.smithi120 (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.339214+0000 mon.smithi120 (mon.0) 50 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.339214+0000 mon.smithi120 (mon.0) 50 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.342287+0000 mon.smithi120 (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.342287+0000 mon.smithi120 (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.352946+0000 mon.smithi120 (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.352946+0000 mon.smithi120 (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.354640+0000 mon.smithi120 (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.354640+0000 mon.smithi120 (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.598592+0000 mgr.smithi120.xfjtcc (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.598592+0000 mgr.smithi120.xfjtcc (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: cluster 2024-09-10T04:12:19.601267+0000 mon.smithi120 (mon.0) 54 : cluster [DBG] mgrmap e7: smithi120.xfjtcc(active, since 1.01404s) 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: cluster 2024-09-10T04:12:19.601267+0000 mon.smithi120 (mon.0) 54 : cluster [DBG] mgrmap e7: smithi120.xfjtcc(active, since 1.01404s) 2024-09-10T04:12:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.613477+0000 mgr.smithi120.xfjtcc (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-10T04:12:20.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:20 smithi120 bash[19947]: audit 2024-09-10T04:12:19.613477+0000 mgr.smithi120.xfjtcc (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.322148+0000 mgr.smithi120.xfjtcc (mgr.14118) 4 : cephadm [INF] [10/Sep/2024:04:12:20] ENGINE Bus STARTING 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.322148+0000 mgr.smithi120.xfjtcc (mgr.14118) 4 : cephadm [INF] [10/Sep/2024:04:12:20] ENGINE Bus STARTING 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.423789+0000 mgr.smithi120.xfjtcc (mgr.14118) 5 : cephadm [INF] [10/Sep/2024:04:12:20] ENGINE Serving on http://172.21.15.120:8765 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.423789+0000 mgr.smithi120.xfjtcc (mgr.14118) 5 : cephadm [INF] [10/Sep/2024:04:12:20] ENGINE Serving on http://172.21.15.120:8765 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.543709+0000 mgr.smithi120.xfjtcc (mgr.14118) 6 : cephadm [INF] [10/Sep/2024:04:12:20] ENGINE Serving on https://172.21.15.120:7150 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.543709+0000 mgr.smithi120.xfjtcc (mgr.14118) 6 : cephadm [INF] [10/Sep/2024:04:12:20] ENGINE Serving on https://172.21.15.120:7150 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.543865+0000 mgr.smithi120.xfjtcc (mgr.14118) 7 : cephadm [INF] [10/Sep/2024:04:12:20] ENGINE Bus STARTED 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.543865+0000 mgr.smithi120.xfjtcc (mgr.14118) 7 : cephadm [INF] [10/Sep/2024:04:12:20] ENGINE Bus STARTED 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: audit 2024-09-10T04:12:20.544982+0000 mon.smithi120 (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: audit 2024-09-10T04:12:20.544982+0000 mon.smithi120 (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.546341+0000 mgr.smithi120.xfjtcc (mgr.14118) 8 : cephadm [ERR] [10/Sep/2024:04:12:20] ENGINE Error in HTTPServer.serve 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: Traceback (most recent call last): 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: self._connections.run(self.expiration_interval) 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: self._run(expiration_interval) 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: new_conn = self._from_server_socket(self.server.socket) 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: s = self.context.wrap_socket( 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: return self.sslsocket_class._create( 2024-09-10T04:12:21.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: self.do_handshake() 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: self._sslobj.do_handshake() 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: cephadm 2024-09-10T04:12:20.546341+0000 mgr.smithi120.xfjtcc (mgr.14118) 8 : cephadm [ERR] [10/Sep/2024:04:12:20] ENGINE Error in HTTPServer.serve 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: Traceback (most recent call last): 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: self._connections.run(self.expiration_interval) 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-10T04:12:21.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: self._run(expiration_interval) 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: new_conn = self._from_server_socket(self.server.socket) 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: s = self.context.wrap_socket( 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: return self.sslsocket_class._create( 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: self.do_handshake() 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: self._sslobj.do_handshake() 2024-09-10T04:12:21.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:21 smithi120 bash[19947]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-10T04:12:22.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:22 smithi120 bash[19947]: cluster 2024-09-10T04:12:21.323951+0000 mon.smithi120 (mon.0) 56 : cluster [DBG] mgrmap e8: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:12:22.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:22 smithi120 bash[19947]: cluster 2024-09-10T04:12:21.323951+0000 mon.smithi120 (mon.0) 56 : cluster [DBG] mgrmap e8: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:12:22.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:22 smithi120 bash[19947]: audit 2024-09-10T04:12:21.785703+0000 mon.smithi120 (mon.0) 57 : audit [INF] from='client.? 172.21.15.120:0/4092894082' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-10T04:12:22.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:22 smithi120 bash[19947]: audit 2024-09-10T04:12:21.785703+0000 mon.smithi120 (mon.0) 57 : audit [INF] from='client.? 172.21.15.120:0/4092894082' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-10T04:12:22.900 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-10T04:12:22.901 INFO:teuthology.orchestra.run.smithi120.stdout:Setting orchestrator backend to cephadm... 2024-09-10T04:12:23.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:23 smithi120 bash[19947]: audit 2024-09-10T04:12:22.331590+0000 mon.smithi120 (mon.0) 58 : audit [INF] from='client.? 172.21.15.120:0/4092894082' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-10T04:12:23.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:23 smithi120 bash[19947]: audit 2024-09-10T04:12:22.331590+0000 mon.smithi120 (mon.0) 58 : audit [INF] from='client.? 172.21.15.120:0/4092894082' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-10T04:12:23.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:23 smithi120 bash[19947]: cluster 2024-09-10T04:12:22.338507+0000 mon.smithi120 (mon.0) 59 : cluster [DBG] mgrmap e9: smithi120.xfjtcc(active, since 3s) 2024-09-10T04:12:23.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:23 smithi120 bash[19947]: cluster 2024-09-10T04:12:22.338507+0000 mon.smithi120 (mon.0) 59 : cluster [DBG] mgrmap e9: smithi120.xfjtcc(active, since 3s) 2024-09-10T04:12:25.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:25 smithi120 bash[19947]: audit 2024-09-10T04:12:24.477868+0000 mgr.smithi120.xfjtcc (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:25.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:25 smithi120 bash[19947]: audit 2024-09-10T04:12:24.477868+0000 mgr.smithi120.xfjtcc (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:25.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:25 smithi120 bash[19947]: audit 2024-09-10T04:12:24.483481+0000 mon.smithi120 (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:25.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:25 smithi120 bash[19947]: audit 2024-09-10T04:12:24.483481+0000 mon.smithi120 (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:25.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:25 smithi120 bash[19947]: audit 2024-09-10T04:12:24.499949+0000 mon.smithi120 (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:25.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:25 smithi120 bash[19947]: audit 2024-09-10T04:12:24.499949+0000 mon.smithi120 (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:26.915 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-10T04:12:26.915 INFO:teuthology.orchestra.run.smithi120.stdout:Generating ssh key... 2024-09-10T04:12:27.006 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:26 smithi120 bash[19947]: audit 2024-09-10T04:12:26.341444+0000 mgr.smithi120.xfjtcc (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:27.006 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:26 smithi120 bash[19947]: audit 2024-09-10T04:12:26.341444+0000 mgr.smithi120.xfjtcc (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:28 smithi120 bash[19947]: audit 2024-09-10T04:12:28.387505+0000 mgr.smithi120.xfjtcc (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:28 smithi120 bash[19947]: audit 2024-09-10T04:12:28.387505+0000 mgr.smithi120.xfjtcc (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:28 smithi120 bash[19947]: cephadm 2024-09-10T04:12:28.387894+0000 mgr.smithi120.xfjtcc (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-10T04:12:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:28 smithi120 bash[19947]: cephadm 2024-09-10T04:12:28.387894+0000 mgr.smithi120.xfjtcc (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-10T04:12:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:28 smithi120 bash[19947]: audit 2024-09-10T04:12:28.685972+0000 mon.smithi120 (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:28 smithi120 bash[19947]: audit 2024-09-10T04:12:28.685972+0000 mon.smithi120 (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:28 smithi120 bash[19947]: audit 2024-09-10T04:12:28.689421+0000 mon.smithi120 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:28 smithi120 bash[19947]: audit 2024-09-10T04:12:28.689421+0000 mon.smithi120 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:31.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:30 smithi120 bash[19947]: audit 2024-09-10T04:12:30.530598+0000 mgr.smithi120.xfjtcc (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:31.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:30 smithi120 bash[19947]: audit 2024-09-10T04:12:30.530598+0000 mgr.smithi120.xfjtcc (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:31.097 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCf6mQarJaN0UxEOis4HuZffJTJCTX9DLJc+PmoWLuuY4GTsfMcrMWMl4fvEBuNnh5wH/tkTDqenaGuf/2BctZ5DSZkqPSmCeSvWHerEEbvO+Ba4nWPOezMBCP+4n+9rfa8bvb4ak8+Zums6S2SY/yfFy5jqvwHVyDSk43i3wUiwach9bZ2cUplFucJf1AhO1vI3BK7dPamKv1cV67fkeF1TlkTX29fphSEkIaJj2Ro/yjAZ698ld4nvpwUwbiJHNCUo1pnDzm7VH20V/fcghbQjuHAgFtjHio6+M+DsJ8JR4bCYOMwpSXSpMzSKy8TnWThmJ9uubXwKX7FCWZ/ln0s4jRCwJXPAvW2O3CDh41hCEpP92ZxQ95A0I+MYpr3/9kwOGQdVaf9xnpnhc4jh9jZU8MiGwqUA1mZbLEXOetuGml1/shs+Us6otE46noR9HtJXbb6zZLEp2kIVQWMhZIyblQxgivz7Pi/abiNkqy8G9KLtnG9RwwkYQjwgryjg/U= ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:12:31.097 INFO:teuthology.orchestra.run.smithi120.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-10T04:12:31.097 INFO:teuthology.orchestra.run.smithi120.stdout:Adding key to root@localhost authorized_keys... 2024-09-10T04:12:31.097 INFO:teuthology.orchestra.run.smithi120.stdout:Adding host smithi120... 2024-09-10T04:12:33.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:32 smithi120 bash[19947]: audit 2024-09-10T04:12:32.553542+0000 mgr.smithi120.xfjtcc (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi120", "addr": "172.21.15.120", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:33.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:32 smithi120 bash[19947]: audit 2024-09-10T04:12:32.553542+0000 mgr.smithi120.xfjtcc (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi120", "addr": "172.21.15.120", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:33.917 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:33 smithi120 bash[19947]: cephadm 2024-09-10T04:12:33.499612+0000 mgr.smithi120.xfjtcc (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi120 2024-09-10T04:12:33.918 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:33 smithi120 bash[19947]: cephadm 2024-09-10T04:12:33.499612+0000 mgr.smithi120.xfjtcc (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi120 2024-09-10T04:12:37.338 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Added host 'smithi120' with addr '172.21.15.120' 2024-09-10T04:12:37.338 INFO:teuthology.orchestra.run.smithi120.stdout:Deploying mon service with default placement... 2024-09-10T04:12:37.723 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:37 smithi120 bash[19947]: audit 2024-09-10T04:12:36.568750+0000 mon.smithi120 (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:37.723 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:37 smithi120 bash[19947]: audit 2024-09-10T04:12:36.568750+0000 mon.smithi120 (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:37.723 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:37 smithi120 bash[19947]: cephadm 2024-09-10T04:12:36.569146+0000 mgr.smithi120.xfjtcc (mgr.14118) 16 : cephadm [INF] Added host smithi120 2024-09-10T04:12:37.723 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:37 smithi120 bash[19947]: cephadm 2024-09-10T04:12:36.569146+0000 mgr.smithi120.xfjtcc (mgr.14118) 16 : cephadm [INF] Added host smithi120 2024-09-10T04:12:37.723 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:37 smithi120 bash[19947]: audit 2024-09-10T04:12:36.569490+0000 mon.smithi120 (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:37.723 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:37 smithi120 bash[19947]: audit 2024-09-10T04:12:36.569490+0000 mon.smithi120 (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:12:40.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:39 smithi120 bash[19947]: cluster 2024-09-10T04:12:38.599738+0000 mgr.smithi120.xfjtcc (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:40.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:39 smithi120 bash[19947]: cluster 2024-09-10T04:12:38.599738+0000 mgr.smithi120.xfjtcc (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:40.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:39 smithi120 bash[19947]: audit 2024-09-10T04:12:39.350505+0000 mon.smithi120 (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:40.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:39 smithi120 bash[19947]: audit 2024-09-10T04:12:39.350505+0000 mon.smithi120 (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:40.152 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-10T04:12:40.152 INFO:teuthology.orchestra.run.smithi120.stdout:Deploying mgr service with default placement... 2024-09-10T04:12:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:40 smithi120 bash[19947]: audit 2024-09-10T04:12:39.344555+0000 mgr.smithi120.xfjtcc (mgr.14118) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:40 smithi120 bash[19947]: audit 2024-09-10T04:12:39.344555+0000 mgr.smithi120.xfjtcc (mgr.14118) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:40 smithi120 bash[19947]: cephadm 2024-09-10T04:12:39.346736+0000 mgr.smithi120.xfjtcc (mgr.14118) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-10T04:12:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:40 smithi120 bash[19947]: cephadm 2024-09-10T04:12:39.346736+0000 mgr.smithi120.xfjtcc (mgr.14118) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-10T04:12:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:40 smithi120 bash[19947]: audit 2024-09-10T04:12:39.893683+0000 mon.smithi120 (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:40 smithi120 bash[19947]: audit 2024-09-10T04:12:39.893683+0000 mon.smithi120 (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:40 smithi120 bash[19947]: audit 2024-09-10T04:12:40.461143+0000 mon.smithi120 (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:40 smithi120 bash[19947]: audit 2024-09-10T04:12:40.461143+0000 mon.smithi120 (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:41.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:41 smithi120 bash[19947]: cluster 2024-09-10T04:12:40.600270+0000 mgr.smithi120.xfjtcc (mgr.14118) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:41.881 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:41 smithi120 bash[19947]: cluster 2024-09-10T04:12:40.600270+0000 mgr.smithi120.xfjtcc (mgr.14118) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:42.228 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-10T04:12:42.228 INFO:teuthology.orchestra.run.smithi120.stdout:Deploying crash service with default placement... 2024-09-10T04:12:43.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:42 smithi120 bash[19947]: audit 2024-09-10T04:12:41.672827+0000 mgr.smithi120.xfjtcc (mgr.14118) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:43.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:42 smithi120 bash[19947]: audit 2024-09-10T04:12:41.672827+0000 mgr.smithi120.xfjtcc (mgr.14118) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:43.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:42 smithi120 bash[19947]: cephadm 2024-09-10T04:12:41.674842+0000 mgr.smithi120.xfjtcc (mgr.14118) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-10T04:12:43.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:42 smithi120 bash[19947]: cephadm 2024-09-10T04:12:41.674842+0000 mgr.smithi120.xfjtcc (mgr.14118) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-10T04:12:43.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:42 smithi120 bash[19947]: audit 2024-09-10T04:12:41.679311+0000 mon.smithi120 (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:43.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:42 smithi120 bash[19947]: audit 2024-09-10T04:12:41.679311+0000 mon.smithi120 (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:43.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:42 smithi120 bash[19947]: cluster 2024-09-10T04:12:42.600757+0000 mgr.smithi120.xfjtcc (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:43.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:42 smithi120 bash[19947]: cluster 2024-09-10T04:12:42.600757+0000 mgr.smithi120.xfjtcc (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:44.159 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-10T04:12:44.160 INFO:teuthology.orchestra.run.smithi120.stdout:Deploying ceph-exporter service with default placement... 2024-09-10T04:12:45.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:44 smithi120 bash[19947]: audit 2024-09-10T04:12:43.617693+0000 mgr.smithi120.xfjtcc (mgr.14118) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:45.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:44 smithi120 bash[19947]: audit 2024-09-10T04:12:43.617693+0000 mgr.smithi120.xfjtcc (mgr.14118) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:45.006 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:44 smithi120 bash[19947]: cephadm 2024-09-10T04:12:43.618615+0000 mgr.smithi120.xfjtcc (mgr.14118) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-10T04:12:45.006 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:44 smithi120 bash[19947]: cephadm 2024-09-10T04:12:43.618615+0000 mgr.smithi120.xfjtcc (mgr.14118) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-10T04:12:45.006 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:44 smithi120 bash[19947]: audit 2024-09-10T04:12:43.621979+0000 mon.smithi120 (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:45.006 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:44 smithi120 bash[19947]: audit 2024-09-10T04:12:43.621979+0000 mon.smithi120 (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:46.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:45 smithi120 bash[19947]: cluster 2024-09-10T04:12:44.601105+0000 mgr.smithi120.xfjtcc (mgr.14118) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:46.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:45 smithi120 bash[19947]: cluster 2024-09-10T04:12:44.601105+0000 mgr.smithi120.xfjtcc (mgr.14118) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:46.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:45 smithi120 bash[19947]: audit 2024-09-10T04:12:45.559901+0000 mon.smithi120 (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:46.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:45 smithi120 bash[19947]: audit 2024-09-10T04:12:45.559901+0000 mon.smithi120 (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:46.125 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-10T04:12:46.125 INFO:teuthology.orchestra.run.smithi120.stdout:Deploying prometheus service with default placement... 2024-09-10T04:12:46.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:46 smithi120 bash[19947]: audit 2024-09-10T04:12:45.555967+0000 mgr.smithi120.xfjtcc (mgr.14118) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:46.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:46 smithi120 bash[19947]: audit 2024-09-10T04:12:45.555967+0000 mgr.smithi120.xfjtcc (mgr.14118) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:46.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:46 smithi120 bash[19947]: cephadm 2024-09-10T04:12:45.557113+0000 mgr.smithi120.xfjtcc (mgr.14118) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-10T04:12:46.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:46 smithi120 bash[19947]: cephadm 2024-09-10T04:12:45.557113+0000 mgr.smithi120.xfjtcc (mgr.14118) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-10T04:12:47.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:47 smithi120 bash[19947]: cluster 2024-09-10T04:12:46.601539+0000 mgr.smithi120.xfjtcc (mgr.14118) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:47.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:47 smithi120 bash[19947]: cluster 2024-09-10T04:12:46.601539+0000 mgr.smithi120.xfjtcc (mgr.14118) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:47.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:47 smithi120 bash[19947]: audit 2024-09-10T04:12:47.516695+0000 mon.smithi120 (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:47.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:47 smithi120 bash[19947]: audit 2024-09-10T04:12:47.516695+0000 mon.smithi120 (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:48.058 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-10T04:12:48.058 INFO:teuthology.orchestra.run.smithi120.stdout:Deploying grafana service with default placement... 2024-09-10T04:12:48.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:48 smithi120 bash[19947]: audit 2024-09-10T04:12:47.510482+0000 mgr.smithi120.xfjtcc (mgr.14118) 30 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:48.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:48 smithi120 bash[19947]: audit 2024-09-10T04:12:47.510482+0000 mgr.smithi120.xfjtcc (mgr.14118) 30 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:48.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:48 smithi120 bash[19947]: cephadm 2024-09-10T04:12:47.511898+0000 mgr.smithi120.xfjtcc (mgr.14118) 31 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-10T04:12:48.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:48 smithi120 bash[19947]: cephadm 2024-09-10T04:12:47.511898+0000 mgr.smithi120.xfjtcc (mgr.14118) 31 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-10T04:12:49.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:49 smithi120 bash[19947]: cluster 2024-09-10T04:12:48.601881+0000 mgr.smithi120.xfjtcc (mgr.14118) 32 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:49.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:49 smithi120 bash[19947]: cluster 2024-09-10T04:12:48.601881+0000 mgr.smithi120.xfjtcc (mgr.14118) 32 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:49.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:49 smithi120 bash[19947]: audit 2024-09-10T04:12:48.739455+0000 mon.smithi120 (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:49.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:49 smithi120 bash[19947]: audit 2024-09-10T04:12:48.739455+0000 mon.smithi120 (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:49.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:49 smithi120 bash[19947]: audit 2024-09-10T04:12:49.498125+0000 mon.smithi120 (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:49.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:49 smithi120 bash[19947]: audit 2024-09-10T04:12:49.498125+0000 mon.smithi120 (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:50.091 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-10T04:12:50.091 INFO:teuthology.orchestra.run.smithi120.stdout:Deploying node-exporter service with default placement... 2024-09-10T04:12:50.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:50 smithi120 bash[19947]: audit 2024-09-10T04:12:49.490509+0000 mgr.smithi120.xfjtcc (mgr.14118) 33 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:50.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:50 smithi120 bash[19947]: audit 2024-09-10T04:12:49.490509+0000 mgr.smithi120.xfjtcc (mgr.14118) 33 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:50.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:50 smithi120 bash[19947]: cephadm 2024-09-10T04:12:49.493264+0000 mgr.smithi120.xfjtcc (mgr.14118) 34 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-10T04:12:50.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:50 smithi120 bash[19947]: cephadm 2024-09-10T04:12:49.493264+0000 mgr.smithi120.xfjtcc (mgr.14118) 34 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-10T04:12:50.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:50 smithi120 bash[19947]: audit 2024-09-10T04:12:49.861150+0000 mon.smithi120 (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:50.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:50 smithi120 bash[19947]: audit 2024-09-10T04:12:49.861150+0000 mon.smithi120 (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:50.972 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:50 smithi120 bash[19947]: cluster 2024-09-10T04:12:50.602279+0000 mgr.smithi120.xfjtcc (mgr.14118) 35 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:50.972 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:50 smithi120 bash[19947]: cluster 2024-09-10T04:12:50.602279+0000 mgr.smithi120.xfjtcc (mgr.14118) 35 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:52.058 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-10T04:12:52.058 INFO:teuthology.orchestra.run.smithi120.stdout:Deploying alertmanager service with default placement... 2024-09-10T04:12:52.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:52 smithi120 bash[19947]: audit 2024-09-10T04:12:51.510164+0000 mgr.smithi120.xfjtcc (mgr.14118) 36 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:52.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:52 smithi120 bash[19947]: audit 2024-09-10T04:12:51.510164+0000 mgr.smithi120.xfjtcc (mgr.14118) 36 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:52.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:52 smithi120 bash[19947]: cephadm 2024-09-10T04:12:51.511681+0000 mgr.smithi120.xfjtcc (mgr.14118) 37 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-10T04:12:52.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:52 smithi120 bash[19947]: cephadm 2024-09-10T04:12:51.511681+0000 mgr.smithi120.xfjtcc (mgr.14118) 37 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-10T04:12:52.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:52 smithi120 bash[19947]: audit 2024-09-10T04:12:51.514350+0000 mon.smithi120 (mon.0) 76 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:52.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:52 smithi120 bash[19947]: audit 2024-09-10T04:12:51.514350+0000 mon.smithi120 (mon.0) 76 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:53 smithi120 bash[19947]: cluster 2024-09-10T04:12:52.602714+0000 mgr.smithi120.xfjtcc (mgr.14118) 38 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:53.970 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:53 smithi120 bash[19947]: cluster 2024-09-10T04:12:52.602714+0000 mgr.smithi120.xfjtcc (mgr.14118) 38 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:53.970 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:53 smithi120 bash[19947]: audit 2024-09-10T04:12:53.494137+0000 mon.smithi120 (mon.0) 77 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:53.970 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:53 smithi120 bash[19947]: audit 2024-09-10T04:12:53.494137+0000 mon.smithi120 (mon.0) 77 : audit [INF] from='mgr.14118 172.21.15.120:0/3294610116' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:12:54.090 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-10T04:12:54.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:54 smithi120 bash[19947]: audit 2024-09-10T04:12:53.488668+0000 mgr.smithi120.xfjtcc (mgr.14118) 39 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:54.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:54 smithi120 bash[19947]: audit 2024-09-10T04:12:53.488668+0000 mgr.smithi120.xfjtcc (mgr.14118) 39 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:12:54.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:54 smithi120 bash[19947]: cephadm 2024-09-10T04:12:53.490776+0000 mgr.smithi120.xfjtcc (mgr.14118) 40 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-10T04:12:54.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:54 smithi120 bash[19947]: cephadm 2024-09-10T04:12:53.490776+0000 mgr.smithi120.xfjtcc (mgr.14118) 40 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-10T04:12:55.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:55 smithi120 bash[19947]: cluster 2024-09-10T04:12:54.603267+0000 mgr.smithi120.xfjtcc (mgr.14118) 41 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:55.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:55 smithi120 bash[19947]: cluster 2024-09-10T04:12:54.603267+0000 mgr.smithi120.xfjtcc (mgr.14118) 41 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:56.714 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:56 smithi120 bash[19947]: audit 2024-09-10T04:12:55.644869+0000 mon.smithi120 (mon.0) 78 : audit [INF] from='client.? 172.21.15.120:0/2535085350' entity='client.admin' 2024-09-10T04:12:56.714 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:56 smithi120 bash[19947]: audit 2024-09-10T04:12:55.644869+0000 mon.smithi120 (mon.0) 78 : audit [INF] from='client.? 172.21.15.120:0/2535085350' entity='client.admin' 2024-09-10T04:12:57.903 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:57 smithi120 bash[19947]: cluster 2024-09-10T04:12:56.603702+0000 mgr.smithi120.xfjtcc (mgr.14118) 42 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:57.903 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:57 smithi120 bash[19947]: cluster 2024-09-10T04:12:56.603702+0000 mgr.smithi120.xfjtcc (mgr.14118) 42 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:59.038 INFO:teuthology.orchestra.run.smithi120.stdout:Enabling the dashboard module... 2024-09-10T04:12:59.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:59 smithi120 bash[19947]: audit 2024-09-10T04:12:58.411295+0000 mon.smithi120 (mon.0) 79 : audit [INF] from='client.? 172.21.15.120:0/690603456' entity='client.admin' 2024-09-10T04:12:59.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:59 smithi120 bash[19947]: audit 2024-09-10T04:12:58.411295+0000 mon.smithi120 (mon.0) 79 : audit [INF] from='client.? 172.21.15.120:0/690603456' entity='client.admin' 2024-09-10T04:12:59.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:59 smithi120 bash[19947]: cluster 2024-09-10T04:12:58.603935+0000 mgr.smithi120.xfjtcc (mgr.14118) 43 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:12:59.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:12:59 smithi120 bash[19947]: cluster 2024-09-10T04:12:58.603935+0000 mgr.smithi120.xfjtcc (mgr.14118) 43 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:01.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:00 smithi120 bash[19947]: cluster 2024-09-10T04:13:00.604334+0000 mgr.smithi120.xfjtcc (mgr.14118) 44 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:01.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:00 smithi120 bash[19947]: cluster 2024-09-10T04:13:00.604334+0000 mgr.smithi120.xfjtcc (mgr.14118) 44 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:01.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:00 smithi120 bash[19947]: audit 2024-09-10T04:13:00.659095+0000 mon.smithi120 (mon.0) 80 : audit [INF] from='client.? 172.21.15.120:0/3820485988' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-10T04:13:01.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:00 smithi120 bash[19947]: audit 2024-09-10T04:13:00.659095+0000 mon.smithi120 (mon.0) 80 : audit [INF] from='client.? 172.21.15.120:0/3820485988' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-10T04:13:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:02 smithi120 bash[19947]: audit 2024-09-10T04:13:01.657702+0000 mon.smithi120 (mon.0) 81 : audit [INF] from='client.? 172.21.15.120:0/3820485988' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-10T04:13:02.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:02 smithi120 bash[19947]: audit 2024-09-10T04:13:01.657702+0000 mon.smithi120 (mon.0) 81 : audit [INF] from='client.? 172.21.15.120:0/3820485988' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-10T04:13:02.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:02 smithi120 bash[19947]: cluster 2024-09-10T04:13:01.664179+0000 mon.smithi120 (mon.0) 82 : cluster [DBG] mgrmap e10: smithi120.xfjtcc(active, since 43s) 2024-09-10T04:13:02.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:02 smithi120 bash[19947]: cluster 2024-09-10T04:13:01.664179+0000 mon.smithi120 (mon.0) 82 : cluster [DBG] mgrmap e10: smithi120.xfjtcc(active, since 43s) 2024-09-10T04:13:04.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:03 smithi120 bash[19947]: audit 2024-09-10T04:13:03.809144+0000 mon.smithi120 (mon.0) 83 : audit [DBG] from='client.? 172.21.15.120:0/3838567815' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-10T04:13:04.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:03 smithi120 bash[19947]: audit 2024-09-10T04:13:03.809144+0000 mon.smithi120 (mon.0) 83 : audit [DBG] from='client.? 172.21.15.120:0/3838567815' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-10T04:13:04.370 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout { 2024-09-10T04:13:04.370 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "epoch": 10, 2024-09-10T04:13:04.371 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-10T04:13:04.371 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "active_name": "smithi120.xfjtcc", 2024-09-10T04:13:04.371 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-10T04:13:04.371 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout } 2024-09-10T04:13:04.371 INFO:teuthology.orchestra.run.smithi120.stdout:Waiting for the mgr to restart... 2024-09-10T04:13:04.371 INFO:teuthology.orchestra.run.smithi120.stdout:Waiting for mgr epoch 10... 2024-09-10T04:13:08.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.714637+0000 mon.smithi120 (mon.0) 84 : cluster [INF] Active manager daemon smithi120.xfjtcc restarted 2024-09-10T04:13:08.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.714637+0000 mon.smithi120 (mon.0) 84 : cluster [INF] Active manager daemon smithi120.xfjtcc restarted 2024-09-10T04:13:08.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.715087+0000 mon.smithi120 (mon.0) 85 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:13:08.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.715087+0000 mon.smithi120 (mon.0) 85 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:13:08.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.722149+0000 mon.smithi120 (mon.0) 86 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-10T04:13:08.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.722149+0000 mon.smithi120 (mon.0) 86 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-10T04:13:08.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.722425+0000 mon.smithi120 (mon.0) 87 : cluster [DBG] mgrmap e11: smithi120.xfjtcc(active, starting, since 0.0075399s) 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.722425+0000 mon.smithi120 (mon.0) 87 : cluster [DBG] mgrmap e11: smithi120.xfjtcc(active, starting, since 0.0075399s) 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.723507+0000 mon.smithi120 (mon.0) 88 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.723507+0000 mon.smithi120 (mon.0) 88 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.725235+0000 mon.smithi120 (mon.0) 89 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.725235+0000 mon.smithi120 (mon.0) 89 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.726379+0000 mon.smithi120 (mon.0) 90 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.726379+0000 mon.smithi120 (mon.0) 90 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.726493+0000 mon.smithi120 (mon.0) 91 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.726493+0000 mon.smithi120 (mon.0) 91 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.726623+0000 mon.smithi120 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:13:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: audit 2024-09-10T04:13:07.726623+0000 mon.smithi120 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:13:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.750848+0000 mon.smithi120 (mon.0) 93 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:13:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:07 smithi120 bash[19947]: cluster 2024-09-10T04:13:07.750848+0000 mon.smithi120 (mon.0) 93 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:13:09.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:08 smithi120 bash[19947]: audit 2024-09-10T04:13:08.041449+0000 mon.smithi120 (mon.0) 94 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:13:09.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:08 smithi120 bash[19947]: audit 2024-09-10T04:13:08.041449+0000 mon.smithi120 (mon.0) 94 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:13:09.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:08 smithi120 bash[19947]: audit 2024-09-10T04:13:08.057730+0000 mon.smithi120 (mon.0) 95 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:13:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:08 smithi120 bash[19947]: audit 2024-09-10T04:13:08.057730+0000 mon.smithi120 (mon.0) 95 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:13:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:08 smithi120 bash[19947]: audit 2024-09-10T04:13:08.060530+0000 mon.smithi120 (mon.0) 96 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:13:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:08 smithi120 bash[19947]: audit 2024-09-10T04:13:08.060530+0000 mon.smithi120 (mon.0) 96 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:13:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:08 smithi120 bash[19947]: cluster 2024-09-10T04:13:08.728432+0000 mon.smithi120 (mon.0) 97 : cluster [DBG] mgrmap e12: smithi120.xfjtcc(active, since 1.01355s) 2024-09-10T04:13:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:08 smithi120 bash[19947]: cluster 2024-09-10T04:13:08.728432+0000 mon.smithi120 (mon.0) 97 : cluster [DBG] mgrmap e12: smithi120.xfjtcc(active, since 1.01355s) 2024-09-10T04:13:09.345 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout { 2024-09-10T04:13:09.345 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 12, 2024-09-10T04:13:09.345 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-10T04:13:09.346 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout } 2024-09-10T04:13:09.346 INFO:teuthology.orchestra.run.smithi120.stdout:mgr epoch 10 is available 2024-09-10T04:13:09.346 INFO:teuthology.orchestra.run.smithi120.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-10T04:13:10.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:08.966921+0000 mgr.smithi120.xfjtcc (mgr.14164) 3 : cephadm [INF] [10/Sep/2024:04:13:08] ENGINE Bus STARTING 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:08.966921+0000 mgr.smithi120.xfjtcc (mgr.14164) 3 : cephadm [INF] [10/Sep/2024:04:13:08] ENGINE Bus STARTING 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:09.068552+0000 mgr.smithi120.xfjtcc (mgr.14164) 4 : cephadm [INF] [10/Sep/2024:04:13:09] ENGINE Serving on http://172.21.15.120:8765 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:09.068552+0000 mgr.smithi120.xfjtcc (mgr.14164) 4 : cephadm [INF] [10/Sep/2024:04:13:09] ENGINE Serving on http://172.21.15.120:8765 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:09.188647+0000 mgr.smithi120.xfjtcc (mgr.14164) 5 : cephadm [INF] [10/Sep/2024:04:13:09] ENGINE Serving on https://172.21.15.120:7150 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:09.188647+0000 mgr.smithi120.xfjtcc (mgr.14164) 5 : cephadm [INF] [10/Sep/2024:04:13:09] ENGINE Serving on https://172.21.15.120:7150 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:09.188762+0000 mgr.smithi120.xfjtcc (mgr.14164) 6 : cephadm [INF] [10/Sep/2024:04:13:09] ENGINE Bus STARTED 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:09.188762+0000 mgr.smithi120.xfjtcc (mgr.14164) 6 : cephadm [INF] [10/Sep/2024:04:13:09] ENGINE Bus STARTED 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:09.190440+0000 mgr.smithi120.xfjtcc (mgr.14164) 7 : cephadm [ERR] [10/Sep/2024:04:13:09] ENGINE Error in HTTPServer.serve 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: Traceback (most recent call last): 2024-09-10T04:13:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: self._connections.run(self.expiration_interval) 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: self._run(expiration_interval) 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: new_conn = self._from_server_socket(self.server.socket) 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: s = self.context.wrap_socket( 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: return self.sslsocket_class._create( 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-10T04:13:10.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: self.do_handshake() 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: self._sslobj.do_handshake() 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: cephadm 2024-09-10T04:13:09.190440+0000 mgr.smithi120.xfjtcc (mgr.14164) 7 : cephadm [ERR] [10/Sep/2024:04:13:09] ENGINE Error in HTTPServer.serve 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: Traceback (most recent call last): 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: self._connections.run(self.expiration_interval) 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: self._run(expiration_interval) 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: new_conn = self._from_server_socket(self.server.socket) 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-10T04:13:10.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: s = self.context.wrap_socket( 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: return self.sslsocket_class._create( 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: self.do_handshake() 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: self._sslobj.do_handshake() 2024-09-10T04:13:10.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:09 smithi120 bash[19947]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-10T04:13:11.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:10 smithi120 bash[19947]: cluster 2024-09-10T04:13:09.776386+0000 mon.smithi120 (mon.0) 98 : cluster [DBG] mgrmap e13: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:13:11.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:10 smithi120 bash[19947]: cluster 2024-09-10T04:13:09.776386+0000 mon.smithi120 (mon.0) 98 : cluster [DBG] mgrmap e13: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:13:12.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:11 smithi120 bash[19947]: audit 2024-09-10T04:13:10.942655+0000 mgr.smithi120.xfjtcc (mgr.14164) 8 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:12.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:11 smithi120 bash[19947]: audit 2024-09-10T04:13:10.942655+0000 mgr.smithi120.xfjtcc (mgr.14164) 8 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:12.245 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE/DCCAuSgAwIBAgIUbEha7Ggpk7CPMUIVXuIbg+Mg08cwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkxMDA0MTMxMVoXDTM0\nMDkxMTA0MTMxMVowGDEWMBQGA1UEAwwNMTcyLjIxLjE1LjEyMDCCAiIwDQYJKoZI\nhvcNAQEBBQADggIPADCCAgoCggIBAL9cEzCYa9wkxBq0xOU6GMtrV9LHIMnTQMAh\n9oOA5GpMC4Cyhk7fzEuBXmkp7REVQC6myGjSikVMF56xm36DZ07xkK9Ftsd9+9co\n7qlnwvWRijLIKsH/OMpgebcU9Z0BxIzPwYwaC/cGEHw0LMiz6YCTHwB5YLgAJSoR\nGqXtHW6IUITXgx5vgwQfkQq/uEtPyL7AVdokRaaizYjvYLgjDcMOKLR7D3ms8TTV\ncFOum0rHkHwRRkVowZ7a4XTpx+i2OpCGWJqyeQJcKyb8Zart92xF2NyEc9RfZ4Ca\nv0+qjEyVNzDraElHkobYf2l9hgT94K1+45hIVYXEf9mAhc+7L5JuIWH6z+abz08w\nqc0fDLnLLi4sG+e8li1pOBq6wH/jU1wgmf7NSWsbdN6YYWL+uZ8bjMhZ+5XLlg9g\nojzRMlM4URzDkSDcALekfF1YIm9TTnI6PzJW00iBA+WrQxsWwb3J90/RR8Y9I+C6\nJVcphoaMNfoFyAa0GCuEK5EuggP982XiimKWG/SCSzuQJYJBkOK9RzzbSTxk5whU\nkPzwDTlaUFBcZJlZU/r+lXO48jdHXTkG9DdlAxsH2QCZA6MNGL9h7GDdUZ40ifN6\nVyl9ALPZ0RIZXlFZniApPCB964owKX0aov67S2ny5hQf0PfOrHYYb6pjXytFfrXf\nX4UD8Pb3AgMBAAGjPzA9MC0GA1UdEQQmMCSCCXNtaXRoaTEyMIIRZGFzaGJvYXJk\nX3NlcnZlcnOHBKwVD3gwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEA\nlrd/hA7TBjE4lGOMuLl7qsgPsP/fPbRc38zTsW8r6IQJOqM92qz0+WsBL+AlZY4C\nSsVtLC848hiDK6Rk1XrMTEu3prvXnmP/y3ihObdcSqZcbuaMt5fxZXoRjgdl3nYb\nInlWZTEIhjVUVMbZF4Kgo8Xt+cuhXKQMtn+FZgkGO4ITt1wkQflFhxPj23ZvS+0G\n2LMumtplcUga+lUOlZRhcKi8R05qzWNEYhNpRyG8HUBtutJIDWJ21kG/lr6bfS/l\ngGvddQ+zSYcrQ5nPIrKyR6j8C/OtXVjTHW7aTibIMiaDIGk11dlYMeqFaqjgT/p+\npeXUPVRh2BjO2BEsZ7A9LATMmH6T1C7IMiezFHdXn77hV4pE6MO/z4nUMbhg7I+u\nA0grb3BM1CECTpzUVuHqyaesBX62IP+m3DneM9+BDAEo5SBcerDQeEtCDCkjFOxX\ndpqIXBY/RkleULeLYSgWDfbeswB+Rwz2moPuEC7Gb46p/hXo8GP3cbsw8ZkV0xPj\nMrV0bOKYejud9kif7HFxripNE4CaM3F7OacMAeAE5FVdZRI/VzoXBw8SJuIHUagd\nbNHBsfg8z1qzTy+eQAMotAtH9m12WS352JC4eWltN3OHvPuBk8jOObjnLhPRx7yR\npuCjOYfkenfEDZewD2B7febYaevWdZSduE6fHQ4syNw=\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKQIBAAKCAgEAv1wTMJhr3CTEGrTE5ToYy2tX0scgydNAwCH2g4DkakwLgLKG\nTt/MS4FeaSntERVALqbIaNKKRUwXnrGbfoNnTvGQr0W2x3371yjuqWfC9ZGKMsgq\nwf84ymB5txT1nQHEjM/BjBoL9wYQfDQsyLPpgJMfAHlguAAlKhEape0dbohQhNeD\nHm+DBB+RCr+4S0/IvsBV2iRFpqLNiO9guCMNww4otHsPeazxNNVwU66bSseQfBFG\nRWjBntrhdOnH6LY6kIZYmrJ5AlwrJvxlqu33bEXY3IRz1F9ngJq/T6qMTJU3MOto\nSUeShth/aX2GBP3grX7jmEhVhcR/2YCFz7svkm4hYfrP5pvPTzCpzR8MucsuLiwb\n57yWLWk4GrrAf+NTXCCZ/s1Jaxt03phhYv65nxuMyFn7lcuWD2CiPNEyUzhRHMOR\nINwAt6R8XVgib1NOcjo/MlbTSIED5atDGxbBvcn3T9FHxj0j4LolVymGhow1+gXI\nBrQYK4QrkS6CA/3zZeKKYpYb9IJLO5AlgkGQ4r1HPNtJPGTnCFSQ/PANOVpQUFxk\nmVlT+v6Vc7jyN0ddOQb0N2UDGwfZAJkDow0Yv2HsYN1RnjSJ83pXKX0As9nREhle\nUVmeICk8IH3rijApfRqi/rtLafLmFB/Q986sdhhvqmNfK0V+td9fhQPw9vcCAwEA\nAQKCAgAcFXUYMIPCjb9yv0KW9QVMNAdHaa5atb8Zfi0xvy9b7agnLaF/dDcv158q\n+5piuPCFSDiTsF6BmA7ECAMu4zW8r2rRW6pdBxTNpCC5SlShpJ1DIamrdKZO29om\nb+mHWYnmiTEPEN2JAIytJcfIIXtXQYA5xMEt5TuPERk3mR/ffRr6vAREFGUxLDl6\n+d3Kvmf9nWLxflmd1ePTQR+74SJ1FMq4M3KhzqtMWoy/Le91ien0WLasRhkFvtAl\neo/lC9Ahg3iqeh8/T5aNBLAeZgk7YdmCAjWw89rP/tCtQ6A5NxGgA38ieLdnmeDC\ncx0W9h7MvO7FsSFNXfl4ysoYortILG9CBJbNVcRAz07F2zr0EdeLY1EtzalU+P6K\nNn7/xuexBhkfbhuSyUaeC0+DHk3TETdUhYKY9CraBAOWW7WXpVCWMc9TLIvmFXba\n6HbBr2edV2+U+ufK0kXjRm6QYQ5JmpzESHSVioooIEh2xUV4hB7xZrruVlWYghY1\nDN12BheiLV4k/n90mxQG1aOTIBk688BvgV0MlmvMysSXvcDwhbvaKLS+qNcOmq7K\nuDg+BUNsJihPlGjU953+DEjNQUn2XLj/L5GWb4y+o/MyHiqXRsLLyzb+mlcZChIg\nmuWnnJFQsZJmsHBR0+xvATOWLH3Vopx6BlfzzLq4igQ/pUz8XQKCAQEA4LlrL5Rg\nATdvhVLEjVEt02gHpETPXjZZVUC7RlfW+iAQfqs3WR/nVNcRVspDwfq+oJNBnXS0\ntGYgWy4VpwsRE5itgGRV9Veq3cwE9ABxYiI+6CH+63TBGuHzmP3wN4JXRKOdQYRL\nmwn1Mnx+6oUokK6D1E4+vwPphLZIvTBilLGLKdx48H8kzYnRKO2S6qrzPPl1jAKY\nA2BaMkc7XuYP3ZNQiPHh2JDIYl4XFOFZ0WdUHpSJ3UJyIsLMP/dDoKcrepLqAXj2\nGR9GWiGW3x58LJ9Zjp2MbYvWkRLkpTnDxehZoHhTUyIBLWev4Oo21IeUPFu2ukRa\nLroceUXhfrRqewKCAQEA2f3tDCnQjjEwv/KZ86weenGWvoNDkjb/+Q+y94K5I/u6\nGIWt8dyq3asvie+1F4mcuj1tUnZSCMMPLEVWm/PhJI8ai6RKlBFq9if9KykgJy2S\n0ri8RZozd5d9omEp+iuIFi0g+3ToZmQk4Fe4oy7DLyOlQnPW5BGUA/2QS72kdRIY\n+hWzwijs+ETIXz/UF9JHL0O95tdMbsDBeAf5RATAziAZXgB3Kikc7MOuYRUhbyld\nEb2wbhaDjti4iyu66is48AVxicfuwaO6SW3Qyqj3pERXieJ+FBIFJEKpNS8ABSZi\n/bujHH3LKBUYUI8R2mUhcWohurLgVK+QsGDq1USqtQKCAQEAyiUATeRiF7YOExfI\nxnXniuthNFrRTiYFZbK8wyHwtz5wmADb4MfaB28Ooct/99Xd9AOCWmjIxB25rUtf\nHsvNqJsGNyAKUo9xm+IR8osTcvrrK1SpQpPbwJrPzSdgFg6hAZVLt8uRVv02Gxvx\n7nOpcbwJycg4mQqj3EU8WTJU+vxZ+mXgRDWanWkDRJWwOndcJdUf77nFlAPwHpoE\nxfCdBOum3gj25yAVoKaSjK3JZZxVBs0G1okWsj4YDNIXe0Pk0HWnGXv9o8uGNT1R\nwZJikKEmpisCTugjMoyUMCwt9rBzLu4NxhIojPdgNil4+OSca070p8kkdjPjuRMr\nLBaOUQKCAQA/eKnuorYw0K3LFc4xnun46N3ldr7T8eOyFxoa6xsRGRhkT3gINiIi\nDNf4p6zov468w2nzWrQkDPd8AmxnWCkzxd8KzblRR4kHRzl1ubG89o4LgPKAqZdW\nuOtBvlzElKw5GMbDsJSCS6JZF/GQwere7NgPcz8chOm+B7Rd+UfLNovDNVJztArb\ndtuIsEMG9Jj5cBX5ArMkhEdQtbGkVmX1Hm+EaUpJIlNjtM4vQkHL5hVNNxgJ1dBU\nZVHGY+M2j4Myj8MxRN+FzjBNdQYYG/6O+78pTKM9IMoSdr5h199/oF+uVVX208G1\nV/8OZbnjBxMnvKk5fR/ISJ4uXOnDUw0JAoIBAQC+BdKDSxHATspNUmX+9OmqDl8u\nAi7DlcxYKDtSFSNcvAlLLVMPiXya0FiXuJ45KQQtum5pMr3IlSuTWXD66FD0Pwvp\nanIu8lCSmk0MirgpINz7Ni88214+rzRfRqYyAEvCr3Yam/oxM65qkMfvsjOXmONw\nLILCNIOVptPO3Moi/N320mM7923+oZiU/r8h/NlMEjJcUPOqV00v8TpAubMbwrq5\nCiCsrkqc4YIdG6Hht8pfnEmhFCW6DzdpC9UPBUHTCTGKIxmTTS9zpyycxohx6xW/\nESD2XPrywTBNztm5rxDTUU4aufeB9pVx65Zeml6RjGjWtjqx/DJOztI8SsVt\n-----END RSA PRIVATE KEY-----\n"} 2024-09-10T04:13:14.162 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-10T04:13:14.980 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:14 smithi120 bash[19947]: audit 2024-09-10T04:13:13.613001+0000 mgr.smithi120.xfjtcc (mgr.14164) 9 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:14.980 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:14 smithi120 bash[19947]: audit 2024-09-10T04:13:13.613001+0000 mgr.smithi120.xfjtcc (mgr.14164) 9 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:14.980 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:14 smithi120 bash[19947]: audit 2024-09-10T04:13:13.616270+0000 mon.smithi120 (mon.0) 99 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:14.980 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:14 smithi120 bash[19947]: audit 2024-09-10T04:13:13.616270+0000 mon.smithi120 (mon.0) 99 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:16.151 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-10T04:13:16.152 INFO:teuthology.orchestra.run.smithi120.stdout:Creating initial admin user... 2024-09-10T04:13:16.236 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:15 smithi120 bash[19947]: audit 2024-09-10T04:13:14.978435+0000 mon.smithi120 (mon.0) 100 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:16.236 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:15 smithi120 bash[19947]: audit 2024-09-10T04:13:14.978435+0000 mon.smithi120 (mon.0) 100 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:16.236 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:15 smithi120 bash[19947]: audit 2024-09-10T04:13:15.528829+0000 mgr.smithi120.xfjtcc (mgr.14164) 10 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:16.236 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:15 smithi120 bash[19947]: audit 2024-09-10T04:13:15.528829+0000 mgr.smithi120.xfjtcc (mgr.14164) 10 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:16.236 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:15 smithi120 bash[19947]: audit 2024-09-10T04:13:15.531600+0000 mon.smithi120 (mon.0) 101 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:16.236 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:15 smithi120 bash[19947]: audit 2024-09-10T04:13:15.531600+0000 mon.smithi120 (mon.0) 101 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:17.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:17 smithi120 bash[19947]: audit 2024-09-10T04:13:16.064722+0000 mon.smithi120 (mon.0) 102 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:17.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:17 smithi120 bash[19947]: audit 2024-09-10T04:13:16.064722+0000 mon.smithi120 (mon.0) 102 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:18.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:18 smithi120 bash[19947]: audit 2024-09-10T04:13:17.645637+0000 mgr.smithi120.xfjtcc (mgr.14164) 11 : audit [DBG] from='client.14182 -' 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-10T04:13:18.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:18 smithi120 bash[19947]: audit 2024-09-10T04:13:17.645637+0000 mgr.smithi120.xfjtcc (mgr.14164) 11 : audit [DBG] from='client.14182 -' 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-10T04:13:18.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:18 smithi120 bash[19947]: audit 2024-09-10T04:13:17.935741+0000 mon.smithi120 (mon.0) 103 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:18.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:18 smithi120 bash[19947]: audit 2024-09-10T04:13:17.935741+0000 mon.smithi120 (mon.0) 103 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:18.499 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$RoPK2MGmJAJahEtsw0dTXuxwwcGIws/P8HbdA2gl.WbitdHYS94R.", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1725941597, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-10T04:13:18.499 INFO:teuthology.orchestra.run.smithi120.stdout:Fetching dashboard port number... 2024-09-10T04:13:20.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:19 smithi120 bash[19947]: audit 2024-09-10T04:13:19.857027+0000 mon.smithi120 (mon.0) 104 : audit [DBG] from='client.? 172.21.15.120:0/3032410506' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-10T04:13:20.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:19 smithi120 bash[19947]: audit 2024-09-10T04:13:19.857027+0000 mon.smithi120 (mon.0) 104 : audit [DBG] from='client.? 172.21.15.120:0/3032410506' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-10T04:13:20.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:19 smithi120 bash[19947]: cluster 2024-09-10T04:13:19.872787+0000 mon.smithi120 (mon.0) 105 : cluster [DBG] mgrmap e14: smithi120.xfjtcc(active, since 12s) 2024-09-10T04:13:20.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:19 smithi120 bash[19947]: cluster 2024-09-10T04:13:19.872787+0000 mon.smithi120 (mon.0) 105 : cluster [DBG] mgrmap e14: smithi120.xfjtcc(active, since 12s) 2024-09-10T04:13:20.441 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stdout 8443 2024-09-10T04:13:20.442 INFO:teuthology.orchestra.run.smithi120.stdout:firewalld does not appear to be present 2024-09-10T04:13:20.442 INFO:teuthology.orchestra.run.smithi120.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-10T04:13:20.445 INFO:teuthology.orchestra.run.smithi120.stdout:Ceph Dashboard is now available at: 2024-09-10T04:13:20.445 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:20.445 INFO:teuthology.orchestra.run.smithi120.stdout: URL: https://smithi120.front.sepia.ceph.com:8443/ 2024-09-10T04:13:20.445 INFO:teuthology.orchestra.run.smithi120.stdout: User: admin 2024-09-10T04:13:20.445 INFO:teuthology.orchestra.run.smithi120.stdout: Password: im23ydk5dm 2024-09-10T04:13:20.445 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:20.446 INFO:teuthology.orchestra.run.smithi120.stdout:Saving cluster configuration to /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config directory 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout:Or, if you are only running a single cluster on this host: 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-10T04:13:23.155 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:23.156 INFO:teuthology.orchestra.run.smithi120.stdout: ceph telemetry on 2024-09-10T04:13:23.156 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:23.156 INFO:teuthology.orchestra.run.smithi120.stdout:For more information see: 2024-09-10T04:13:23.156 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:23.156 INFO:teuthology.orchestra.run.smithi120.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-10T04:13:23.156 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:13:23.156 INFO:teuthology.orchestra.run.smithi120.stdout:Bootstrap complete. 2024-09-10T04:13:23.215 INFO:tasks.cephadm:Fetching config... 2024-09-10T04:13:23.215 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:13:23.215 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-10T04:13:23.220 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-10T04:13:23.220 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:13:23.221 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-10T04:13:23.270 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-10T04:13:23.270 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:13:23.270 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/keyring of=/dev/stdout 2024-09-10T04:13:23.323 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-10T04:13:23.323 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:13:23.323 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-10T04:13:23.370 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-10T04:13:23.370 DEBUG:teuthology.orchestra.run.smithi120:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCf6mQarJaN0UxEOis4HuZffJTJCTX9DLJc+PmoWLuuY4GTsfMcrMWMl4fvEBuNnh5wH/tkTDqenaGuf/2BctZ5DSZkqPSmCeSvWHerEEbvO+Ba4nWPOezMBCP+4n+9rfa8bvb4ak8+Zums6S2SY/yfFy5jqvwHVyDSk43i3wUiwach9bZ2cUplFucJf1AhO1vI3BK7dPamKv1cV67fkeF1TlkTX29fphSEkIaJj2Ro/yjAZ698ld4nvpwUwbiJHNCUo1pnDzm7VH20V/fcghbQjuHAgFtjHio6+M+DsJ8JR4bCYOMwpSXSpMzSKy8TnWThmJ9uubXwKX7FCWZ/ln0s4jRCwJXPAvW2O3CDh41hCEpP92ZxQ95A0I+MYpr3/9kwOGQdVaf9xnpnhc4jh9jZU8MiGwqUA1mZbLEXOetuGml1/shs+Us6otE46noR9HtJXbb6zZLEp2kIVQWMhZIyblQxgivz7Pi/abiNkqy8G9KLtnG9RwwkYQjwgryjg/U= ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-10T04:13:23.437 INFO:teuthology.orchestra.run.smithi120.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCf6mQarJaN0UxEOis4HuZffJTJCTX9DLJc+PmoWLuuY4GTsfMcrMWMl4fvEBuNnh5wH/tkTDqenaGuf/2BctZ5DSZkqPSmCeSvWHerEEbvO+Ba4nWPOezMBCP+4n+9rfa8bvb4ak8+Zums6S2SY/yfFy5jqvwHVyDSk43i3wUiwach9bZ2cUplFucJf1AhO1vI3BK7dPamKv1cV67fkeF1TlkTX29fphSEkIaJj2Ro/yjAZ698ld4nvpwUwbiJHNCUo1pnDzm7VH20V/fcghbQjuHAgFtjHio6+M+DsJ8JR4bCYOMwpSXSpMzSKy8TnWThmJ9uubXwKX7FCWZ/ln0s4jRCwJXPAvW2O3CDh41hCEpP92ZxQ95A0I+MYpr3/9kwOGQdVaf9xnpnhc4jh9jZU8MiGwqUA1mZbLEXOetuGml1/shs+Us6otE46noR9HtJXbb6zZLEp2kIVQWMhZIyblQxgivz7Pi/abiNkqy8G9KLtnG9RwwkYQjwgryjg/U= ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:13:23.446 DEBUG:teuthology.orchestra.run.smithi151:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCf6mQarJaN0UxEOis4HuZffJTJCTX9DLJc+PmoWLuuY4GTsfMcrMWMl4fvEBuNnh5wH/tkTDqenaGuf/2BctZ5DSZkqPSmCeSvWHerEEbvO+Ba4nWPOezMBCP+4n+9rfa8bvb4ak8+Zums6S2SY/yfFy5jqvwHVyDSk43i3wUiwach9bZ2cUplFucJf1AhO1vI3BK7dPamKv1cV67fkeF1TlkTX29fphSEkIaJj2Ro/yjAZ698ld4nvpwUwbiJHNCUo1pnDzm7VH20V/fcghbQjuHAgFtjHio6+M+DsJ8JR4bCYOMwpSXSpMzSKy8TnWThmJ9uubXwKX7FCWZ/ln0s4jRCwJXPAvW2O3CDh41hCEpP92ZxQ95A0I+MYpr3/9kwOGQdVaf9xnpnhc4jh9jZU8MiGwqUA1mZbLEXOetuGml1/shs+Us6otE46noR9HtJXbb6zZLEp2kIVQWMhZIyblQxgivz7Pi/abiNkqy8G9KLtnG9RwwkYQjwgryjg/U= ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-10T04:13:23.469 INFO:teuthology.orchestra.run.smithi151.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCf6mQarJaN0UxEOis4HuZffJTJCTX9DLJc+PmoWLuuY4GTsfMcrMWMl4fvEBuNnh5wH/tkTDqenaGuf/2BctZ5DSZkqPSmCeSvWHerEEbvO+Ba4nWPOezMBCP+4n+9rfa8bvb4ak8+Zums6S2SY/yfFy5jqvwHVyDSk43i3wUiwach9bZ2cUplFucJf1AhO1vI3BK7dPamKv1cV67fkeF1TlkTX29fphSEkIaJj2Ro/yjAZ698ld4nvpwUwbiJHNCUo1pnDzm7VH20V/fcghbQjuHAgFtjHio6+M+DsJ8JR4bCYOMwpSXSpMzSKy8TnWThmJ9uubXwKX7FCWZ/ln0s4jRCwJXPAvW2O3CDh41hCEpP92ZxQ95A0I+MYpr3/9kwOGQdVaf9xnpnhc4jh9jZU8MiGwqUA1mZbLEXOetuGml1/shs+Us6otE46noR9HtJXbb6zZLEp2kIVQWMhZIyblQxgivz7Pi/abiNkqy8G9KLtnG9RwwkYQjwgryjg/U= ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:13:23.478 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-10T04:13:23.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:23 smithi120 bash[19947]: audit 2024-09-10T04:13:22.496510+0000 mon.smithi120 (mon.0) 106 : audit [INF] from='client.? 172.21.15.120:0/4002649981' entity='client.admin' 2024-09-10T04:13:23.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:23 smithi120 bash[19947]: audit 2024-09-10T04:13:22.496510+0000 mon.smithi120 (mon.0) 106 : audit [INF] from='client.? 172.21.15.120:0/4002649981' entity='client.admin' 2024-09-10T04:13:27.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.388738+0000 mon.smithi120 (mon.0) 107 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.388738+0000 mon.smithi120 (mon.0) 107 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.394633+0000 mon.smithi120 (mon.0) 108 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.394633+0000 mon.smithi120 (mon.0) 108 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.396489+0000 mon.smithi120 (mon.0) 109 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.396489+0000 mon.smithi120 (mon.0) 109 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.401671+0000 mon.smithi120 (mon.0) 110 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.401671+0000 mon.smithi120 (mon.0) 110 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.404039+0000 mon.smithi120 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 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-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.404039+0000 mon.smithi120 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 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-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.405434+0000 mon.smithi120 (mon.0) 112 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 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-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.405434+0000 mon.smithi120 (mon.0) 112 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 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-10T04:13:27.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.408222+0000 mon.smithi120 (mon.0) 113 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:13:27.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: audit 2024-09-10T04:13:26.408222+0000 mon.smithi120 (mon.0) 113 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:13:27.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: cephadm 2024-09-10T04:13:26.409536+0000 mgr.smithi120.xfjtcc (mgr.14164) 12 : cephadm [INF] Deploying daemon ceph-exporter.smithi120 on smithi120 2024-09-10T04:13:27.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:27 smithi120 bash[19947]: cephadm 2024-09-10T04:13:26.409536+0000 mgr.smithi120.xfjtcc (mgr.14164) 12 : cephadm [INF] Deploying daemon ceph-exporter.smithi120 on smithi120 2024-09-10T04:13:29.332 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:13:29.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:29 smithi120 bash[19947]: cluster 2024-09-10T04:13:27.727910+0000 mgr.smithi120.xfjtcc (mgr.14164) 13 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:29.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:29 smithi120 bash[19947]: cluster 2024-09-10T04:13:27.727910+0000 mgr.smithi120.xfjtcc (mgr.14164) 13 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:31.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:31 smithi120 bash[19947]: cluster 2024-09-10T04:13:29.728353+0000 mgr.smithi120.xfjtcc (mgr.14164) 14 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:31.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:31 smithi120 bash[19947]: cluster 2024-09-10T04:13:29.728353+0000 mgr.smithi120.xfjtcc (mgr.14164) 14 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:31.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:31 smithi120 bash[19947]: audit 2024-09-10T04:13:31.134167+0000 mon.smithi120 (mon.0) 114 : audit [INF] from='client.? 172.21.15.120:0/2615314774' entity='client.admin' 2024-09-10T04:13:31.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:31 smithi120 bash[19947]: audit 2024-09-10T04:13:31.134167+0000 mon.smithi120 (mon.0) 114 : audit [INF] from='client.? 172.21.15.120:0/2615314774' entity='client.admin' 2024-09-10T04:13:31.996 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-10T04:13:31.997 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-10T04:13:32.247 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:32 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:13:32.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:32 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: cluster 2024-09-10T04:13:31.728757+0000 mgr.smithi120.xfjtcc (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: cluster 2024-09-10T04:13:31.728757+0000 mgr.smithi120.xfjtcc (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.393944+0000 mon.smithi120 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.393944+0000 mon.smithi120 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.396231+0000 mon.smithi120 (mon.0) 116 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.396231+0000 mon.smithi120 (mon.0) 116 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.398549+0000 mon.smithi120 (mon.0) 117 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.398549+0000 mon.smithi120 (mon.0) 117 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.400603+0000 mon.smithi120 (mon.0) 118 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.400603+0000 mon.smithi120 (mon.0) 118 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.401676+0000 mon.smithi120 (mon.0) 119 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.401676+0000 mon.smithi120 (mon.0) 119 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.402419+0000 mon.smithi120 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.402419+0000 mon.smithi120 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.404177+0000 mon.smithi120 (mon.0) 121 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:32.404177+0000 mon.smithi120 (mon.0) 121 : audit [DBG] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: cephadm 2024-09-10T04:13:32.404916+0000 mgr.smithi120.xfjtcc (mgr.14164) 16 : cephadm [INF] Deploying daemon crash.smithi120 on smithi120 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: cephadm 2024-09-10T04:13:32.404916+0000 mgr.smithi120.xfjtcc (mgr.14164) 16 : cephadm [INF] Deploying daemon crash.smithi120 on smithi120 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:33.057770+0000 mon.smithi120 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:33.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:33 smithi120 bash[19947]: audit 2024-09-10T04:13:33.057770+0000 mon.smithi120 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:35.352 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:35 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:13:35.713 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:35 smithi120 bash[19947]: cluster 2024-09-10T04:13:33.729178+0000 mgr.smithi120.xfjtcc (mgr.14164) 17 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:35.713 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:35 smithi120 bash[19947]: cluster 2024-09-10T04:13:33.729178+0000 mgr.smithi120.xfjtcc (mgr.14164) 17 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:35.714 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:35 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:13:36.719 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:13:36.727 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:13:36.727 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: audit 2024-09-10T04:13:35.645363+0000 mon.smithi120 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:36.727 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: audit 2024-09-10T04:13:35.645363+0000 mon.smithi120 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:36.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: audit 2024-09-10T04:13:35.648613+0000 mon.smithi120 (mon.0) 124 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:36.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: audit 2024-09-10T04:13:35.648613+0000 mon.smithi120 (mon.0) 124 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:36.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: audit 2024-09-10T04:13:35.651686+0000 mon.smithi120 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:36.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: audit 2024-09-10T04:13:35.651686+0000 mon.smithi120 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:36.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: audit 2024-09-10T04:13:35.654525+0000 mon.smithi120 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:36.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: audit 2024-09-10T04:13:35.654525+0000 mon.smithi120 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:36.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: cephadm 2024-09-10T04:13:35.655745+0000 mgr.smithi120.xfjtcc (mgr.14164) 18 : cephadm [INF] Deploying daemon node-exporter.smithi120 on smithi120 2024-09-10T04:13:36.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:36 smithi120 bash[19947]: cephadm 2024-09-10T04:13:35.655745+0000 mgr.smithi120.xfjtcc (mgr.14164) 18 : cephadm [INF] Deploying daemon node-exporter.smithi120 on smithi120 2024-09-10T04:13:37.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:13:38.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: cluster 2024-09-10T04:13:35.729572+0000 mgr.smithi120.xfjtcc (mgr.14164) 19 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:38.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: cluster 2024-09-10T04:13:35.729572+0000 mgr.smithi120.xfjtcc (mgr.14164) 19 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:38.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: audit 2024-09-10T04:13:37.178810+0000 mon.smithi120 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: audit 2024-09-10T04:13:37.178810+0000 mon.smithi120 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: audit 2024-09-10T04:13:37.181096+0000 mon.smithi120 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: audit 2024-09-10T04:13:37.181096+0000 mon.smithi120 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: audit 2024-09-10T04:13:37.183380+0000 mon.smithi120 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: audit 2024-09-10T04:13:37.183380+0000 mon.smithi120 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: audit 2024-09-10T04:13:37.185372+0000 mon.smithi120 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:37 smithi120 bash[19947]: audit 2024-09-10T04:13:37.185372+0000 mon.smithi120 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.839 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:38 smithi120 bash[19947]: cephadm 2024-09-10T04:13:37.194269+0000 mgr.smithi120.xfjtcc (mgr.14164) 20 : cephadm [INF] Deploying daemon alertmanager.smithi120 on smithi120 2024-09-10T04:13:38.839 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:38 smithi120 bash[19947]: cephadm 2024-09-10T04:13:37.194269+0000 mgr.smithi120.xfjtcc (mgr.14164) 20 : cephadm [INF] Deploying daemon alertmanager.smithi120 on smithi120 2024-09-10T04:13:38.839 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:38 smithi120 bash[19947]: audit 2024-09-10T04:13:38.064138+0000 mon.smithi120 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.840 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:38 smithi120 bash[19947]: audit 2024-09-10T04:13:38.064138+0000 mon.smithi120 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.840 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:38 smithi120 bash[19947]: audit 2024-09-10T04:13:38.618239+0000 mon.smithi120 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:38.840 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:38 smithi120 bash[19947]: audit 2024-09-10T04:13:38.618239+0000 mon.smithi120 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:39.962 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:39 smithi120 bash[19947]: cluster 2024-09-10T04:13:37.729867+0000 mgr.smithi120.xfjtcc (mgr.14164) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:39.963 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:39 smithi120 bash[19947]: cluster 2024-09-10T04:13:37.729867+0000 mgr.smithi120.xfjtcc (mgr.14164) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:39.963 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:39 smithi120 bash[19947]: audit 2024-09-10T04:13:38.614885+0000 mgr.smithi120.xfjtcc (mgr.14164) 22 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:39.963 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:39 smithi120 bash[19947]: audit 2024-09-10T04:13:38.614885+0000 mgr.smithi120.xfjtcc (mgr.14164) 22 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:39.964 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi151 2024-09-10T04:13:39.964 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:13:39.964 DEBUG:teuthology.orchestra.run.smithi151:> dd of=/etc/ceph/ceph.conf 2024-09-10T04:13:39.970 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:13:39.970 DEBUG:teuthology.orchestra.run.smithi151:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:13:40.018 INFO:tasks.cephadm:Adding host smithi151 to orchestrator... 2024-09-10T04:13:40.018 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph orch host add smithi151 2024-09-10T04:13:42.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:41 smithi120 bash[19947]: cluster 2024-09-10T04:13:39.730248+0000 mgr.smithi120.xfjtcc (mgr.14164) 23 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:42.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:41 smithi120 bash[19947]: cluster 2024-09-10T04:13:39.730248+0000 mgr.smithi120.xfjtcc (mgr.14164) 23 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:44.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:43 smithi120 bash[19947]: cluster 2024-09-10T04:13:41.730676+0000 mgr.smithi120.xfjtcc (mgr.14164) 24 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:44.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:43 smithi120 bash[19947]: cluster 2024-09-10T04:13:41.730676+0000 mgr.smithi120.xfjtcc (mgr.14164) 24 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:44.804 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:13:45.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:45 smithi120 bash[19947]: cluster 2024-09-10T04:13:43.731196+0000 mgr.smithi120.xfjtcc (mgr.14164) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:45.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:45 smithi120 bash[19947]: cluster 2024-09-10T04:13:43.731196+0000 mgr.smithi120.xfjtcc (mgr.14164) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:47.791 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:47 smithi120 bash[19947]: cluster 2024-09-10T04:13:45.731634+0000 mgr.smithi120.xfjtcc (mgr.14164) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:47.791 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:47 smithi120 bash[19947]: cluster 2024-09-10T04:13:45.731634+0000 mgr.smithi120.xfjtcc (mgr.14164) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:47.791 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:47 smithi120 bash[19947]: audit 2024-09-10T04:13:46.612441+0000 mgr.smithi120.xfjtcc (mgr.14164) 27 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi151", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:47.791 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:47 smithi120 bash[19947]: audit 2024-09-10T04:13:46.612441+0000 mgr.smithi120.xfjtcc (mgr.14164) 27 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi151", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:13:48.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:48 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:13:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:48 smithi120 bash[19947]: cephadm 2024-09-10T04:13:47.589111+0000 mgr.smithi120.xfjtcc (mgr.14164) 28 : cephadm [INF] Deploying cephadm binary to smithi151 2024-09-10T04:13:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:48 smithi120 bash[19947]: cephadm 2024-09-10T04:13:47.589111+0000 mgr.smithi120.xfjtcc (mgr.14164) 28 : cephadm [INF] Deploying cephadm binary to smithi151 2024-09-10T04:13:48.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:48 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:13:50.026 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:49 smithi120 bash[19947]: cluster 2024-09-10T04:13:47.732022+0000 mgr.smithi120.xfjtcc (mgr.14164) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:50.027 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:49 smithi120 bash[19947]: cluster 2024-09-10T04:13:47.732022+0000 mgr.smithi120.xfjtcc (mgr.14164) 29 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:51.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: cluster 2024-09-10T04:13:49.732432+0000 mgr.smithi120.xfjtcc (mgr.14164) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:51.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: cluster 2024-09-10T04:13:49.732432+0000 mgr.smithi120.xfjtcc (mgr.14164) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:51.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:49.732838+0000 mon.smithi120 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:49.732838+0000 mon.smithi120 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:49.740950+0000 mon.smithi120 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:49.740950+0000 mon.smithi120 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:49.749982+0000 mon.smithi120 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:49.749982+0000 mon.smithi120 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:49.757658+0000 mon.smithi120 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:49.757658+0000 mon.smithi120 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: cephadm 2024-09-10T04:13:49.759047+0000 mgr.smithi120.xfjtcc (mgr.14164) 31 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: cephadm 2024-09-10T04:13:49.759047+0000 mgr.smithi120.xfjtcc (mgr.14164) 31 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.581727+0000 mon.smithi120 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.581727+0000 mon.smithi120 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.586854+0000 mon.smithi120 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.586854+0000 mon.smithi120 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.589022+0000 mon.smithi120 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.589022+0000 mon.smithi120 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.589476+0000 mgr.smithi120.xfjtcc (mgr.14164) 32 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.589476+0000 mgr.smithi120.xfjtcc (mgr.14164) 32 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.591587+0000 mon.smithi120 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.591587+0000 mon.smithi120 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.601919+0000 mon.smithi120 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.601919+0000 mon.smithi120 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.604769+0000 mon.smithi120 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: audit 2024-09-10T04:13:50.604769+0000 mon.smithi120 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: cephadm 2024-09-10T04:13:50.621909+0000 mgr.smithi120.xfjtcc (mgr.14164) 33 : cephadm [INF] Deploying daemon grafana.smithi120 on smithi120 2024-09-10T04:13:51.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:50 smithi120 bash[19947]: cephadm 2024-09-10T04:13:50.621909+0000 mgr.smithi120.xfjtcc (mgr.14164) 33 : cephadm [INF] Deploying daemon grafana.smithi120 on smithi120 2024-09-10T04:13:51.355 INFO:teuthology.orchestra.run.smithi120.stdout:Added host 'smithi151' with addr '172.21.15.151' 2024-09-10T04:13:52.106 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph orch host ls --format=json 2024-09-10T04:13:52.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:52 smithi120 bash[19947]: audit 2024-09-10T04:13:51.355325+0000 mon.smithi120 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:52.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:52 smithi120 bash[19947]: audit 2024-09-10T04:13:51.355325+0000 mon.smithi120 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:52.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:52 smithi120 bash[19947]: cephadm 2024-09-10T04:13:51.355918+0000 mgr.smithi120.xfjtcc (mgr.14164) 34 : cephadm [INF] Added host smithi151 2024-09-10T04:13:52.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:52 smithi120 bash[19947]: cephadm 2024-09-10T04:13:51.355918+0000 mgr.smithi120.xfjtcc (mgr.14164) 34 : cephadm [INF] Added host smithi151 2024-09-10T04:13:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:53 smithi120 bash[19947]: cluster 2024-09-10T04:13:51.732805+0000 mgr.smithi120.xfjtcc (mgr.14164) 35 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:53 smithi120 bash[19947]: cluster 2024-09-10T04:13:51.732805+0000 mgr.smithi120.xfjtcc (mgr.14164) 35 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:53 smithi120 bash[19947]: audit 2024-09-10T04:13:53.068929+0000 mon.smithi120 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:53.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:53 smithi120 bash[19947]: audit 2024-09-10T04:13:53.068929+0000 mon.smithi120 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:13:55.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:55 smithi120 bash[19947]: cluster 2024-09-10T04:13:53.733156+0000 mgr.smithi120.xfjtcc (mgr.14164) 36 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:55.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:55 smithi120 bash[19947]: cluster 2024-09-10T04:13:53.733156+0000 mgr.smithi120.xfjtcc (mgr.14164) 36 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:56.878 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:13:57.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:57 smithi120 bash[19947]: cluster 2024-09-10T04:13:55.733539+0000 mgr.smithi120.xfjtcc (mgr.14164) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:57.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:57 smithi120 bash[19947]: cluster 2024-09-10T04:13:55.733539+0000 mgr.smithi120.xfjtcc (mgr.14164) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:59.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:59 smithi120 bash[19947]: cluster 2024-09-10T04:13:57.733923+0000 mgr.smithi120.xfjtcc (mgr.14164) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:13:59.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:13:59 smithi120 bash[19947]: cluster 2024-09-10T04:13:57.733923+0000 mgr.smithi120.xfjtcc (mgr.14164) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:01 smithi120 bash[19947]: cluster 2024-09-10T04:13:59.734435+0000 mgr.smithi120.xfjtcc (mgr.14164) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:01 smithi120 bash[19947]: cluster 2024-09-10T04:13:59.734435+0000 mgr.smithi120.xfjtcc (mgr.14164) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:01.604 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:14:01.604 INFO:teuthology.orchestra.run.smithi120.stdout:[{"addr": "172.21.15.120", "hostname": "smithi120", "labels": [], "status": ""}, {"addr": "172.21.15.151", "hostname": "smithi151", "labels": [], "status": ""}] 2024-09-10T04:14:02.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:02 smithi120 bash[19947]: audit 2024-09-10T04:14:01.604857+0000 mgr.smithi120.xfjtcc (mgr.14164) 40 : audit [DBG] from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:14:02.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:02 smithi120 bash[19947]: audit 2024-09-10T04:14:01.604857+0000 mgr.smithi120.xfjtcc (mgr.14164) 40 : audit [DBG] from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:14:03.466 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-10T04:14:03.466 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd crush tunables default 2024-09-10T04:14:03.640 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:03 smithi120 bash[19947]: cluster 2024-09-10T04:14:01.734877+0000 mgr.smithi120.xfjtcc (mgr.14164) 41 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:03.640 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:03 smithi120 bash[19947]: cluster 2024-09-10T04:14:01.734877+0000 mgr.smithi120.xfjtcc (mgr.14164) 41 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:05.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:05 smithi120 bash[19947]: cluster 2024-09-10T04:14:03.735295+0000 mgr.smithi120.xfjtcc (mgr.14164) 42 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:05.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:05 smithi120 bash[19947]: cluster 2024-09-10T04:14:03.735295+0000 mgr.smithi120.xfjtcc (mgr.14164) 42 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:07.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:07 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:14:07.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:07 smithi120 bash[19947]: cluster 2024-09-10T04:14:05.735712+0000 mgr.smithi120.xfjtcc (mgr.14164) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:07.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:07 smithi120 bash[19947]: cluster 2024-09-10T04:14:05.735712+0000 mgr.smithi120.xfjtcc (mgr.14164) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:07.494 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:07 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:14:08.221 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:14:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.543317+0000 mon.smithi120 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.543317+0000 mon.smithi120 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.545776+0000 mon.smithi120 (mon.0) 146 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.545776+0000 mon.smithi120 (mon.0) 146 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.548210+0000 mon.smithi120 (mon.0) 147 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.548210+0000 mon.smithi120 (mon.0) 147 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.550275+0000 mon.smithi120 (mon.0) 148 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.550275+0000 mon.smithi120 (mon.0) 148 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.552669+0000 mon.smithi120 (mon.0) 149 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.552669+0000 mon.smithi120 (mon.0) 149 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.555070+0000 mon.smithi120 (mon.0) 150 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.555070+0000 mon.smithi120 (mon.0) 150 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.557519+0000 mon.smithi120 (mon.0) 151 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.557519+0000 mon.smithi120 (mon.0) 151 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.559272+0000 mon.smithi120 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:07.559272+0000 mon.smithi120 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:08.075194+0000 mon.smithi120 (mon.0) 153 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:08 smithi120 bash[19947]: audit 2024-09-10T04:14:08.075194+0000 mon.smithi120 (mon.0) 153 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:09.916 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:09 smithi120 bash[19947]: cluster 2024-09-10T04:14:07.736085+0000 mgr.smithi120.xfjtcc (mgr.14164) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:09.916 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:09 smithi120 bash[19947]: cluster 2024-09-10T04:14:07.736085+0000 mgr.smithi120.xfjtcc (mgr.14164) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:09.916 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:09 smithi120 bash[19947]: cephadm 2024-09-10T04:14:07.800012+0000 mgr.smithi120.xfjtcc (mgr.14164) 45 : cephadm [INF] Deploying daemon prometheus.smithi120 on smithi120 2024-09-10T04:14:09.916 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:09 smithi120 bash[19947]: cephadm 2024-09-10T04:14:07.800012+0000 mgr.smithi120.xfjtcc (mgr.14164) 45 : cephadm [INF] Deploying daemon prometheus.smithi120 on smithi120 2024-09-10T04:14:10.623 INFO:teuthology.orchestra.run.smithi120.stderr:adjusted tunables profile to default 2024-09-10T04:14:10.706 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:10 smithi120 bash[19947]: audit 2024-09-10T04:14:10.301973+0000 mon.smithi120 (mon.0) 154 : audit [INF] from='client.? 172.21.15.120:0/24978894' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-10T04:14:10.707 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:10 smithi120 bash[19947]: audit 2024-09-10T04:14:10.301973+0000 mon.smithi120 (mon.0) 154 : audit [INF] from='client.? 172.21.15.120:0/24978894' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-10T04:14:11.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:11 smithi120 bash[19947]: cluster 2024-09-10T04:14:09.736454+0000 mgr.smithi120.xfjtcc (mgr.14164) 46 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:11.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:11 smithi120 bash[19947]: cluster 2024-09-10T04:14:09.736454+0000 mgr.smithi120.xfjtcc (mgr.14164) 46 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:11.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:11 smithi120 bash[19947]: audit 2024-09-10T04:14:10.623766+0000 mon.smithi120 (mon.0) 155 : audit [INF] from='client.? 172.21.15.120:0/24978894' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-10T04:14:11.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:11 smithi120 bash[19947]: audit 2024-09-10T04:14:10.623766+0000 mon.smithi120 (mon.0) 155 : audit [INF] from='client.? 172.21.15.120:0/24978894' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-10T04:14:11.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:11 smithi120 bash[19947]: cluster 2024-09-10T04:14:10.628516+0000 mon.smithi120 (mon.0) 156 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-10T04:14:11.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:11 smithi120 bash[19947]: cluster 2024-09-10T04:14:10.628516+0000 mon.smithi120 (mon.0) 156 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-10T04:14:13.313 INFO:tasks.cephadm:Adding mon.smithi120 on smithi120 2024-09-10T04:14:13.314 INFO:tasks.cephadm:Adding mon.smithi151 on smithi151 2024-09-10T04:14:13.314 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph orch apply mon '2;smithi120:172.21.15.120=smithi120;smithi151:172.21.15.151=smithi151' 2024-09-10T04:14:13.794 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:13 smithi120 bash[19947]: cluster 2024-09-10T04:14:11.736852+0000 mgr.smithi120.xfjtcc (mgr.14164) 47 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:13.794 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:13 smithi120 bash[19947]: cluster 2024-09-10T04:14:11.736852+0000 mgr.smithi120.xfjtcc (mgr.14164) 47 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:14.544 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:15.590 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:15.715 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:15 smithi120 bash[19947]: cluster 2024-09-10T04:14:13.737313+0000 mgr.smithi120.xfjtcc (mgr.14164) 48 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:15.715 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:15 smithi120 bash[19947]: cluster 2024-09-10T04:14:13.737313+0000 mgr.smithi120.xfjtcc (mgr.14164) 48 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:16.887 INFO:teuthology.orchestra.run.smithi151.stdout:Scheduled mon update... 2024-09-10T04:14:17.496 DEBUG:teuthology.orchestra.run.smithi151:mon.smithi151> sudo journalctl -f -n 0 -u ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi151.service 2024-09-10T04:14:17.499 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-10T04:14:17.499 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-10T04:14:17.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:17 smithi120 bash[19947]: cluster 2024-09-10T04:14:15.737769+0000 mgr.smithi120.xfjtcc (mgr.14164) 49 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:17.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:17 smithi120 bash[19947]: cluster 2024-09-10T04:14:15.737769+0000 mgr.smithi120.xfjtcc (mgr.14164) 49 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:17.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:17 smithi120 bash[19947]: audit 2024-09-10T04:14:16.886940+0000 mon.smithi120 (mon.0) 157 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:17.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:17 smithi120 bash[19947]: audit 2024-09-10T04:14:16.886940+0000 mon.smithi120 (mon.0) 157 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:18.753 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:18.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:18 smithi120 bash[19947]: audit 2024-09-10T04:14:16.878199+0000 mgr.smithi120.xfjtcc (mgr.14164) 50 : audit [DBG] from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi120:172.21.15.120=smithi120;smithi151:172.21.15.151=smithi151", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:14:18.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:18 smithi120 bash[19947]: audit 2024-09-10T04:14:16.878199+0000 mgr.smithi120.xfjtcc (mgr.14164) 50 : audit [DBG] from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi120:172.21.15.120=smithi120;smithi151:172.21.15.151=smithi151", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:14:18.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:18 smithi120 bash[19947]: cephadm 2024-09-10T04:14:16.881572+0000 mgr.smithi120.xfjtcc (mgr.14164) 51 : cephadm [INF] Saving service mon spec with placement smithi120:172.21.15.120=smithi120;smithi151:172.21.15.151=smithi151;count:2 2024-09-10T04:14:18.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:18 smithi120 bash[19947]: cephadm 2024-09-10T04:14:16.881572+0000 mgr.smithi120.xfjtcc (mgr.14164) 51 : cephadm [INF] Saving service mon spec with placement smithi120:172.21.15.120=smithi120;smithi151:172.21.15.151=smithi151;count:2 2024-09-10T04:14:19.801 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:20.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:19 smithi120 bash[19947]: cluster 2024-09-10T04:14:17.738175+0000 mgr.smithi120.xfjtcc (mgr.14164) 52 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:20.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:19 smithi120 bash[19947]: cluster 2024-09-10T04:14:17.738175+0000 mgr.smithi120.xfjtcc (mgr.14164) 52 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:21.145 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-10T04:14:21.145 INFO:teuthology.orchestra.run.smithi151.stdout:{"epoch":1,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","modified":"2024-09-10T04:11:45.906709Z","created":"2024-09-10T04:11:45.906709Z","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":"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]} 2024-09-10T04:14:21.146 INFO:teuthology.orchestra.run.smithi151.stderr:dumped monmap epoch 1 2024-09-10T04:14:21.919 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:21 smithi120 bash[19947]: cluster 2024-09-10T04:14:19.738617+0000 mgr.smithi120.xfjtcc (mgr.14164) 53 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:21.919 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:21 smithi120 bash[19947]: cluster 2024-09-10T04:14:19.738617+0000 mgr.smithi120.xfjtcc (mgr.14164) 53 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:21.919 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:21 smithi120 bash[19947]: audit 2024-09-10T04:14:21.145779+0000 mon.smithi120 (mon.0) 158 : audit [DBG] from='client.? 172.21.15.151:0/1061573076' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:21.919 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:21 smithi120 bash[19947]: audit 2024-09-10T04:14:21.145779+0000 mon.smithi120 (mon.0) 158 : audit [DBG] from='client.? 172.21.15.151:0/1061573076' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:22.715 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-10T04:14:22.716 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-10T04:14:23.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:23 smithi120 bash[19947]: cluster 2024-09-10T04:14:21.739078+0000 mgr.smithi120.xfjtcc (mgr.14164) 54 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:23.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:23 smithi120 bash[19947]: cluster 2024-09-10T04:14:21.739078+0000 mgr.smithi120.xfjtcc (mgr.14164) 54 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:23.943 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:24.990 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:25.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:25 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:14:25.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:25 smithi120 bash[19947]: cluster 2024-09-10T04:14:23.739570+0000 mgr.smithi120.xfjtcc (mgr.14164) 55 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:25.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:25 smithi120 bash[19947]: cluster 2024-09-10T04:14:23.739570+0000 mgr.smithi120.xfjtcc (mgr.14164) 55 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:26.094 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:25 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:14:26.298 INFO:teuthology.orchestra.run.smithi151.stderr:dumped monmap epoch 1 2024-09-10T04:14:26.299 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-10T04:14:26.299 INFO:teuthology.orchestra.run.smithi151.stdout:{"epoch":1,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","modified":"2024-09-10T04:11:45.906709Z","created":"2024-09-10T04:11:45.906709Z","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":"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]} 2024-09-10T04:14:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: cluster 2024-09-10T04:14:25.739891+0000 mgr.smithi120.xfjtcc (mgr.14164) 56 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: cluster 2024-09-10T04:14:25.739891+0000 mgr.smithi120.xfjtcc (mgr.14164) 56 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.018004+0000 mon.smithi120 (mon.0) 159 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.018004+0000 mon.smithi120 (mon.0) 159 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.020696+0000 mon.smithi120 (mon.0) 160 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.020696+0000 mon.smithi120 (mon.0) 160 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.023278+0000 mon.smithi120 (mon.0) 161 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:27.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.023278+0000 mon.smithi120 (mon.0) 161 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:27.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.025658+0000 mon.smithi120 (mon.0) 162 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-10T04:14:27.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.025658+0000 mon.smithi120 (mon.0) 162 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-10T04:14:27.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.299016+0000 mon.smithi120 (mon.0) 163 : audit [DBG] from='client.? 172.21.15.151:0/3999250836' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:27.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:27 smithi120 bash[19947]: audit 2024-09-10T04:14:26.299016+0000 mon.smithi120 (mon.0) 163 : audit [DBG] from='client.? 172.21.15.151:0/3999250836' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:27.859 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-10T04:14:27.859 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-10T04:14:28.194 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:28 smithi120 bash[19947]: audit 2024-09-10T04:14:27.024381+0000 mon.smithi120 (mon.0) 164 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-10T04:14:28.194 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:28 smithi120 bash[19947]: audit 2024-09-10T04:14:27.024381+0000 mon.smithi120 (mon.0) 164 : audit [INF] from='mgr.14164 172.21.15.120:0/2426189018' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-10T04:14:28.194 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:28 smithi120 bash[19947]: cluster 2024-09-10T04:14:27.029741+0000 mon.smithi120 (mon.0) 165 : cluster [DBG] mgrmap e15: smithi120.xfjtcc(active, since 79s) 2024-09-10T04:14:28.194 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:28 smithi120 bash[19947]: cluster 2024-09-10T04:14:27.029741+0000 mon.smithi120 (mon.0) 165 : cluster [DBG] mgrmap e15: smithi120.xfjtcc(active, since 79s) 2024-09-10T04:14:29.084 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:30.130 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:31.574 INFO:teuthology.orchestra.run.smithi151.stderr:dumped monmap epoch 1 2024-09-10T04:14:31.574 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-10T04:14:31.574 INFO:teuthology.orchestra.run.smithi151.stdout:{"epoch":1,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","modified":"2024-09-10T04:11:45.906709Z","created":"2024-09-10T04:11:45.906709Z","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":"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]} 2024-09-10T04:14:31.647 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:31 smithi120 bash[19947]: audit 2024-09-10T04:14:31.574447+0000 mon.smithi120 (mon.0) 166 : audit [DBG] from='client.? 172.21.15.151:0/517799938' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:31.647 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:31 smithi120 bash[19947]: audit 2024-09-10T04:14:31.574447+0000 mon.smithi120 (mon.0) 166 : audit [DBG] from='client.? 172.21.15.151:0/517799938' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:33.067 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-10T04:14:33.068 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.313871+0000 mon.smithi120 (mon.0) 167 : cluster [INF] Active manager daemon smithi120.xfjtcc restarted 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.313871+0000 mon.smithi120 (mon.0) 167 : cluster [INF] Active manager daemon smithi120.xfjtcc restarted 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.314344+0000 mon.smithi120 (mon.0) 168 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.314344+0000 mon.smithi120 (mon.0) 168 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.323796+0000 mon.smithi120 (mon.0) 169 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.323796+0000 mon.smithi120 (mon.0) 169 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.323992+0000 mon.smithi120 (mon.0) 170 : cluster [DBG] mgrmap e16: smithi120.xfjtcc(active, starting, since 0.00984749s) 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.323992+0000 mon.smithi120 (mon.0) 170 : cluster [DBG] mgrmap e16: smithi120.xfjtcc(active, starting, since 0.00984749s) 2024-09-10T04:14:33.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.325757+0000 mon.smithi120 (mon.0) 171 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.325757+0000 mon.smithi120 (mon.0) 171 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.327057+0000 mon.smithi120 (mon.0) 172 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.327057+0000 mon.smithi120 (mon.0) 172 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.328264+0000 mon.smithi120 (mon.0) 173 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.328264+0000 mon.smithi120 (mon.0) 173 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.328431+0000 mon.smithi120 (mon.0) 174 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.328431+0000 mon.smithi120 (mon.0) 174 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.328572+0000 mon.smithi120 (mon.0) 175 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: audit 2024-09-10T04:14:33.328572+0000 mon.smithi120 (mon.0) 175 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.358516+0000 mon.smithi120 (mon.0) 176 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:14:33.484 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:33 smithi120 bash[19947]: cluster 2024-09-10T04:14:33.358516+0000 mon.smithi120 (mon.0) 176 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:14:34.287 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:34.557 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.633542+0000 mon.smithi120 (mon.0) 177 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:14:34.557 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.633542+0000 mon.smithi120 (mon.0) 177 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:14:34.557 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.647604+0000 mon.smithi120 (mon.0) 178 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:34.557 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.647604+0000 mon.smithi120 (mon.0) 178 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.650852+0000 mon.smithi120 (mon.0) 179 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.650852+0000 mon.smithi120 (mon.0) 179 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.651133+0000 mon.smithi120 (mon.0) 180 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.651133+0000 mon.smithi120 (mon.0) 180 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.660395+0000 mon.smithi120 (mon.0) 181 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.660395+0000 mon.smithi120 (mon.0) 181 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.664733+0000 mon.smithi120 (mon.0) 182 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: audit 2024-09-10T04:14:33.664733+0000 mon.smithi120 (mon.0) 182 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: cluster 2024-09-10T04:14:34.326237+0000 mon.smithi120 (mon.0) 183 : cluster [DBG] mgrmap e17: smithi120.xfjtcc(active, since 1.0121s) 2024-09-10T04:14:34.558 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:34 smithi120 bash[19947]: cluster 2024-09-10T04:14:34.326237+0000 mon.smithi120 (mon.0) 183 : cluster [DBG] mgrmap e17: smithi120.xfjtcc(active, since 1.0121s) 2024-09-10T04:14:35.327 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:35.611 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: audit 2024-09-10T04:14:34.390016+0000 mon.smithi120 (mon.0) 184 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:35.611 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: audit 2024-09-10T04:14:34.390016+0000 mon.smithi120 (mon.0) 184 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.569722+0000 mgr.smithi120.xfjtcc (mgr.14205) 2 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Bus STARTING 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.569722+0000 mgr.smithi120.xfjtcc (mgr.14205) 2 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Bus STARTING 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.689342+0000 mgr.smithi120.xfjtcc (mgr.14205) 3 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Serving on https://172.21.15.120:7150 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.689342+0000 mgr.smithi120.xfjtcc (mgr.14205) 3 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Serving on https://172.21.15.120:7150 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.692526+0000 mgr.smithi120.xfjtcc (mgr.14205) 4 : cephadm [ERR] [10/Sep/2024:04:14:34] ENGINE Error in HTTPServer.serve 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: Traceback (most recent call last): 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: self._connections.run(self.expiration_interval) 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: self._run(expiration_interval) 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: new_conn = self._from_server_socket(self.server.socket) 2024-09-10T04:14:35.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: s = self.context.wrap_socket( 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: return self.sslsocket_class._create( 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: self.do_handshake() 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: self._sslobj.do_handshake() 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.692526+0000 mgr.smithi120.xfjtcc (mgr.14205) 4 : cephadm [ERR] [10/Sep/2024:04:14:34] ENGINE Error in HTTPServer.serve 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: Traceback (most recent call last): 2024-09-10T04:14:35.613 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: self._connections.run(self.expiration_interval) 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: self._run(expiration_interval) 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: new_conn = self._from_server_socket(self.server.socket) 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: s = self.context.wrap_socket( 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: return self.sslsocket_class._create( 2024-09-10T04:14:35.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-10T04:14:35.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: self.do_handshake() 2024-09-10T04:14:35.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-10T04:14:35.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: self._sslobj.do_handshake() 2024-09-10T04:14:35.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-10T04:14:35.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.790548+0000 mgr.smithi120.xfjtcc (mgr.14205) 5 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Serving on http://172.21.15.120:8765 2024-09-10T04:14:35.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.790548+0000 mgr.smithi120.xfjtcc (mgr.14205) 5 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Serving on http://172.21.15.120:8765 2024-09-10T04:14:35.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.790654+0000 mgr.smithi120.xfjtcc (mgr.14205) 6 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Bus STARTED 2024-09-10T04:14:35.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:35 smithi120 bash[19947]: cephadm 2024-09-10T04:14:34.790654+0000 mgr.smithi120.xfjtcc (mgr.14205) 6 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Bus STARTED 2024-09-10T04:14:36.647 INFO:teuthology.orchestra.run.smithi151.stderr:dumped monmap epoch 1 2024-09-10T04:14:36.647 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-10T04:14:36.647 INFO:teuthology.orchestra.run.smithi151.stdout:{"epoch":1,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","modified":"2024-09-10T04:11:45.906709Z","created":"2024-09-10T04:11:45.906709Z","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":"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]} 2024-09-10T04:14:36.663 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:36 smithi120 bash[19947]: cluster 2024-09-10T04:14:35.403885+0000 mon.smithi120 (mon.0) 185 : cluster [DBG] mgrmap e18: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:14:36.663 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:36 smithi120 bash[19947]: cluster 2024-09-10T04:14:35.403885+0000 mon.smithi120 (mon.0) 185 : cluster [DBG] mgrmap e18: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:14:36.663 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:36 smithi120 bash[19947]: audit 2024-09-10T04:14:35.909345+0000 mon.smithi120 (mon.0) 186 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:36.663 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:36 smithi120 bash[19947]: audit 2024-09-10T04:14:35.909345+0000 mon.smithi120 (mon.0) 186 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:37.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:37 smithi120 bash[19947]: audit 2024-09-10T04:14:36.647119+0000 mon.smithi120 (mon.0) 187 : audit [DBG] from='client.? 172.21.15.151:0/107900315' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:37.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:37 smithi120 bash[19947]: audit 2024-09-10T04:14:36.647119+0000 mon.smithi120 (mon.0) 187 : audit [DBG] from='client.? 172.21.15.151:0/107900315' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:37.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:37 smithi120 bash[19947]: audit 2024-09-10T04:14:37.091429+0000 mon.smithi120 (mon.0) 188 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:37.483 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:37 smithi120 bash[19947]: audit 2024-09-10T04:14:37.091429+0000 mon.smithi120 (mon.0) 188 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:38.161 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-10T04:14:38.161 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-10T04:14:39.386 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:40.497 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-10T04:14:40.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:40 smithi120 bash[19947]: audit 2024-09-10T04:14:39.703940+0000 mon.smithi120 (mon.0) 189 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:40.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:40 smithi120 bash[19947]: audit 2024-09-10T04:14:39.703940+0000 mon.smithi120 (mon.0) 189 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:40.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:40 smithi120 bash[19947]: audit 2024-09-10T04:14:39.707357+0000 mon.smithi120 (mon.0) 190 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:40.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:40 smithi120 bash[19947]: audit 2024-09-10T04:14:39.707357+0000 mon.smithi120 (mon.0) 190 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:42.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:41 smithi120 bash[19947]: audit 2024-09-10T04:14:40.770883+0000 mon.smithi120 (mon.0) 191 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:42.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:41 smithi120 bash[19947]: audit 2024-09-10T04:14:40.770883+0000 mon.smithi120 (mon.0) 191 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:42.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:41 smithi120 bash[19947]: audit 2024-09-10T04:14:40.776371+0000 mon.smithi120 (mon.0) 192 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:42.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:41 smithi120 bash[19947]: audit 2024-09-10T04:14:40.776371+0000 mon.smithi120 (mon.0) 192 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:42.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:41 smithi120 bash[19947]: audit 2024-09-10T04:14:40.778975+0000 mon.smithi120 (mon.0) 193 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-10T04:14:42.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:41 smithi120 bash[19947]: audit 2024-09-10T04:14:40.778975+0000 mon.smithi120 (mon.0) 193 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-10T04:14:42.043 INFO:teuthology.orchestra.run.smithi151.stderr:dumped monmap epoch 1 2024-09-10T04:14:42.044 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-10T04:14:42.044 INFO:teuthology.orchestra.run.smithi151.stdout:{"epoch":1,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","modified":"2024-09-10T04:11:45.906709Z","created":"2024-09-10T04:11:45.906709Z","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":"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]} 2024-09-10T04:14:43.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:42 smithi120 bash[19947]: audit 2024-09-10T04:14:42.044301+0000 mon.smithi120 (mon.0) 194 : audit [DBG] from='client.? 172.21.15.151:0/2363667744' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:43.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:42 smithi120 bash[19947]: audit 2024-09-10T04:14:42.044301+0000 mon.smithi120 (mon.0) 194 : audit [DBG] from='client.? 172.21.15.151:0/2363667744' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:43.773 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-10T04:14:43.773 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-10T04:14:44.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.096802+0000 mon.smithi120 (mon.0) 195 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.096802+0000 mon.smithi120 (mon.0) 195 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.102389+0000 mon.smithi120 (mon.0) 196 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.102389+0000 mon.smithi120 (mon.0) 196 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.109589+0000 mon.smithi120 (mon.0) 197 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.109589+0000 mon.smithi120 (mon.0) 197 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.115067+0000 mon.smithi120 (mon.0) 198 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.115067+0000 mon.smithi120 (mon.0) 198 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.116753+0000 mon.smithi120 (mon.0) 199 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi151", "name": "osd_memory_target"} : dispatch 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.116753+0000 mon.smithi120 (mon.0) 199 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi151", "name": "osd_memory_target"} : dispatch 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.119146+0000 mon.smithi120 (mon.0) 200 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.119146+0000 mon.smithi120 (mon.0) 200 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.120748+0000 mon.smithi120 (mon.0) 201 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.120748+0000 mon.smithi120 (mon.0) 201 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.122769+0000 mgr.smithi120.xfjtcc (mgr.14205) 7 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.122769+0000 mgr.smithi120.xfjtcc (mgr.14205) 7 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.123308+0000 mgr.smithi120.xfjtcc (mgr.14205) 8 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.conf 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.123308+0000 mgr.smithi120.xfjtcc (mgr.14205) 8 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.conf 2024-09-10T04:14:44.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.259145+0000 mgr.smithi120.xfjtcc (mgr.14205) 9 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:14:44.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.259145+0000 mgr.smithi120.xfjtcc (mgr.14205) 9 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:14:44.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.259452+0000 mgr.smithi120.xfjtcc (mgr.14205) 10 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:14:44.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.259452+0000 mgr.smithi120.xfjtcc (mgr.14205) 10 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:14:44.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.354014+0000 mgr.smithi120.xfjtcc (mgr.14205) 11 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.354014+0000 mgr.smithi120.xfjtcc (mgr.14205) 11 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.354325+0000 mgr.smithi120.xfjtcc (mgr.14205) 12 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.354325+0000 mgr.smithi120.xfjtcc (mgr.14205) 12 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.441338+0000 mgr.smithi120.xfjtcc (mgr.14205) 13 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.441338+0000 mgr.smithi120.xfjtcc (mgr.14205) 13 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.441671+0000 mgr.smithi120.xfjtcc (mgr.14205) 14 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.441671+0000 mgr.smithi120.xfjtcc (mgr.14205) 14 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.536935+0000 mon.smithi120 (mon.0) 202 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.536935+0000 mon.smithi120 (mon.0) 202 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.541993+0000 mon.smithi120 (mon.0) 203 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.541993+0000 mon.smithi120 (mon.0) 203 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.546928+0000 mon.smithi120 (mon.0) 204 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.546928+0000 mon.smithi120 (mon.0) 204 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.552233+0000 mon.smithi120 (mon.0) 205 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.552233+0000 mon.smithi120 (mon.0) 205 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.558262+0000 mon.smithi120 (mon.0) 206 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.558262+0000 mon.smithi120 (mon.0) 206 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.559899+0000 mon.smithi120 (mon.0) 207 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.559899+0000 mon.smithi120 (mon.0) 207 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.563201+0000 mon.smithi120 (mon.0) 208 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.563201+0000 mon.smithi120 (mon.0) 208 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.565476+0000 mon.smithi120 (mon.0) 209 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: audit 2024-09-10T04:14:43.565476+0000 mon.smithi120 (mon.0) 209 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.566521+0000 mgr.smithi120.xfjtcc (mgr.14205) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi151 on smithi151 2024-09-10T04:14:44.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:44 smithi120 bash[19947]: cephadm 2024-09-10T04:14:43.566521+0000 mgr.smithi120.xfjtcc (mgr.14205) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi151 on smithi151 2024-09-10T04:14:44.998 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:14:46.818 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-10T04:14:46.818 INFO:teuthology.orchestra.run.smithi151.stdout:{"epoch":1,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","modified":"2024-09-10T04:11:45.906709Z","created":"2024-09-10T04:11:45.906709Z","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":"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]} 2024-09-10T04:14:46.818 INFO:teuthology.orchestra.run.smithi151.stderr:dumped monmap epoch 1 2024-09-10T04:14:47.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:46 smithi120 bash[19947]: audit 2024-09-10T04:14:46.818402+0000 mon.smithi120 (mon.0) 210 : audit [DBG] from='client.? 172.21.15.151:0/1154125508' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:47.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:46 smithi120 bash[19947]: audit 2024-09-10T04:14:46.818402+0000 mon.smithi120 (mon.0) 210 : audit [DBG] from='client.? 172.21.15.151:0/1154125508' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.217046+0000 mon.smithi120 (mon.0) 211 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.217046+0000 mon.smithi120 (mon.0) 211 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.225155+0000 mon.smithi120 (mon.0) 212 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.225155+0000 mon.smithi120 (mon.0) 212 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.231715+0000 mon.smithi120 (mon.0) 213 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.231715+0000 mon.smithi120 (mon.0) 213 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.237847+0000 mon.smithi120 (mon.0) 214 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.237847+0000 mon.smithi120 (mon.0) 214 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.240725+0000 mon.smithi120 (mon.0) 215 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:14:48.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.240725+0000 mon.smithi120 (mon.0) 215 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:14:48.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.243091+0000 mon.smithi120 (mon.0) 216 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-10T04:14:48.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.243091+0000 mon.smithi120 (mon.0) 216 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-10T04:14:48.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.247407+0000 mon.smithi120 (mon.0) 217 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:48.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: audit 2024-09-10T04:14:47.247407+0000 mon.smithi120 (mon.0) 217 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:48.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: cephadm 2024-09-10T04:14:47.249279+0000 mgr.smithi120.xfjtcc (mgr.14205) 16 : cephadm [INF] Deploying daemon crash.smithi151 on smithi151 2024-09-10T04:14:48.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:48 smithi120 bash[19947]: cephadm 2024-09-10T04:14:47.249279+0000 mgr.smithi120.xfjtcc (mgr.14205) 16 : cephadm [INF] Deploying daemon crash.smithi151 on smithi151 2024-09-10T04:14:48.803 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-10T04:14:48.804 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-10T04:14:50.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:49 smithi120 bash[19947]: audit 2024-09-10T04:14:48.653326+0000 mon.smithi120 (mon.0) 218 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:50.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:49 smithi120 bash[19947]: audit 2024-09-10T04:14:48.653326+0000 mon.smithi120 (mon.0) 218 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:50.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:49 smithi120 bash[19947]: audit 2024-09-10T04:14:48.654031+0000 mon.smithi120 (mon.0) 219 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:14:50.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:49 smithi120 bash[19947]: audit 2024-09-10T04:14:48.654031+0000 mon.smithi120 (mon.0) 219 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:14:51.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: audit 2024-09-10T04:14:50.211716+0000 mon.smithi120 (mon.0) 220 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:51.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: audit 2024-09-10T04:14:50.211716+0000 mon.smithi120 (mon.0) 220 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:51.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: audit 2024-09-10T04:14:50.218065+0000 mon.smithi120 (mon.0) 221 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:51.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: audit 2024-09-10T04:14:50.218065+0000 mon.smithi120 (mon.0) 221 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:51.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: audit 2024-09-10T04:14:50.224556+0000 mon.smithi120 (mon.0) 222 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:51.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: audit 2024-09-10T04:14:50.224556+0000 mon.smithi120 (mon.0) 222 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:51.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: audit 2024-09-10T04:14:50.230548+0000 mon.smithi120 (mon.0) 223 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:51.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: audit 2024-09-10T04:14:50.230548+0000 mon.smithi120 (mon.0) 223 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:51.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: cephadm 2024-09-10T04:14:50.233669+0000 mgr.smithi120.xfjtcc (mgr.14205) 17 : cephadm [INF] Deploying daemon node-exporter.smithi151 on smithi151 2024-09-10T04:14:51.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:51 smithi120 bash[19947]: cephadm 2024-09-10T04:14:50.233669+0000 mgr.smithi120.xfjtcc (mgr.14205) 17 : cephadm [INF] Deploying daemon node-exporter.smithi151 on smithi151 2024-09-10T04:14:51.550 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:14:52.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.380264+0000 mon.smithi120 (mon.0) 224 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:52.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.380264+0000 mon.smithi120 (mon.0) 224 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:52.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.386729+0000 mon.smithi120 (mon.0) 225 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:52.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.386729+0000 mon.smithi120 (mon.0) 225 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:52.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.393198+0000 mon.smithi120 (mon.0) 226 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.393198+0000 mon.smithi120 (mon.0) 226 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.399229+0000 mon.smithi120 (mon.0) 227 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.399229+0000 mon.smithi120 (mon.0) 227 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.403511+0000 mon.smithi120 (mon.0) 228 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.403511+0000 mon.smithi120 (mon.0) 228 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.405967+0000 mon.smithi120 (mon.0) 229 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.405967+0000 mon.smithi120 (mon.0) 229 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.410345+0000 mon.smithi120 (mon.0) 230 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.410345+0000 mon.smithi120 (mon.0) 230 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.412297+0000 mon.smithi120 (mon.0) 231 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: audit 2024-09-10T04:14:51.412297+0000 mon.smithi120 (mon.0) 231 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: cephadm 2024-09-10T04:14:51.414173+0000 mgr.smithi120.xfjtcc (mgr.14205) 18 : cephadm [INF] Deploying daemon mgr.smithi151.abmuzj on smithi151 2024-09-10T04:14:52.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:52 smithi120 bash[19947]: cephadm 2024-09-10T04:14:51.414173+0000 mgr.smithi120.xfjtcc (mgr.14205) 18 : cephadm [INF] Deploying daemon mgr.smithi151.abmuzj on smithi151 2024-09-10T04:14:54.040 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-10T04:14:54.040 INFO:teuthology.orchestra.run.smithi151.stdout:{"epoch":1,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","modified":"2024-09-10T04:11:45.906709Z","created":"2024-09-10T04:11:45.906709Z","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":"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]} 2024-09-10T04:14:54.040 INFO:teuthology.orchestra.run.smithi151.stderr:dumped monmap epoch 1 2024-09-10T04:14:55.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:54 smithi120 bash[19947]: cluster 2024-09-10T04:14:53.330204+0000 mgr.smithi120.xfjtcc (mgr.14205) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:55.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:54 smithi120 bash[19947]: cluster 2024-09-10T04:14:53.330204+0000 mgr.smithi120.xfjtcc (mgr.14205) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:55.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:54 smithi120 bash[19947]: audit 2024-09-10T04:14:53.660315+0000 mon.smithi120 (mon.0) 232 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:55.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:54 smithi120 bash[19947]: audit 2024-09-10T04:14:53.660315+0000 mon.smithi120 (mon.0) 232 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:55.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:54 smithi120 bash[19947]: audit 2024-09-10T04:14:54.039813+0000 mon.smithi120 (mon.0) 233 : audit [DBG] from='client.? 172.21.15.151:0/2529640032' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:55.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:54 smithi120 bash[19947]: audit 2024-09-10T04:14:54.039813+0000 mon.smithi120 (mon.0) 233 : audit [DBG] from='client.? 172.21.15.151:0/2529640032' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:14:56.495 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-10T04:14:56.496 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mon dump -f json 2024-09-10T04:14:56.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:14:56 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:14:57.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: cluster 2024-09-10T04:14:55.330614+0000 mgr.smithi120.xfjtcc (mgr.14205) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:57.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: cluster 2024-09-10T04:14:55.330614+0000 mgr.smithi120.xfjtcc (mgr.14205) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:57.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.074546+0000 mon.smithi120 (mon.0) 234 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:57.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.074546+0000 mon.smithi120 (mon.0) 234 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:57.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.082974+0000 mon.smithi120 (mon.0) 235 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:57.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.082974+0000 mon.smithi120 (mon.0) 235 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:57.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.091546+0000 mon.smithi120 (mon.0) 236 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:57.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.091546+0000 mon.smithi120 (mon.0) 236 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:57.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.099862+0000 mon.smithi120 (mon.0) 237 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:57.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.099862+0000 mon.smithi120 (mon.0) 237 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:57.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.103560+0000 mon.smithi120 (mon.0) 238 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:14:57.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.103560+0000 mon.smithi120 (mon.0) 238 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:14:57.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.105562+0000 mon.smithi120 (mon.0) 239 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:57.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:57 smithi120 bash[19947]: audit 2024-09-10T04:14:56.105562+0000 mon.smithi120 (mon.0) 239 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:14:58.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:58 smithi120 bash[19947]: cephadm 2024-09-10T04:14:56.107641+0000 mgr.smithi120.xfjtcc (mgr.14205) 21 : cephadm [INF] Deploying daemon mon.smithi151 on smithi151 2024-09-10T04:14:58.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:58 smithi120 bash[19947]: cephadm 2024-09-10T04:14:56.107641+0000 mgr.smithi120.xfjtcc (mgr.14205) 21 : cephadm [INF] Deploying daemon mon.smithi151 on smithi151 2024-09-10T04:14:59.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:59 smithi120 bash[19947]: cluster 2024-09-10T04:14:57.331081+0000 mgr.smithi120.xfjtcc (mgr.14205) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:59.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:59 smithi120 bash[19947]: cluster 2024-09-10T04:14:57.331081+0000 mgr.smithi120.xfjtcc (mgr.14205) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:14:59.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:59 smithi120 bash[19947]: audit 2024-09-10T04:14:58.667649+0000 mon.smithi120 (mon.0) 240 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:14:59.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:14:59 smithi120 bash[19947]: audit 2024-09-10T04:14:58.667649+0000 mon.smithi120 (mon.0) 240 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:01.068 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:01 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:15:01.068 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:01 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:15:01.353 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:01 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:15:01.353 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:01 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:15:01.353 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:01 smithi151 systemd[1]: Started Ceph mon.smithi151 for 97c7e8e6-6f2a-11ef-bcea-c7b262605968. 2024-09-10T04:15:01.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:01 smithi120 bash[19947]: cluster 2024-09-10T04:14:59.331477+0000 mgr.smithi120.xfjtcc (mgr.14205) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:01.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:01 smithi120 bash[19947]: cluster 2024-09-10T04:14:59.331477+0000 mgr.smithi120.xfjtcc (mgr.14205) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.233 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi151/config 2024-09-10T04:15:02.391 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.378+0000 7f5d80e71c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-10T04:15:02.392 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.378+0000 7f5d80e71c80 0 ceph version 19.3.0-4885-g3a5e3f16 (3a5e3f16720f432aea965c40a8f6eb480095ec6c) squid (dev), process ceph-mon, pid 7 2024-09-10T04:15:02.392 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.378+0000 7f5d80e71c80 0 pidfile_write: ignore empty --pid-file 2024-09-10T04:15:02.392 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 0 load: jerasure load: lrc 2024-09-10T04:15:02.392 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-10T04:15:02.392 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Git sha 0 2024-09-10T04:15:02.392 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Compile date 2024-09-10 00:49:01 2024-09-10T04:15:02.392 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: DB SUMMARY 2024-09-10T04:15:02.392 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: DB Session ID: OPHC49C3R62XEYEKC5DT 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: CURRENT file: CURRENT 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi151/store.db dir, Total Num: 0, files: 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi151/store.db: 000004.log size: 511 ; 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.error_if_exists: 0 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.create_if_missing: 0 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-10T04:15:02.393 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.env: 0x55c38795a120 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.info_log: 0x55c3899dd8e0 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.statistics: (nil) 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.use_fsync: 0 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-10T04:15:02.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.db_log_dir: 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.wal_dir: 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-10T04:15:02.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.write_buffer_manager: 0x55c3899e1b80 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.unordered_write: 0 2024-09-10T04:15:02.396 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.row_cache: None 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.wal_filter: None 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.two_write_queues: 0 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.wal_compression: 0 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.atomic_flush: 0 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-10T04:15:02.397 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-10T04:15:02.398 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-10T04:15:02.399 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_open_files: -1 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Compression algorithms supported: 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: kZSTD supported: 0 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: kXpressCompression supported: 0 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: kZlibCompression supported: 1 2024-09-10T04:15:02.400 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi151/store.db/MANIFEST-000005 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.merge_operator: 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_filter: None 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-10T04:15:02.401 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-10T04:15:02.402 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-10T04:15:02.402 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-10T04:15:02.402 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55c3899dd540) 2024-09-10T04:15:02.402 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cache_index_and_filter_blocks: 1 2024-09-10T04:15:02.402 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-10T04:15:02.402 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-10T04:15:02.402 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: pin_top_level_index_and_filter: 1 2024-09-10T04:15:02.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: index_type: 0 2024-09-10T04:15:02.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: data_block_index_type: 0 2024-09-10T04:15:02.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: index_shortening: 1 2024-09-10T04:15:02.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: data_block_hash_table_util_ratio: 0.750000 2024-09-10T04:15:02.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: checksum: 4 2024-09-10T04:15:02.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: no_block_cache: 0 2024-09-10T04:15:02.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: block_cache: 0x55c3899d3610 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: block_cache_name: BinnedLRUCache 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: block_cache_options: 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: capacity : 536870912 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: num_shard_bits : 4 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: strict_capacity_limit : 0 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: high_pri_pool_ratio: 0.000 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: block_cache_compressed: (nil) 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: persistent_cache: (nil) 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: block_size: 4096 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: block_size_deviation: 10 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: block_restart_interval: 16 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: index_block_restart_interval: 1 2024-09-10T04:15:02.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: metadata_block_size: 4096 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: partition_filters: 0 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: use_delta_encoding: 1 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: filter_policy: bloomfilter 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: whole_key_filtering: 1 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: verify_compression: 0 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: read_amp_bytes_per_bit: 0 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: format_version: 5 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: enable_index_compression: 1 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: block_align: 0 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: max_auto_readahead_size: 262144 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: prepopulate_block_cache: 0 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: initial_auto_readahead_size: 8192 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: num_file_reads_for_auto_readahead: 2 2024-09-10T04:15:02.739 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression: NoCompression 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.num_levels: 7 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-10T04:15:02.740 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-10T04:15:02.741 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-10T04:15:02.741 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-10T04:15:02.741 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-10T04:15:02.742 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-10T04:15:02.743 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-10T04:15:02.744 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.bloom_locality: 0 2024-09-10T04:15:02.745 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.ttl: 2592000 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.enable_blob_files: false 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.min_blob_size: 0 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-10T04:15:02.746 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi151/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-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: ef62d801-302c-4bae-a77f-33a6bed9650c 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725941702388630, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725941702389025, "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": 1725941702, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "ef62d801-302c-4bae-a77f-33a6bed9650c", "db_session_id": "OPHC49C3R62XEYEKC5DT", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-10T04:15:02.747 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1725941702389128, "job": 1, "event": "recovery_finished"} 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.382+0000 7f5d80e71c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d80e71c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi151/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d80e71c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55c389a00e00 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d80e71c80 4 rocksdb: DB pointer 0x55c389b04000 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d76c39640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d76c39640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: ** DB Stats ** 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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-10T04:15:02.748 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: ** Compaction Stats [default] ** 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: ** Compaction Stats [default] ** 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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.2 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-10T04:15:02.749 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: AddFile(Total Files): cumulative 0, interval 0 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: AddFile(Keys): cumulative 0, interval 0 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Cumulative compaction: 0.00 GB write, 0.57 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Interval compaction: 0.00 GB write, 0.57 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Block cache BinnedLRUCache@0x55c3899d3610#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: ** File Read Latency Histogram By Level [default] ** 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d80e71c80 0 mon.smithi151 does not exist in monmap, will attempt to join an existing cluster 2024-09-10T04:15:02.750 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d80e71c80 0 using public_addr v2:172.21.15.151:0/0 -> [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] 2024-09-10T04:15:02.752 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d80e71c80 0 starting mon.smithi151 rank -1 at public addrs [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] at bind addrs [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi151 fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:15:02.752 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.386+0000 7f5d80e71c80 1 mon.smithi151@-1(???) e0 preinit fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:15:02.752 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 0 mon.smithi151@-1(synchronizing).mds e1 new map 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 0 mon.smithi151@-1(synchronizing).mds e1 print_map 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: e1 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: btime 2024-09-10T04:11:51:218440+0000 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 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-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: legacy client fscid: -1 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: No filesystems configured 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 1 mon.smithi151@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 1 mon.smithi151@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 1 mon.smithi151@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-10T04:15:02.753 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 1 mon.smithi151@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 1 mon.smithi151@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 1 mon.smithi151@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 1 mon.smithi151@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 0 mon.smithi151@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 0 mon.smithi151@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 0 mon.smithi151@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.414+0000 7f5d79c3f640 0 mon.smithi151@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.313871+0000 mon.smithi120 (mon.0) 167 : cluster [INF] Active manager daemon smithi120.xfjtcc restarted 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.313871+0000 mon.smithi120 (mon.0) 167 : cluster [INF] Active manager daemon smithi120.xfjtcc restarted 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.314344+0000 mon.smithi120 (mon.0) 168 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.314344+0000 mon.smithi120 (mon.0) 168 : cluster [INF] Activating manager daemon smithi120.xfjtcc 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.323796+0000 mon.smithi120 (mon.0) 169 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.323796+0000 mon.smithi120 (mon.0) 169 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-10T04:15:02.754 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.323992+0000 mon.smithi120 (mon.0) 170 : cluster [DBG] mgrmap e16: smithi120.xfjtcc(active, starting, since 0.00984749s) 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.323992+0000 mon.smithi120 (mon.0) 170 : cluster [DBG] mgrmap e16: smithi120.xfjtcc(active, starting, since 0.00984749s) 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.325757+0000 mon.smithi120 (mon.0) 171 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.325757+0000 mon.smithi120 (mon.0) 171 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.327057+0000 mon.smithi120 (mon.0) 172 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.327057+0000 mon.smithi120 (mon.0) 172 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi120.xfjtcc", "id": "smithi120.xfjtcc"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.328264+0000 mon.smithi120 (mon.0) 173 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.328264+0000 mon.smithi120 (mon.0) 173 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mds metadata"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.328431+0000 mon.smithi120 (mon.0) 174 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.328431+0000 mon.smithi120 (mon.0) 174 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.328572+0000 mon.smithi120 (mon.0) 175 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.328572+0000 mon.smithi120 (mon.0) 175 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata"} : dispatch 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.358516+0000 mon.smithi120 (mon.0) 176 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:33.358516+0000 mon.smithi120 (mon.0) 176 : cluster [INF] Manager daemon smithi120.xfjtcc is now available 2024-09-10T04:15:02.755 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.633542+0000 mon.smithi120 (mon.0) 177 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.633542+0000 mon.smithi120 (mon.0) 177 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.647604+0000 mon.smithi120 (mon.0) 178 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.647604+0000 mon.smithi120 (mon.0) 178 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.650852+0000 mon.smithi120 (mon.0) 179 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.650852+0000 mon.smithi120 (mon.0) 179 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.651133+0000 mon.smithi120 (mon.0) 180 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.651133+0000 mon.smithi120 (mon.0) 180 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.660395+0000 mon.smithi120 (mon.0) 181 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.660395+0000 mon.smithi120 (mon.0) 181 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/mirror_snapshot_schedule"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.664733+0000 mon.smithi120 (mon.0) 182 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:33.664733+0000 mon.smithi120 (mon.0) 182 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.xfjtcc/trash_purge_schedule"} : dispatch 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:34.326237+0000 mon.smithi120 (mon.0) 183 : cluster [DBG] mgrmap e17: smithi120.xfjtcc(active, since 1.0121s) 2024-09-10T04:15:02.756 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:34.326237+0000 mon.smithi120 (mon.0) 183 : cluster [DBG] mgrmap e17: smithi120.xfjtcc(active, since 1.0121s) 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:34.390016+0000 mon.smithi120 (mon.0) 184 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:34.390016+0000 mon.smithi120 (mon.0) 184 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.569722+0000 mgr.smithi120.xfjtcc (mgr.14205) 2 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Bus STARTING 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.569722+0000 mgr.smithi120.xfjtcc (mgr.14205) 2 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Bus STARTING 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.689342+0000 mgr.smithi120.xfjtcc (mgr.14205) 3 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Serving on https://172.21.15.120:7150 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.689342+0000 mgr.smithi120.xfjtcc (mgr.14205) 3 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Serving on https://172.21.15.120:7150 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.692526+0000 mgr.smithi120.xfjtcc (mgr.14205) 4 : cephadm [ERR] [10/Sep/2024:04:14:34] ENGINE Error in HTTPServer.serve 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Traceback (most recent call last): 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: self._connections.run(self.expiration_interval) 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: self._run(expiration_interval) 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-10T04:15:02.757 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: new_conn = self._from_server_socket(self.server.socket) 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: s = self.context.wrap_socket( 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: return self.sslsocket_class._create( 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: self.do_handshake() 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: self._sslobj.do_handshake() 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.692526+0000 mgr.smithi120.xfjtcc (mgr.14205) 4 : cephadm [ERR] [10/Sep/2024:04:14:34] ENGINE Error in HTTPServer.serve 2024-09-10T04:15:02.758 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: Traceback (most recent call last): 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: self._connections.run(self.expiration_interval) 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: self._run(expiration_interval) 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: new_conn = self._from_server_socket(self.server.socket) 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: s = self.context.wrap_socket( 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: return self.sslsocket_class._create( 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: self.do_handshake() 2024-09-10T04:15:02.759 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: self._sslobj.do_handshake() 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.790548+0000 mgr.smithi120.xfjtcc (mgr.14205) 5 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Serving on http://172.21.15.120:8765 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.790548+0000 mgr.smithi120.xfjtcc (mgr.14205) 5 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Serving on http://172.21.15.120:8765 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.790654+0000 mgr.smithi120.xfjtcc (mgr.14205) 6 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Bus STARTED 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:34.790654+0000 mgr.smithi120.xfjtcc (mgr.14205) 6 : cephadm [INF] [10/Sep/2024:04:14:34] ENGINE Bus STARTED 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:35.403885+0000 mon.smithi120 (mon.0) 185 : cluster [DBG] mgrmap e18: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:35.403885+0000 mon.smithi120 (mon.0) 185 : cluster [DBG] mgrmap e18: smithi120.xfjtcc(active, since 2s) 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:35.909345+0000 mon.smithi120 (mon.0) 186 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:35.909345+0000 mon.smithi120 (mon.0) 186 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:36.647119+0000 mon.smithi120 (mon.0) 187 : audit [DBG] from='client.? 172.21.15.151:0/107900315' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:36.647119+0000 mon.smithi120 (mon.0) 187 : audit [DBG] from='client.? 172.21.15.151:0/107900315' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:02.760 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:37.091429+0000 mon.smithi120 (mon.0) 188 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:37.091429+0000 mon.smithi120 (mon.0) 188 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:39.703940+0000 mon.smithi120 (mon.0) 189 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:39.703940+0000 mon.smithi120 (mon.0) 189 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:39.707357+0000 mon.smithi120 (mon.0) 190 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:39.707357+0000 mon.smithi120 (mon.0) 190 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:40.770883+0000 mon.smithi120 (mon.0) 191 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:40.770883+0000 mon.smithi120 (mon.0) 191 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:40.776371+0000 mon.smithi120 (mon.0) 192 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:40.776371+0000 mon.smithi120 (mon.0) 192 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:40.778975+0000 mon.smithi120 (mon.0) 193 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:40.778975+0000 mon.smithi120 (mon.0) 193 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"} : dispatch 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:42.044301+0000 mon.smithi120 (mon.0) 194 : audit [DBG] from='client.? 172.21.15.151:0/2363667744' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:02.761 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:42.044301+0000 mon.smithi120 (mon.0) 194 : audit [DBG] from='client.? 172.21.15.151:0/2363667744' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.096802+0000 mon.smithi120 (mon.0) 195 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.096802+0000 mon.smithi120 (mon.0) 195 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.102389+0000 mon.smithi120 (mon.0) 196 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.102389+0000 mon.smithi120 (mon.0) 196 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.109589+0000 mon.smithi120 (mon.0) 197 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.109589+0000 mon.smithi120 (mon.0) 197 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.115067+0000 mon.smithi120 (mon.0) 198 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.115067+0000 mon.smithi120 (mon.0) 198 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.762 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.116753+0000 mon.smithi120 (mon.0) 199 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi151", "name": "osd_memory_target"} : dispatch 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.116753+0000 mon.smithi120 (mon.0) 199 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd/host:smithi151", "name": "osd_memory_target"} : dispatch 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.119146+0000 mon.smithi120 (mon.0) 200 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.119146+0000 mon.smithi120 (mon.0) 200 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.120748+0000 mon.smithi120 (mon.0) 201 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.120748+0000 mon.smithi120 (mon.0) 201 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.122769+0000 mgr.smithi120.xfjtcc (mgr.14205) 7 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.122769+0000 mgr.smithi120.xfjtcc (mgr.14205) 7 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.123308+0000 mgr.smithi120.xfjtcc (mgr.14205) 8 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.conf 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.123308+0000 mgr.smithi120.xfjtcc (mgr.14205) 8 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.conf 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.259145+0000 mgr.smithi120.xfjtcc (mgr.14205) 9 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.259145+0000 mgr.smithi120.xfjtcc (mgr.14205) 9 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.259452+0000 mgr.smithi120.xfjtcc (mgr.14205) 10 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.259452+0000 mgr.smithi120.xfjtcc (mgr.14205) 10 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:02.763 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.354014+0000 mgr.smithi120.xfjtcc (mgr.14205) 11 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.354014+0000 mgr.smithi120.xfjtcc (mgr.14205) 11 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.354325+0000 mgr.smithi120.xfjtcc (mgr.14205) 12 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.354325+0000 mgr.smithi120.xfjtcc (mgr.14205) 12 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.441338+0000 mgr.smithi120.xfjtcc (mgr.14205) 13 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.441338+0000 mgr.smithi120.xfjtcc (mgr.14205) 13 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.441671+0000 mgr.smithi120.xfjtcc (mgr.14205) 14 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.441671+0000 mgr.smithi120.xfjtcc (mgr.14205) 14 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.client.admin.keyring 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.536935+0000 mon.smithi120 (mon.0) 202 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.536935+0000 mon.smithi120 (mon.0) 202 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.541993+0000 mon.smithi120 (mon.0) 203 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.541993+0000 mon.smithi120 (mon.0) 203 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.546928+0000 mon.smithi120 (mon.0) 204 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.764 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.546928+0000 mon.smithi120 (mon.0) 204 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.552233+0000 mon.smithi120 (mon.0) 205 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.552233+0000 mon.smithi120 (mon.0) 205 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.558262+0000 mon.smithi120 (mon.0) 206 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.558262+0000 mon.smithi120 (mon.0) 206 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.559899+0000 mon.smithi120 (mon.0) 207 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.559899+0000 mon.smithi120 (mon.0) 207 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.563201+0000 mon.smithi120 (mon.0) 208 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.563201+0000 mon.smithi120 (mon.0) 208 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.565476+0000 mon.smithi120 (mon.0) 209 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:43.565476+0000 mon.smithi120 (mon.0) 209 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.566521+0000 mgr.smithi120.xfjtcc (mgr.14205) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi151 on smithi151 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:43.566521+0000 mgr.smithi120.xfjtcc (mgr.14205) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi151 on smithi151 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:46.818402+0000 mon.smithi120 (mon.0) 210 : audit [DBG] from='client.? 172.21.15.151:0/1154125508' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:02.765 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:46.818402+0000 mon.smithi120 (mon.0) 210 : audit [DBG] from='client.? 172.21.15.151:0/1154125508' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.217046+0000 mon.smithi120 (mon.0) 211 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.217046+0000 mon.smithi120 (mon.0) 211 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.225155+0000 mon.smithi120 (mon.0) 212 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.225155+0000 mon.smithi120 (mon.0) 212 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.231715+0000 mon.smithi120 (mon.0) 213 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.231715+0000 mon.smithi120 (mon.0) 213 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.237847+0000 mon.smithi120 (mon.0) 214 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.237847+0000 mon.smithi120 (mon.0) 214 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.240725+0000 mon.smithi120 (mon.0) 215 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.240725+0000 mon.smithi120 (mon.0) 215 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.243091+0000 mon.smithi120 (mon.0) 216 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.243091+0000 mon.smithi120 (mon.0) 216 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-10T04:15:02.766 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.247407+0000 mon.smithi120 (mon.0) 217 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:47.247407+0000 mon.smithi120 (mon.0) 217 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:47.249279+0000 mgr.smithi120.xfjtcc (mgr.14205) 16 : cephadm [INF] Deploying daemon crash.smithi151 on smithi151 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:47.249279+0000 mgr.smithi120.xfjtcc (mgr.14205) 16 : cephadm [INF] Deploying daemon crash.smithi151 on smithi151 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:48.653326+0000 mon.smithi120 (mon.0) 218 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:48.653326+0000 mon.smithi120 (mon.0) 218 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:48.654031+0000 mon.smithi120 (mon.0) 219 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:48.654031+0000 mon.smithi120 (mon.0) 219 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:50.211716+0000 mon.smithi120 (mon.0) 220 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:50.211716+0000 mon.smithi120 (mon.0) 220 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:50.218065+0000 mon.smithi120 (mon.0) 221 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:50.218065+0000 mon.smithi120 (mon.0) 221 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:50.224556+0000 mon.smithi120 (mon.0) 222 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:50.224556+0000 mon.smithi120 (mon.0) 222 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.767 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:50.230548+0000 mon.smithi120 (mon.0) 223 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:50.230548+0000 mon.smithi120 (mon.0) 223 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:50.233669+0000 mgr.smithi120.xfjtcc (mgr.14205) 17 : cephadm [INF] Deploying daemon node-exporter.smithi151 on smithi151 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:50.233669+0000 mgr.smithi120.xfjtcc (mgr.14205) 17 : cephadm [INF] Deploying daemon node-exporter.smithi151 on smithi151 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.380264+0000 mon.smithi120 (mon.0) 224 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.380264+0000 mon.smithi120 (mon.0) 224 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.386729+0000 mon.smithi120 (mon.0) 225 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.386729+0000 mon.smithi120 (mon.0) 225 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.393198+0000 mon.smithi120 (mon.0) 226 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.393198+0000 mon.smithi120 (mon.0) 226 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.399229+0000 mon.smithi120 (mon.0) 227 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.399229+0000 mon.smithi120 (mon.0) 227 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.403511+0000 mon.smithi120 (mon.0) 228 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.403511+0000 mon.smithi120 (mon.0) 228 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:02.768 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.405967+0000 mon.smithi120 (mon.0) 229 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.405967+0000 mon.smithi120 (mon.0) 229 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.410345+0000 mon.smithi120 (mon.0) 230 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.410345+0000 mon.smithi120 (mon.0) 230 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.412297+0000 mon.smithi120 (mon.0) 231 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:51.412297+0000 mon.smithi120 (mon.0) 231 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:51.414173+0000 mgr.smithi120.xfjtcc (mgr.14205) 18 : cephadm [INF] Deploying daemon mgr.smithi151.abmuzj on smithi151 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:51.414173+0000 mgr.smithi120.xfjtcc (mgr.14205) 18 : cephadm [INF] Deploying daemon mgr.smithi151.abmuzj on smithi151 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:53.330204+0000 mgr.smithi120.xfjtcc (mgr.14205) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:53.330204+0000 mgr.smithi120.xfjtcc (mgr.14205) 19 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:53.660315+0000 mon.smithi120 (mon.0) 232 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:53.660315+0000 mon.smithi120 (mon.0) 232 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:54.039813+0000 mon.smithi120 (mon.0) 233 : audit [DBG] from='client.? 172.21.15.151:0/2529640032' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:02.769 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:54.039813+0000 mon.smithi120 (mon.0) 233 : audit [DBG] from='client.? 172.21.15.151:0/2529640032' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:55.330614+0000 mgr.smithi120.xfjtcc (mgr.14205) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:55.330614+0000 mgr.smithi120.xfjtcc (mgr.14205) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.074546+0000 mon.smithi120 (mon.0) 234 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.074546+0000 mon.smithi120 (mon.0) 234 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.082974+0000 mon.smithi120 (mon.0) 235 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.082974+0000 mon.smithi120 (mon.0) 235 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.091546+0000 mon.smithi120 (mon.0) 236 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.091546+0000 mon.smithi120 (mon.0) 236 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.099862+0000 mon.smithi120 (mon.0) 237 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.099862+0000 mon.smithi120 (mon.0) 237 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.103560+0000 mon.smithi120 (mon.0) 238 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.103560+0000 mon.smithi120 (mon.0) 238 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.105562+0000 mon.smithi120 (mon.0) 239 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.770 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:56.105562+0000 mon.smithi120 (mon.0) 239 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:56.107641+0000 mgr.smithi120.xfjtcc (mgr.14205) 21 : cephadm [INF] Deploying daemon mon.smithi151 on smithi151 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cephadm 2024-09-10T04:14:56.107641+0000 mgr.smithi120.xfjtcc (mgr.14205) 21 : cephadm [INF] Deploying daemon mon.smithi151 on smithi151 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:57.331081+0000 mgr.smithi120.xfjtcc (mgr.14205) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:57.331081+0000 mgr.smithi120.xfjtcc (mgr.14205) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:58.667649+0000 mon.smithi120 (mon.0) 240 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:14:58.667649+0000 mon.smithi120 (mon.0) 240 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:59.331477+0000 mgr.smithi120.xfjtcc (mgr.14205) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:14:59.331477+0000 mgr.smithi120.xfjtcc (mgr.14205) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:15:01.331958+0000 mgr.smithi120.xfjtcc (mgr.14205) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: cluster 2024-09-10T04:15:01.331958+0000 mgr.smithi120.xfjtcc (mgr.14205) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.339016+0000 mon.smithi120 (mon.0) 241 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.771 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.339016+0000 mon.smithi120 (mon.0) 241 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.345260+0000 mon.smithi120 (mon.0) 242 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.345260+0000 mon.smithi120 (mon.0) 242 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.351315+0000 mon.smithi120 (mon.0) 243 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.351315+0000 mon.smithi120 (mon.0) 243 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.357132+0000 mon.smithi120 (mon.0) 244 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.357132+0000 mon.smithi120 (mon.0) 244 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.366581+0000 mon.smithi120 (mon.0) 245 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.366581+0000 mon.smithi120 (mon.0) 245 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.397533+0000 mon.smithi120 (mon.0) 246 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: audit 2024-09-10T04:15:01.397533+0000 mon.smithi120 (mon.0) 246 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:02.772 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:02 smithi151 bash[25273]: debug 2024-09-10T04:15:02.422+0000 7f5d79c3f640 1 mon.smithi151@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: cluster 2024-09-10T04:15:01.331958+0000 mgr.smithi120.xfjtcc (mgr.14205) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: cluster 2024-09-10T04:15:01.331958+0000 mgr.smithi120.xfjtcc (mgr.14205) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.339016+0000 mon.smithi120 (mon.0) 241 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.339016+0000 mon.smithi120 (mon.0) 241 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.345260+0000 mon.smithi120 (mon.0) 242 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.345260+0000 mon.smithi120 (mon.0) 242 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.351315+0000 mon.smithi120 (mon.0) 243 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.351315+0000 mon.smithi120 (mon.0) 243 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.357132+0000 mon.smithi120 (mon.0) 244 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.357132+0000 mon.smithi120 (mon.0) 244 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.366581+0000 mon.smithi120 (mon.0) 245 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.366581+0000 mon.smithi120 (mon.0) 245 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:02.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.397533+0000 mon.smithi120 (mon.0) 246 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:02.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:02 smithi120 bash[19947]: audit 2024-09-10T04:15:01.397533+0000 mon.smithi120 (mon.0) 246 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:07.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:02.438708+0000 mon.smithi120 (mon.0) 248 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:02.438708+0000 mon.smithi120 (mon.0) 248 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:02.439045+0000 mon.smithi120 (mon.0) 249 : cluster [INF] mon.smithi120 calling monitor election 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:02.439045+0000 mon.smithi120 (mon.0) 249 : cluster [INF] mon.smithi120 calling monitor election 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:02.461409+0000 mon.smithi120 (mon.0) 250 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:02.461409+0000 mon.smithi120 (mon.0) 250 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:03.332363+0000 mgr.smithi120.xfjtcc (mgr.14205) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:03.332363+0000 mgr.smithi120.xfjtcc (mgr.14205) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:03.430752+0000 mon.smithi120 (mon.0) 251 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:03.430752+0000 mon.smithi120 (mon.0) 251 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:03.652295+0000 mon.smithi120 (mon.0) 252 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:03.652295+0000 mon.smithi120 (mon.0) 252 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:04.431330+0000 mon.smithi120 (mon.0) 253 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:04.431330+0000 mon.smithi120 (mon.0) 253 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:04.432962+0000 mon.smithi151 (mon.1) 1 : cluster [INF] mon.smithi151 calling monitor election 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:04.432962+0000 mon.smithi151 (mon.1) 1 : cluster [INF] mon.smithi151 calling monitor election 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:04.559439+0000 mon.smithi120 (mon.0) 254 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi151.abmuzj/crt"} : dispatch 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:04.559439+0000 mon.smithi120 (mon.0) 254 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi151.abmuzj/crt"} : dispatch 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:05.332765+0000 mgr.smithi120.xfjtcc (mgr.14205) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:05.332765+0000 mgr.smithi120.xfjtcc (mgr.14205) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:05.431654+0000 mon.smithi120 (mon.0) 255 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:05.431654+0000 mon.smithi120 (mon.0) 255 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:06.431386+0000 mon.smithi120 (mon.0) 256 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:06.431386+0000 mon.smithi120 (mon.0) 256 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.431306+0000 mon.smithi120 (mon.0) 257 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.431306+0000 mon.smithi120 (mon.0) 257 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.483537+0000 mon.smithi120 (mon.0) 258 : cluster [INF] mon.smithi120 is new leader, mons smithi120,smithi151 in quorum (ranks 0,1) 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.483537+0000 mon.smithi120 (mon.0) 258 : cluster [INF] mon.smithi120 is new leader, mons smithi120,smithi151 in quorum (ranks 0,1) 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.490909+0000 mon.smithi120 (mon.0) 259 : cluster [DBG] monmap epoch 2 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.490909+0000 mon.smithi120 (mon.0) 259 : cluster [DBG] monmap epoch 2 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.490939+0000 mon.smithi120 (mon.0) 260 : cluster [DBG] fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.490939+0000 mon.smithi120 (mon.0) 260 : cluster [DBG] fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.490960+0000 mon.smithi120 (mon.0) 261 : cluster [DBG] last_changed 2024-09-10T04:15:02.430803+0000 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.490960+0000 mon.smithi120 (mon.0) 261 : cluster [DBG] last_changed 2024-09-10T04:15:02.430803+0000 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.490981+0000 mon.smithi120 (mon.0) 262 : cluster [DBG] created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:15:07.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.490981+0000 mon.smithi120 (mon.0) 262 : cluster [DBG] created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.491004+0000 mon.smithi120 (mon.0) 263 : cluster [DBG] min_mon_release 19 (squid) 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.491004+0000 mon.smithi120 (mon.0) 263 : cluster [DBG] min_mon_release 19 (squid) 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.491026+0000 mon.smithi120 (mon.0) 264 : cluster [DBG] election_strategy: 1 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.491026+0000 mon.smithi120 (mon.0) 264 : cluster [DBG] election_strategy: 1 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.491047+0000 mon.smithi120 (mon.0) 265 : cluster [DBG] 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.491047+0000 mon.smithi120 (mon.0) 265 : cluster [DBG] 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.491070+0000 mon.smithi120 (mon.0) 266 : cluster [DBG] 1: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.smithi151 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.491070+0000 mon.smithi120 (mon.0) 266 : cluster [DBG] 1: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.smithi151 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.509062+0000 mon.smithi120 (mon.0) 267 : cluster [DBG] fsmap 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.509062+0000 mon.smithi120 (mon.0) 267 : cluster [DBG] fsmap 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.509111+0000 mon.smithi120 (mon.0) 268 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.509111+0000 mon.smithi120 (mon.0) 268 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-10T04:15:07.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.509389+0000 mon.smithi120 (mon.0) 269 : cluster [DBG] mgrmap e18: smithi120.xfjtcc(active, since 34s) 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.509389+0000 mon.smithi120 (mon.0) 269 : cluster [DBG] mgrmap e18: smithi120.xfjtcc(active, since 34s) 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.509626+0000 mon.smithi120 (mon.0) 270 : cluster [INF] overall HEALTH_OK 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.509626+0000 mon.smithi120 (mon.0) 270 : cluster [INF] overall HEALTH_OK 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.511596+0000 mon.smithi120 (mon.0) 271 : cluster [DBG] Standby manager daemon smithi151.abmuzj started 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.511596+0000 mon.smithi120 (mon.0) 271 : cluster [DBG] Standby manager daemon smithi151.abmuzj started 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.513983+0000 mon.smithi120 (mon.0) 272 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.513983+0000 mon.smithi120 (mon.0) 272 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.520738+0000 mon.smithi120 (mon.0) 273 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.520738+0000 mon.smithi120 (mon.0) 273 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.521887+0000 mon.smithi120 (mon.0) 274 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi151.abmuzj/key"} : dispatch 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.521887+0000 mon.smithi120 (mon.0) 274 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi151.abmuzj/key"} : dispatch 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.522654+0000 mon.smithi120 (mon.0) 275 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-10T04:15:07.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:07 smithi151 bash[25273]: audit 2024-09-10T04:15:07.522654+0000 mon.smithi120 (mon.0) 275 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-10T04:15:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:02.438708+0000 mon.smithi120 (mon.0) 248 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:15:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:02.438708+0000 mon.smithi120 (mon.0) 248 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:15:08.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:02.439045+0000 mon.smithi120 (mon.0) 249 : cluster [INF] mon.smithi120 calling monitor election 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:02.439045+0000 mon.smithi120 (mon.0) 249 : cluster [INF] mon.smithi120 calling monitor election 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:02.461409+0000 mon.smithi120 (mon.0) 250 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:02.461409+0000 mon.smithi120 (mon.0) 250 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:03.332363+0000 mgr.smithi120.xfjtcc (mgr.14205) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:03.332363+0000 mgr.smithi120.xfjtcc (mgr.14205) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:03.430752+0000 mon.smithi120 (mon.0) 251 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:03.430752+0000 mon.smithi120 (mon.0) 251 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:03.652295+0000 mon.smithi120 (mon.0) 252 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:03.652295+0000 mon.smithi120 (mon.0) 252 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:04.431330+0000 mon.smithi120 (mon.0) 253 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:04.431330+0000 mon.smithi120 (mon.0) 253 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:04.432962+0000 mon.smithi151 (mon.1) 1 : cluster [INF] mon.smithi151 calling monitor election 2024-09-10T04:15:08.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:04.432962+0000 mon.smithi151 (mon.1) 1 : cluster [INF] mon.smithi151 calling monitor election 2024-09-10T04:15:08.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:04.559439+0000 mon.smithi120 (mon.0) 254 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi151.abmuzj/crt"} : dispatch 2024-09-10T04:15:08.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:04.559439+0000 mon.smithi120 (mon.0) 254 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi151.abmuzj/crt"} : dispatch 2024-09-10T04:15:08.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:05.332765+0000 mgr.smithi120.xfjtcc (mgr.14205) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:05.332765+0000 mgr.smithi120.xfjtcc (mgr.14205) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:05.431654+0000 mon.smithi120 (mon.0) 255 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:05.431654+0000 mon.smithi120 (mon.0) 255 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:06.431386+0000 mon.smithi120 (mon.0) 256 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:06.431386+0000 mon.smithi120 (mon.0) 256 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.431306+0000 mon.smithi120 (mon.0) 257 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.431306+0000 mon.smithi120 (mon.0) 257 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.483537+0000 mon.smithi120 (mon.0) 258 : cluster [INF] mon.smithi120 is new leader, mons smithi120,smithi151 in quorum (ranks 0,1) 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.483537+0000 mon.smithi120 (mon.0) 258 : cluster [INF] mon.smithi120 is new leader, mons smithi120,smithi151 in quorum (ranks 0,1) 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.490909+0000 mon.smithi120 (mon.0) 259 : cluster [DBG] monmap epoch 2 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.490909+0000 mon.smithi120 (mon.0) 259 : cluster [DBG] monmap epoch 2 2024-09-10T04:15:08.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.490939+0000 mon.smithi120 (mon.0) 260 : cluster [DBG] fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.490939+0000 mon.smithi120 (mon.0) 260 : cluster [DBG] fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.490960+0000 mon.smithi120 (mon.0) 261 : cluster [DBG] last_changed 2024-09-10T04:15:02.430803+0000 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.490960+0000 mon.smithi120 (mon.0) 261 : cluster [DBG] last_changed 2024-09-10T04:15:02.430803+0000 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.490981+0000 mon.smithi120 (mon.0) 262 : cluster [DBG] created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.490981+0000 mon.smithi120 (mon.0) 262 : cluster [DBG] created 2024-09-10T04:11:45.906709+0000 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.491004+0000 mon.smithi120 (mon.0) 263 : cluster [DBG] min_mon_release 19 (squid) 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.491004+0000 mon.smithi120 (mon.0) 263 : cluster [DBG] min_mon_release 19 (squid) 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.491026+0000 mon.smithi120 (mon.0) 264 : cluster [DBG] election_strategy: 1 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.491026+0000 mon.smithi120 (mon.0) 264 : cluster [DBG] election_strategy: 1 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.491047+0000 mon.smithi120 (mon.0) 265 : cluster [DBG] 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.491047+0000 mon.smithi120 (mon.0) 265 : cluster [DBG] 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.491070+0000 mon.smithi120 (mon.0) 266 : cluster [DBG] 1: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.smithi151 2024-09-10T04:15:08.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.491070+0000 mon.smithi120 (mon.0) 266 : cluster [DBG] 1: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.smithi151 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.509062+0000 mon.smithi120 (mon.0) 267 : cluster [DBG] fsmap 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.509062+0000 mon.smithi120 (mon.0) 267 : cluster [DBG] fsmap 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.509111+0000 mon.smithi120 (mon.0) 268 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.509111+0000 mon.smithi120 (mon.0) 268 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.509389+0000 mon.smithi120 (mon.0) 269 : cluster [DBG] mgrmap e18: smithi120.xfjtcc(active, since 34s) 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.509389+0000 mon.smithi120 (mon.0) 269 : cluster [DBG] mgrmap e18: smithi120.xfjtcc(active, since 34s) 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.509626+0000 mon.smithi120 (mon.0) 270 : cluster [INF] overall HEALTH_OK 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.509626+0000 mon.smithi120 (mon.0) 270 : cluster [INF] overall HEALTH_OK 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.511596+0000 mon.smithi120 (mon.0) 271 : cluster [DBG] Standby manager daemon smithi151.abmuzj started 2024-09-10T04:15:08.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.511596+0000 mon.smithi120 (mon.0) 271 : cluster [DBG] Standby manager daemon smithi151.abmuzj started 2024-09-10T04:15:08.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.513983+0000 mon.smithi120 (mon.0) 272 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-10T04:15:08.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.513983+0000 mon.smithi120 (mon.0) 272 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-10T04:15:08.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.520738+0000 mon.smithi120 (mon.0) 273 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.520738+0000 mon.smithi120 (mon.0) 273 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.521887+0000 mon.smithi120 (mon.0) 274 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi151.abmuzj/key"} : dispatch 2024-09-10T04:15:08.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.521887+0000 mon.smithi120 (mon.0) 274 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi151.abmuzj/key"} : dispatch 2024-09-10T04:15:08.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.522654+0000 mon.smithi120 (mon.0) 275 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-10T04:15:08.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:07 smithi120 bash[19947]: audit 2024-09-10T04:15:07.522654+0000 mon.smithi120 (mon.0) 275 : audit [DBG] from='mgr.? 172.21.15.151:0/4126161144' entity='mgr.smithi151.abmuzj' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-10T04:15:08.108 INFO:teuthology.orchestra.run.smithi151.stderr:dumped monmap epoch 2 2024-09-10T04:15:08.108 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-09-10T04:15:08.109 INFO:teuthology.orchestra.run.smithi151.stdout:{"epoch":2,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","modified":"2024-09-10T04:15:02.430803Z","created":"2024-09-10T04:11:45.906709Z","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":"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":"{}"},{"rank":1,"name":"smithi151","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:3300","nonce":0},{"type":"v1","addr":"172.21.15.151:6789","nonce":0}]},"addr":"172.21.15.151:6789/0","public_addr":"172.21.15.151:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-10T04:15:08.774 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-10T04:15:08.775 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph config generate-minimal-conf 2024-09-10T04:15:08.829 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.333160+0000 mgr.smithi120.xfjtcc (mgr.14205) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:08.829 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.333160+0000 mgr.smithi120.xfjtcc (mgr.14205) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:08.829 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.586877+0000 mon.smithi120 (mon.0) 276 : cluster [DBG] mgrmap e19: smithi120.xfjtcc(active, since 34s), standbys: smithi151.abmuzj 2024-09-10T04:15:08.829 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cluster 2024-09-10T04:15:07.586877+0000 mon.smithi120 (mon.0) 276 : cluster [DBG] mgrmap e19: smithi120.xfjtcc(active, since 34s), standbys: smithi151.abmuzj 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.587149+0000 mon.smithi120 (mon.0) 277 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi151.abmuzj", "id": "smithi151.abmuzj"} : dispatch 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.587149+0000 mon.smithi120 (mon.0) 277 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi151.abmuzj", "id": "smithi151.abmuzj"} : dispatch 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.678766+0000 mon.smithi120 (mon.0) 278 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.678766+0000 mon.smithi120 (mon.0) 278 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.688897+0000 mon.smithi120 (mon.0) 279 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.688897+0000 mon.smithi120 (mon.0) 279 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.690756+0000 mon.smithi120 (mon.0) 280 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.690756+0000 mon.smithi120 (mon.0) 280 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.692866+0000 mon.smithi120 (mon.0) 281 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.692866+0000 mon.smithi120 (mon.0) 281 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.695291+0000 mgr.smithi120.xfjtcc (mgr.14205) 28 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.695291+0000 mgr.smithi120.xfjtcc (mgr.14205) 28 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-10T04:15:08.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.695923+0000 mgr.smithi120.xfjtcc (mgr.14205) 29 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.conf 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.695923+0000 mgr.smithi120.xfjtcc (mgr.14205) 29 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.conf 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.829239+0000 mgr.smithi120.xfjtcc (mgr.14205) 30 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.829239+0000 mgr.smithi120.xfjtcc (mgr.14205) 30 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.833215+0000 mgr.smithi120.xfjtcc (mgr.14205) 31 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.833215+0000 mgr.smithi120.xfjtcc (mgr.14205) 31 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.915299+0000 mon.smithi120 (mon.0) 282 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.915299+0000 mon.smithi120 (mon.0) 282 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.921461+0000 mon.smithi120 (mon.0) 283 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.921461+0000 mon.smithi120 (mon.0) 283 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.925574+0000 mon.smithi120 (mon.0) 284 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.925574+0000 mon.smithi120 (mon.0) 284 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.930375+0000 mon.smithi120 (mon.0) 285 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.930375+0000 mon.smithi120 (mon.0) 285 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.831 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.934931+0000 mon.smithi120 (mon.0) 286 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.934931+0000 mon.smithi120 (mon.0) 286 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.959208+0000 mgr.smithi120.xfjtcc (mgr.14205) 32 : cephadm [INF] Reconfiguring mon.smithi120 (unknown last config time)... 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.959208+0000 mgr.smithi120.xfjtcc (mgr.14205) 32 : cephadm [INF] Reconfiguring mon.smithi120 (unknown last config time)... 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.959676+0000 mon.smithi120 (mon.0) 287 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.959676+0000 mon.smithi120 (mon.0) 287 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.960604+0000 mon.smithi120 (mon.0) 288 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.960604+0000 mon.smithi120 (mon.0) 288 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.961449+0000 mon.smithi120 (mon.0) 289 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:07.961449+0000 mon.smithi120 (mon.0) 289 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.962431+0000 mgr.smithi120.xfjtcc (mgr.14205) 33 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: cephadm 2024-09-10T04:15:07.962431+0000 mgr.smithi120.xfjtcc (mgr.14205) 33 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:08.108061+0000 mon.smithi120 (mon.0) 290 : audit [DBG] from='client.? 172.21.15.151:0/3608963741' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:08.108061+0000 mon.smithi120 (mon.0) 290 : audit [DBG] from='client.? 172.21.15.151:0/3608963741' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:08.431415+0000 mon.smithi120 (mon.0) 291 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:08 smithi120 bash[19947]: audit 2024-09-10T04:15:08.431415+0000 mon.smithi120 (mon.0) 291 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.333160+0000 mgr.smithi120.xfjtcc (mgr.14205) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.333160+0000 mgr.smithi120.xfjtcc (mgr.14205) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.586877+0000 mon.smithi120 (mon.0) 276 : cluster [DBG] mgrmap e19: smithi120.xfjtcc(active, since 34s), standbys: smithi151.abmuzj 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cluster 2024-09-10T04:15:07.586877+0000 mon.smithi120 (mon.0) 276 : cluster [DBG] mgrmap e19: smithi120.xfjtcc(active, since 34s), standbys: smithi151.abmuzj 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.587149+0000 mon.smithi120 (mon.0) 277 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi151.abmuzj", "id": "smithi151.abmuzj"} : dispatch 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.587149+0000 mon.smithi120 (mon.0) 277 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr metadata", "who": "smithi151.abmuzj", "id": "smithi151.abmuzj"} : dispatch 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.678766+0000 mon.smithi120 (mon.0) 278 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.678766+0000 mon.smithi120 (mon.0) 278 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.688897+0000 mon.smithi120 (mon.0) 279 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.688897+0000 mon.smithi120 (mon.0) 279 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.690756+0000 mon.smithi120 (mon.0) 280 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.690756+0000 mon.smithi120 (mon.0) 280 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.692866+0000 mon.smithi120 (mon.0) 281 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.692866+0000 mon.smithi120 (mon.0) 281 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.695291+0000 mgr.smithi120.xfjtcc (mgr.14205) 28 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.695291+0000 mgr.smithi120.xfjtcc (mgr.14205) 28 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.695923+0000 mgr.smithi120.xfjtcc (mgr.14205) 29 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.conf 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.695923+0000 mgr.smithi120.xfjtcc (mgr.14205) 29 : cephadm [INF] Updating smithi151:/etc/ceph/ceph.conf 2024-09-10T04:15:08.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.829239+0000 mgr.smithi120.xfjtcc (mgr.14205) 30 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.829239+0000 mgr.smithi120.xfjtcc (mgr.14205) 30 : cephadm [INF] Updating smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.833215+0000 mgr.smithi120.xfjtcc (mgr.14205) 31 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.833215+0000 mgr.smithi120.xfjtcc (mgr.14205) 31 : cephadm [INF] Updating smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/config/ceph.conf 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.915299+0000 mon.smithi120 (mon.0) 282 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.915299+0000 mon.smithi120 (mon.0) 282 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.921461+0000 mon.smithi120 (mon.0) 283 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.921461+0000 mon.smithi120 (mon.0) 283 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.925574+0000 mon.smithi120 (mon.0) 284 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.925574+0000 mon.smithi120 (mon.0) 284 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.930375+0000 mon.smithi120 (mon.0) 285 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.930375+0000 mon.smithi120 (mon.0) 285 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.934931+0000 mon.smithi120 (mon.0) 286 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.934931+0000 mon.smithi120 (mon.0) 286 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.959208+0000 mgr.smithi120.xfjtcc (mgr.14205) 32 : cephadm [INF] Reconfiguring mon.smithi120 (unknown last config time)... 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.959208+0000 mgr.smithi120.xfjtcc (mgr.14205) 32 : cephadm [INF] Reconfiguring mon.smithi120 (unknown last config time)... 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.959676+0000 mon.smithi120 (mon.0) 287 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.959676+0000 mon.smithi120 (mon.0) 287 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.960604+0000 mon.smithi120 (mon.0) 288 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.960604+0000 mon.smithi120 (mon.0) 288 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.961449+0000 mon.smithi120 (mon.0) 289 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:07.961449+0000 mon.smithi120 (mon.0) 289 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.962431+0000 mgr.smithi120.xfjtcc (mgr.14205) 33 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-09-10T04:15:08.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: cephadm 2024-09-10T04:15:07.962431+0000 mgr.smithi120.xfjtcc (mgr.14205) 33 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-09-10T04:15:08.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:08.108061+0000 mon.smithi120 (mon.0) 290 : audit [DBG] from='client.? 172.21.15.151:0/3608963741' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:08.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:08.108061+0000 mon.smithi120 (mon.0) 290 : audit [DBG] from='client.? 172.21.15.151:0/3608963741' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-10T04:15:08.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:08.431415+0000 mon.smithi120 (mon.0) 291 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:08.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:08 smithi151 bash[25273]: audit 2024-09-10T04:15:08.431415+0000 mon.smithi120 (mon.0) 291 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:15:10.965 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: cluster 2024-09-10T04:15:09.333544+0000 mgr.smithi120.xfjtcc (mgr.14205) 34 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:10.966 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: cluster 2024-09-10T04:15:09.333544+0000 mgr.smithi120.xfjtcc (mgr.14205) 34 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:10.966 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.373123+0000 mon.smithi120 (mon.0) 292 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:10.966 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.373123+0000 mon.smithi120 (mon.0) 292 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:10.966 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.381663+0000 mon.smithi120 (mon.0) 293 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:10.967 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.381663+0000 mon.smithi120 (mon.0) 293 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:10.967 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.384218+0000 mon.smithi120 (mon.0) 294 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.xfjtcc", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:10.967 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.384218+0000 mon.smithi120 (mon.0) 294 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.xfjtcc", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:10.967 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.386028+0000 mon.smithi120 (mon.0) 295 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:10.967 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.386028+0000 mon.smithi120 (mon.0) 295 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:10.967 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.387561+0000 mon.smithi120 (mon.0) 296 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:10.968 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:10 smithi120 bash[19947]: audit 2024-09-10T04:15:10.387561+0000 mon.smithi120 (mon.0) 296 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:10.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: cluster 2024-09-10T04:15:09.333544+0000 mgr.smithi120.xfjtcc (mgr.14205) 34 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:10.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: cluster 2024-09-10T04:15:09.333544+0000 mgr.smithi120.xfjtcc (mgr.14205) 34 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.373123+0000 mon.smithi120 (mon.0) 292 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.373123+0000 mon.smithi120 (mon.0) 292 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.381663+0000 mon.smithi120 (mon.0) 293 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.381663+0000 mon.smithi120 (mon.0) 293 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.384218+0000 mon.smithi120 (mon.0) 294 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.xfjtcc", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.384218+0000 mon.smithi120 (mon.0) 294 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi120.xfjtcc", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.386028+0000 mon.smithi120 (mon.0) 295 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.386028+0000 mon.smithi120 (mon.0) 295 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.387561+0000 mon.smithi120 (mon.0) 296 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:10.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:10 smithi151 bash[25273]: audit 2024-09-10T04:15:10.387561+0000 mon.smithi120 (mon.0) 296 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:11.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:11 smithi120 bash[19947]: cephadm 2024-09-10T04:15:10.383538+0000 mgr.smithi120.xfjtcc (mgr.14205) 35 : cephadm [INF] Reconfiguring mgr.smithi120.xfjtcc (unknown last config time)... 2024-09-10T04:15:11.873 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:11 smithi120 bash[19947]: cephadm 2024-09-10T04:15:10.383538+0000 mgr.smithi120.xfjtcc (mgr.14205) 35 : cephadm [INF] Reconfiguring mgr.smithi120.xfjtcc (unknown last config time)... 2024-09-10T04:15:11.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:11 smithi120 bash[19947]: cephadm 2024-09-10T04:15:10.389295+0000 mgr.smithi120.xfjtcc (mgr.14205) 36 : cephadm [INF] Reconfiguring daemon mgr.smithi120.xfjtcc on smithi120 2024-09-10T04:15:11.874 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:11 smithi120 bash[19947]: cephadm 2024-09-10T04:15:10.389295+0000 mgr.smithi120.xfjtcc (mgr.14205) 36 : cephadm [INF] Reconfiguring daemon mgr.smithi120.xfjtcc on smithi120 2024-09-10T04:15:11.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:11 smithi151 bash[25273]: cephadm 2024-09-10T04:15:10.383538+0000 mgr.smithi120.xfjtcc (mgr.14205) 35 : cephadm [INF] Reconfiguring mgr.smithi120.xfjtcc (unknown last config time)... 2024-09-10T04:15:11.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:11 smithi151 bash[25273]: cephadm 2024-09-10T04:15:10.383538+0000 mgr.smithi120.xfjtcc (mgr.14205) 35 : cephadm [INF] Reconfiguring mgr.smithi120.xfjtcc (unknown last config time)... 2024-09-10T04:15:11.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:11 smithi151 bash[25273]: cephadm 2024-09-10T04:15:10.389295+0000 mgr.smithi120.xfjtcc (mgr.14205) 36 : cephadm [INF] Reconfiguring daemon mgr.smithi120.xfjtcc on smithi120 2024-09-10T04:15:11.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:11 smithi151 bash[25273]: cephadm 2024-09-10T04:15:10.389295+0000 mgr.smithi120.xfjtcc (mgr.14205) 36 : cephadm [INF] Reconfiguring daemon mgr.smithi120.xfjtcc on smithi120 2024-09-10T04:15:12.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:12 smithi151 bash[25273]: cluster 2024-09-10T04:15:11.333953+0000 mgr.smithi120.xfjtcc (mgr.14205) 37 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:12.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:12 smithi151 bash[25273]: cluster 2024-09-10T04:15:11.333953+0000 mgr.smithi120.xfjtcc (mgr.14205) 37 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:12 smithi120 bash[19947]: cluster 2024-09-10T04:15:11.333953+0000 mgr.smithi120.xfjtcc (mgr.14205) 37 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:12 smithi120 bash[19947]: cluster 2024-09-10T04:15:11.333953+0000 mgr.smithi120.xfjtcc (mgr.14205) 37 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:13.549 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:15:13.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: audit 2024-09-10T04:15:12.684041+0000 mon.smithi120 (mon.0) 297 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:13.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: audit 2024-09-10T04:15:12.684041+0000 mon.smithi120 (mon.0) 297 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: audit 2024-09-10T04:15:12.693737+0000 mon.smithi120 (mon.0) 298 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: audit 2024-09-10T04:15:12.693737+0000 mon.smithi120 (mon.0) 298 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: cephadm 2024-09-10T04:15:12.695828+0000 mgr.smithi120.xfjtcc (mgr.14205) 38 : cephadm [INF] Reconfiguring ceph-exporter.smithi120 (monmap changed)... 2024-09-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: cephadm 2024-09-10T04:15:12.695828+0000 mgr.smithi120.xfjtcc (mgr.14205) 38 : cephadm [INF] Reconfiguring ceph-exporter.smithi120 (monmap changed)... 2024-09-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: audit 2024-09-10T04:15:12.696479+0000 mon.smithi120 (mon.0) 299 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: audit 2024-09-10T04:15:12.696479+0000 mon.smithi120 (mon.0) 299 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: audit 2024-09-10T04:15:12.698437+0000 mon.smithi120 (mon.0) 300 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: audit 2024-09-10T04:15:12.698437+0000 mon.smithi120 (mon.0) 300 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: cephadm 2024-09-10T04:15:12.700150+0000 mgr.smithi120.xfjtcc (mgr.14205) 39 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi120 on smithi120 2024-09-10T04:15:13.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:13 smithi151 bash[25273]: cephadm 2024-09-10T04:15:12.700150+0000 mgr.smithi120.xfjtcc (mgr.14205) 39 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi120 on smithi120 2024-09-10T04:15:14.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: audit 2024-09-10T04:15:12.684041+0000 mon.smithi120 (mon.0) 297 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:14.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: audit 2024-09-10T04:15:12.684041+0000 mon.smithi120 (mon.0) 297 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:14.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: audit 2024-09-10T04:15:12.693737+0000 mon.smithi120 (mon.0) 298 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:14.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: audit 2024-09-10T04:15:12.693737+0000 mon.smithi120 (mon.0) 298 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:14.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: cephadm 2024-09-10T04:15:12.695828+0000 mgr.smithi120.xfjtcc (mgr.14205) 38 : cephadm [INF] Reconfiguring ceph-exporter.smithi120 (monmap changed)... 2024-09-10T04:15:14.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: cephadm 2024-09-10T04:15:12.695828+0000 mgr.smithi120.xfjtcc (mgr.14205) 38 : cephadm [INF] Reconfiguring ceph-exporter.smithi120 (monmap changed)... 2024-09-10T04:15:14.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: audit 2024-09-10T04:15:12.696479+0000 mon.smithi120 (mon.0) 299 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:15:14.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: audit 2024-09-10T04:15:12.696479+0000 mon.smithi120 (mon.0) 299 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:15:14.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: audit 2024-09-10T04:15:12.698437+0000 mon.smithi120 (mon.0) 300 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:14.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: audit 2024-09-10T04:15:12.698437+0000 mon.smithi120 (mon.0) 300 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:14.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: cephadm 2024-09-10T04:15:12.700150+0000 mgr.smithi120.xfjtcc (mgr.14205) 39 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi120 on smithi120 2024-09-10T04:15:14.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:13 smithi120 bash[19947]: cephadm 2024-09-10T04:15:12.700150+0000 mgr.smithi120.xfjtcc (mgr.14205) 39 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi120 on smithi120 2024-09-10T04:15:14.957 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:14 smithi120 bash[19947]: cluster 2024-09-10T04:15:13.334407+0000 mgr.smithi120.xfjtcc (mgr.14205) 40 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:14.957 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:14 smithi120 bash[19947]: cluster 2024-09-10T04:15:13.334407+0000 mgr.smithi120.xfjtcc (mgr.14205) 40 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:14.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:14 smithi151 bash[25273]: cluster 2024-09-10T04:15:13.334407+0000 mgr.smithi120.xfjtcc (mgr.14205) 40 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:14.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:14 smithi151 bash[25273]: cluster 2024-09-10T04:15:13.334407+0000 mgr.smithi120.xfjtcc (mgr.14205) 40 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:15.301 INFO:teuthology.orchestra.run.smithi120.stdout:# minimal ceph.conf for 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:15:15.301 INFO:teuthology.orchestra.run.smithi120.stdout:[global] 2024-09-10T04:15:15.301 INFO:teuthology.orchestra.run.smithi120.stdout: fsid = 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:15:15.301 INFO:teuthology.orchestra.run.smithi120.stdout: mon_host = [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] 2024-09-10T04:15:15.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:15 smithi151 bash[25273]: audit 2024-09-10T04:15:15.301192+0000 mon.smithi120 (mon.0) 301 : audit [DBG] from='client.? 172.21.15.120:0/1255328169' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:15.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:15 smithi151 bash[25273]: audit 2024-09-10T04:15:15.301192+0000 mon.smithi120 (mon.0) 301 : audit [DBG] from='client.? 172.21.15.120:0/1255328169' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:16.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:15 smithi120 bash[19947]: audit 2024-09-10T04:15:15.301192+0000 mon.smithi120 (mon.0) 301 : audit [DBG] from='client.? 172.21.15.120:0/1255328169' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:16.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:15 smithi120 bash[19947]: audit 2024-09-10T04:15:15.301192+0000 mon.smithi120 (mon.0) 301 : audit [DBG] from='client.? 172.21.15.120:0/1255328169' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:16.078 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-10T04:15:16.078 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:15:16.079 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.conf 2024-09-10T04:15:16.092 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:15:16.092 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:15:16.147 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:15:16.147 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/ceph/ceph.conf 2024-09-10T04:15:16.161 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:15:16.161 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-10T04:15:16.216 DEBUG:tasks.cephadm:set 0 configs 2024-09-10T04:15:16.216 INFO:tasks.cephadm:Deploying OSDs... 2024-09-10T04:15:16.217 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:15:16.217 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-09-10T04:15:16.225 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-10T04:15:16.225 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme1n1 2024-09-10T04:15:16.272 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme1n1 2024-09-10T04:15:16.272 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-10T04:15:16.272 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 957 Links: 1 Device type: 103,2 2024-09-10T04:15:16.272 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-10T04:15:16.272 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-10 04:13:25.043963071 +0000 2024-09-10T04:15:16.272 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-10 04:10:17.950442304 +0000 2024-09-10T04:15:16.272 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-10 04:10:17.950442304 +0000 2024-09-10T04:15:16.273 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-10T04:15:16.273 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-10T04:15:16.328 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-10T04:15:16.329 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-10T04:15:16.329 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000372183 s, 1.4 MB/s 2024-09-10T04:15:16.330 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-10T04:15:16.377 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme2n1 2024-09-10T04:15:16.424 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme2n1 2024-09-10T04:15:16.424 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-10T04:15:16.424 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 966 Links: 1 Device type: 103,4 2024-09-10T04:15:16.425 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-10T04:15:16.425 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-10 04:13:25.059962928 +0000 2024-09-10T04:15:16.425 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-10 04:10:18.046420297 +0000 2024-09-10T04:15:16.425 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-10 04:10:18.046420297 +0000 2024-09-10T04:15:16.425 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-10T04:15:16.425 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-10T04:15:16.479 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-10T04:15:16.479 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-10T04:15:16.479 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.00049536 s, 1.0 MB/s 2024-09-10T04:15:16.481 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-10T04:15:16.530 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme3n1 2024-09-10T04:15:16.581 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme3n1 2024-09-10T04:15:16.581 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-10T04:15:16.581 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 975 Links: 1 Device type: 103,6 2024-09-10T04:15:16.581 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-10T04:15:16.582 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-10 04:13:25.079962749 +0000 2024-09-10T04:15:16.582 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-10 04:10:18.142371439 +0000 2024-09-10T04:15:16.582 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-10 04:10:18.142371439 +0000 2024-09-10T04:15:16.582 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-10T04:15:16.583 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-10T04:15:16.635 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-10T04:15:16.635 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-10T04:15:16.635 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000387348 s, 1.3 MB/s 2024-09-10T04:15:16.637 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-10T04:15:16.685 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme4n1 2024-09-10T04:15:16.733 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme4n1 2024-09-10T04:15:16.733 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-10T04:15:16.733 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 984 Links: 1 Device type: 103,8 2024-09-10T04:15:16.733 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-10T04:15:16.733 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-09-10 04:13:25.095962605 +0000 2024-09-10T04:15:16.733 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-09-10 04:10:18.238322582 +0000 2024-09-10T04:15:16.734 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-09-10 04:10:18.238322582 +0000 2024-09-10T04:15:16.734 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-09-10T04:15:16.734 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-10T04:15:16.786 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-09-10T04:15:16.787 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-09-10T04:15:16.787 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000417421 s, 1.2 MB/s 2024-09-10T04:15:16.788 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-10T04:15:16.838 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:15:16.839 DEBUG:teuthology.orchestra.run.smithi151:> dd if=/scratch_devs of=/dev/stdout 2024-09-10T04:15:16.846 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-10T04:15:16.846 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/nvme1n1 2024-09-10T04:15:16.894 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/nvme1n1 2024-09-10T04:15:16.894 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-10T04:15:16.894 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 957 Links: 1 Device type: 103,2 2024-09-10T04:15:16.894 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-10T04:15:16.894 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-10 04:14:41.954495329 +0000 2024-09-10T04:15:16.894 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-10 04:10:19.204929490 +0000 2024-09-10T04:15:16.895 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-10 04:10:19.204929490 +0000 2024-09-10T04:15:16.895 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: - 2024-09-10T04:15:16.895 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-10T04:15:16.948 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-10T04:15:16.948 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-10T04:15:16.949 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000514093 s, 996 kB/s 2024-09-10T04:15:16.949 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-10T04:15:16.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: cluster 2024-09-10T04:15:15.334674+0000 mgr.smithi120.xfjtcc (mgr.14205) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:16.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: cluster 2024-09-10T04:15:15.334674+0000 mgr.smithi120.xfjtcc (mgr.14205) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:16.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: audit 2024-09-10T04:15:15.721981+0000 mon.smithi120 (mon.0) 302 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: audit 2024-09-10T04:15:15.721981+0000 mon.smithi120 (mon.0) 302 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: audit 2024-09-10T04:15:15.729573+0000 mon.smithi120 (mon.0) 303 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: audit 2024-09-10T04:15:15.729573+0000 mon.smithi120 (mon.0) 303 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: cephadm 2024-09-10T04:15:15.731038+0000 mgr.smithi120.xfjtcc (mgr.14205) 42 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: cephadm 2024-09-10T04:15:15.731038+0000 mgr.smithi120.xfjtcc (mgr.14205) 42 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: audit 2024-09-10T04:15:15.731375+0000 mon.smithi120 (mon.0) 304 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: audit 2024-09-10T04:15:15.731375+0000 mon.smithi120 (mon.0) 304 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: audit 2024-09-10T04:15:15.732516+0000 mon.smithi120 (mon.0) 305 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: audit 2024-09-10T04:15:15.732516+0000 mon.smithi120 (mon.0) 305 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: cephadm 2024-09-10T04:15:15.733710+0000 mgr.smithi120.xfjtcc (mgr.14205) 43 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-09-10T04:15:16.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:16 smithi151 bash[25273]: cephadm 2024-09-10T04:15:15.733710+0000 mgr.smithi120.xfjtcc (mgr.14205) 43 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-09-10T04:15:16.993 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/nvme2n1 2024-09-10T04:15:17.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: cluster 2024-09-10T04:15:15.334674+0000 mgr.smithi120.xfjtcc (mgr.14205) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:17.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: cluster 2024-09-10T04:15:15.334674+0000 mgr.smithi120.xfjtcc (mgr.14205) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:17.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: audit 2024-09-10T04:15:15.721981+0000 mon.smithi120 (mon.0) 302 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:17.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: audit 2024-09-10T04:15:15.721981+0000 mon.smithi120 (mon.0) 302 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: audit 2024-09-10T04:15:15.729573+0000 mon.smithi120 (mon.0) 303 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: audit 2024-09-10T04:15:15.729573+0000 mon.smithi120 (mon.0) 303 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: cephadm 2024-09-10T04:15:15.731038+0000 mgr.smithi120.xfjtcc (mgr.14205) 42 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: cephadm 2024-09-10T04:15:15.731038+0000 mgr.smithi120.xfjtcc (mgr.14205) 42 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: audit 2024-09-10T04:15:15.731375+0000 mon.smithi120 (mon.0) 304 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: audit 2024-09-10T04:15:15.731375+0000 mon.smithi120 (mon.0) 304 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: audit 2024-09-10T04:15:15.732516+0000 mon.smithi120 (mon.0) 305 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: audit 2024-09-10T04:15:15.732516+0000 mon.smithi120 (mon.0) 305 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: cephadm 2024-09-10T04:15:15.733710+0000 mgr.smithi120.xfjtcc (mgr.14205) 43 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-09-10T04:15:17.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:16 smithi120 bash[19947]: cephadm 2024-09-10T04:15:15.733710+0000 mgr.smithi120.xfjtcc (mgr.14205) 43 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-09-10T04:15:17.041 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/nvme2n1 2024-09-10T04:15:17.042 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-10T04:15:17.042 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 966 Links: 1 Device type: 103,4 2024-09-10T04:15:17.042 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-10T04:15:17.042 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-10 04:14:41.966495207 +0000 2024-09-10T04:15:17.042 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-10 04:10:19.296928667 +0000 2024-09-10T04:15:17.042 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-10 04:10:19.296928667 +0000 2024-09-10T04:15:17.042 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: - 2024-09-10T04:15:17.042 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-10T04:15:17.096 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-10T04:15:17.097 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-10T04:15:17.097 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000380935 s, 1.3 MB/s 2024-09-10T04:15:17.098 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-10T04:15:17.146 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/nvme3n1 2024-09-10T04:15:17.193 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/nvme3n1 2024-09-10T04:15:17.194 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-10T04:15:17.194 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 975 Links: 1 Device type: 103,6 2024-09-10T04:15:17.194 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-10T04:15:17.194 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-10 04:14:41.978495086 +0000 2024-09-10T04:15:17.194 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-10 04:10:19.400927739 +0000 2024-09-10T04:15:17.194 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-10 04:10:19.400927739 +0000 2024-09-10T04:15:17.194 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: - 2024-09-10T04:15:17.194 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-10T04:15:17.247 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-10T04:15:17.247 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-10T04:15:17.247 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000493952 s, 1.0 MB/s 2024-09-10T04:15:17.249 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-10T04:15:17.298 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/nvme4n1 2024-09-10T04:15:17.349 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/nvme4n1 2024-09-10T04:15:17.349 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-10T04:15:17.349 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 984 Links: 1 Device type: 103,8 2024-09-10T04:15:17.349 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-10T04:15:17.349 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-09-10 04:14:41.990494965 +0000 2024-09-10T04:15:17.349 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-09-10 04:10:19.500926845 +0000 2024-09-10T04:15:17.350 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-09-10 04:10:19.500926845 +0000 2024-09-10T04:15:17.350 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: - 2024-09-10T04:15:17.350 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-10T04:15:17.403 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-09-10T04:15:17.403 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-09-10T04:15:17.403 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000459663 s, 1.1 MB/s 2024-09-10T04:15:17.404 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-10T04:15:17.455 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph orch apply osd --all-available-devices 2024-09-10T04:15:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: cluster 2024-09-10T04:15:17.335014+0000 mgr.smithi120.xfjtcc (mgr.14205) 44 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: cluster 2024-09-10T04:15:17.335014+0000 mgr.smithi120.xfjtcc (mgr.14205) 44 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: audit 2024-09-10T04:15:18.028833+0000 mon.smithi120 (mon.0) 306 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: audit 2024-09-10T04:15:18.028833+0000 mon.smithi120 (mon.0) 306 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: audit 2024-09-10T04:15:18.036572+0000 mon.smithi120 (mon.0) 307 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: audit 2024-09-10T04:15:18.036572+0000 mon.smithi120 (mon.0) 307 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: cephadm 2024-09-10T04:15:18.038921+0000 mgr.smithi120.xfjtcc (mgr.14205) 45 : cephadm [INF] Reconfiguring alertmanager.smithi120 (dependencies changed)... 2024-09-10T04:15:19.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: cephadm 2024-09-10T04:15:18.038921+0000 mgr.smithi120.xfjtcc (mgr.14205) 45 : cephadm [INF] Reconfiguring alertmanager.smithi120 (dependencies changed)... 2024-09-10T04:15:19.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: cephadm 2024-09-10T04:15:18.056050+0000 mgr.smithi120.xfjtcc (mgr.14205) 46 : cephadm [INF] Reconfiguring daemon alertmanager.smithi120 on smithi120 2024-09-10T04:15:19.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: cephadm 2024-09-10T04:15:18.056050+0000 mgr.smithi120.xfjtcc (mgr.14205) 46 : cephadm [INF] Reconfiguring daemon alertmanager.smithi120 on smithi120 2024-09-10T04:15:19.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: audit 2024-09-10T04:15:18.652861+0000 mon.smithi120 (mon.0) 308 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:19.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:19 smithi120 bash[19947]: audit 2024-09-10T04:15:18.652861+0000 mon.smithi120 (mon.0) 308 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:19.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: cluster 2024-09-10T04:15:17.335014+0000 mgr.smithi120.xfjtcc (mgr.14205) 44 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: cluster 2024-09-10T04:15:17.335014+0000 mgr.smithi120.xfjtcc (mgr.14205) 44 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: audit 2024-09-10T04:15:18.028833+0000 mon.smithi120 (mon.0) 306 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: audit 2024-09-10T04:15:18.028833+0000 mon.smithi120 (mon.0) 306 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: audit 2024-09-10T04:15:18.036572+0000 mon.smithi120 (mon.0) 307 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: audit 2024-09-10T04:15:18.036572+0000 mon.smithi120 (mon.0) 307 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: cephadm 2024-09-10T04:15:18.038921+0000 mgr.smithi120.xfjtcc (mgr.14205) 45 : cephadm [INF] Reconfiguring alertmanager.smithi120 (dependencies changed)... 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: cephadm 2024-09-10T04:15:18.038921+0000 mgr.smithi120.xfjtcc (mgr.14205) 45 : cephadm [INF] Reconfiguring alertmanager.smithi120 (dependencies changed)... 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: cephadm 2024-09-10T04:15:18.056050+0000 mgr.smithi120.xfjtcc (mgr.14205) 46 : cephadm [INF] Reconfiguring daemon alertmanager.smithi120 on smithi120 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: cephadm 2024-09-10T04:15:18.056050+0000 mgr.smithi120.xfjtcc (mgr.14205) 46 : cephadm [INF] Reconfiguring daemon alertmanager.smithi120 on smithi120 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: audit 2024-09-10T04:15:18.652861+0000 mon.smithi120 (mon.0) 308 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:19.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:19 smithi151 bash[25273]: audit 2024-09-10T04:15:18.652861+0000 mon.smithi120 (mon.0) 308 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:21.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:21 smithi120 bash[19947]: cluster 2024-09-10T04:15:19.335355+0000 mgr.smithi120.xfjtcc (mgr.14205) 47 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:21.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:21 smithi120 bash[19947]: cluster 2024-09-10T04:15:19.335355+0000 mgr.smithi120.xfjtcc (mgr.14205) 47 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:21.336 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:21 smithi151 bash[25273]: cluster 2024-09-10T04:15:19.335355+0000 mgr.smithi120.xfjtcc (mgr.14205) 47 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:21.336 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:21 smithi151 bash[25273]: cluster 2024-09-10T04:15:19.335355+0000 mgr.smithi120.xfjtcc (mgr.14205) 47 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:22.253 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi151/config 2024-09-10T04:15:23.256 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:23 smithi120 bash[19947]: cluster 2024-09-10T04:15:21.335665+0000 mgr.smithi120.xfjtcc (mgr.14205) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:23.256 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:23 smithi120 bash[19947]: cluster 2024-09-10T04:15:21.335665+0000 mgr.smithi120.xfjtcc (mgr.14205) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:23.256 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:23 smithi120 bash[19947]: audit 2024-09-10T04:15:22.761325+0000 mon.smithi120 (mon.0) 309 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:23.256 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:23 smithi120 bash[19947]: audit 2024-09-10T04:15:22.761325+0000 mon.smithi120 (mon.0) 309 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:23.256 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:23 smithi120 bash[19947]: audit 2024-09-10T04:15:22.766200+0000 mon.smithi120 (mon.0) 310 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:23.256 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:23 smithi120 bash[19947]: audit 2024-09-10T04:15:22.766200+0000 mon.smithi120 (mon.0) 310 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:23.299 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:23 smithi151 bash[25273]: cluster 2024-09-10T04:15:21.335665+0000 mgr.smithi120.xfjtcc (mgr.14205) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:23.299 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:23 smithi151 bash[25273]: cluster 2024-09-10T04:15:21.335665+0000 mgr.smithi120.xfjtcc (mgr.14205) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:23.299 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:23 smithi151 bash[25273]: audit 2024-09-10T04:15:22.761325+0000 mon.smithi120 (mon.0) 309 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:23.299 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:23 smithi151 bash[25273]: audit 2024-09-10T04:15:22.761325+0000 mon.smithi120 (mon.0) 309 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:23.299 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:23 smithi151 bash[25273]: audit 2024-09-10T04:15:22.766200+0000 mon.smithi120 (mon.0) 310 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:23.299 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:23 smithi151 bash[25273]: audit 2024-09-10T04:15:22.766200+0000 mon.smithi120 (mon.0) 310 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:23.682 INFO:teuthology.orchestra.run.smithi151.stdout:Scheduled osd.all-available-devices update... 2024-09-10T04:15:24.205 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:24 smithi120 bash[19947]: cephadm 2024-09-10T04:15:22.767295+0000 mgr.smithi120.xfjtcc (mgr.14205) 49 : cephadm [INF] Reconfiguring grafana.smithi120 (dependencies changed)... 2024-09-10T04:15:24.205 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:24 smithi120 bash[19947]: cephadm 2024-09-10T04:15:22.767295+0000 mgr.smithi120.xfjtcc (mgr.14205) 49 : cephadm [INF] Reconfiguring grafana.smithi120 (dependencies changed)... 2024-09-10T04:15:24.205 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:24 smithi120 bash[19947]: cephadm 2024-09-10T04:15:23.040289+0000 mgr.smithi120.xfjtcc (mgr.14205) 50 : cephadm [INF] Reconfiguring daemon grafana.smithi120 on smithi120 2024-09-10T04:15:24.205 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:24 smithi120 bash[19947]: cephadm 2024-09-10T04:15:23.040289+0000 mgr.smithi120.xfjtcc (mgr.14205) 50 : cephadm [INF] Reconfiguring daemon grafana.smithi120 on smithi120 2024-09-10T04:15:24.205 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:24 smithi120 bash[19947]: audit 2024-09-10T04:15:23.676500+0000 mon.smithi120 (mon.0) 311 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:24.205 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:24 smithi120 bash[19947]: audit 2024-09-10T04:15:23.676500+0000 mon.smithi120 (mon.0) 311 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:24.296 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:24 smithi151 bash[25273]: cephadm 2024-09-10T04:15:22.767295+0000 mgr.smithi120.xfjtcc (mgr.14205) 49 : cephadm [INF] Reconfiguring grafana.smithi120 (dependencies changed)... 2024-09-10T04:15:24.296 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:24 smithi151 bash[25273]: cephadm 2024-09-10T04:15:22.767295+0000 mgr.smithi120.xfjtcc (mgr.14205) 49 : cephadm [INF] Reconfiguring grafana.smithi120 (dependencies changed)... 2024-09-10T04:15:24.296 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:24 smithi151 bash[25273]: cephadm 2024-09-10T04:15:23.040289+0000 mgr.smithi120.xfjtcc (mgr.14205) 50 : cephadm [INF] Reconfiguring daemon grafana.smithi120 on smithi120 2024-09-10T04:15:24.296 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:24 smithi151 bash[25273]: cephadm 2024-09-10T04:15:23.040289+0000 mgr.smithi120.xfjtcc (mgr.14205) 50 : cephadm [INF] Reconfiguring daemon grafana.smithi120 on smithi120 2024-09-10T04:15:24.296 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:24 smithi151 bash[25273]: audit 2024-09-10T04:15:23.676500+0000 mon.smithi120 (mon.0) 311 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:24.296 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:24 smithi151 bash[25273]: audit 2024-09-10T04:15:23.676500+0000 mon.smithi120 (mon.0) 311 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:24.297 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-10T04:15:24.298 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:15:25.256 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: cluster 2024-09-10T04:15:23.336083+0000 mgr.smithi120.xfjtcc (mgr.14205) 51 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:25.256 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: cluster 2024-09-10T04:15:23.336083+0000 mgr.smithi120.xfjtcc (mgr.14205) 51 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:25.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: audit 2024-09-10T04:15:23.661156+0000 mgr.smithi120.xfjtcc (mgr.14205) 52 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:15:25.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: audit 2024-09-10T04:15:23.661156+0000 mgr.smithi120.xfjtcc (mgr.14205) 52 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:15:25.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: cephadm 2024-09-10T04:15:23.668685+0000 mgr.smithi120.xfjtcc (mgr.14205) 53 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-09-10T04:15:25.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: cephadm 2024-09-10T04:15:23.668685+0000 mgr.smithi120.xfjtcc (mgr.14205) 53 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-09-10T04:15:25.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: cephadm 2024-09-10T04:15:23.668924+0000 mgr.smithi120.xfjtcc (mgr.14205) 54 : cephadm [INF] Marking host: smithi151 for OSDSpec preview refresh. 2024-09-10T04:15:25.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: cephadm 2024-09-10T04:15:23.668924+0000 mgr.smithi120.xfjtcc (mgr.14205) 54 : cephadm [INF] Marking host: smithi151 for OSDSpec preview refresh. 2024-09-10T04:15:25.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: cephadm 2024-09-10T04:15:23.670484+0000 mgr.smithi120.xfjtcc (mgr.14205) 55 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-10T04:15:25.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:25 smithi120 bash[19947]: cephadm 2024-09-10T04:15:23.670484+0000 mgr.smithi120.xfjtcc (mgr.14205) 55 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-10T04:15:25.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: cluster 2024-09-10T04:15:23.336083+0000 mgr.smithi120.xfjtcc (mgr.14205) 51 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:25.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: cluster 2024-09-10T04:15:23.336083+0000 mgr.smithi120.xfjtcc (mgr.14205) 51 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:25.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: audit 2024-09-10T04:15:23.661156+0000 mgr.smithi120.xfjtcc (mgr.14205) 52 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:15:25.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: audit 2024-09-10T04:15:23.661156+0000 mgr.smithi120.xfjtcc (mgr.14205) 52 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:15:25.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: cephadm 2024-09-10T04:15:23.668685+0000 mgr.smithi120.xfjtcc (mgr.14205) 53 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-09-10T04:15:25.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: cephadm 2024-09-10T04:15:23.668685+0000 mgr.smithi120.xfjtcc (mgr.14205) 53 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-09-10T04:15:25.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: cephadm 2024-09-10T04:15:23.668924+0000 mgr.smithi120.xfjtcc (mgr.14205) 54 : cephadm [INF] Marking host: smithi151 for OSDSpec preview refresh. 2024-09-10T04:15:25.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: cephadm 2024-09-10T04:15:23.668924+0000 mgr.smithi120.xfjtcc (mgr.14205) 54 : cephadm [INF] Marking host: smithi151 for OSDSpec preview refresh. 2024-09-10T04:15:25.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: cephadm 2024-09-10T04:15:23.670484+0000 mgr.smithi120.xfjtcc (mgr.14205) 55 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-10T04:15:25.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:25 smithi151 bash[25273]: cephadm 2024-09-10T04:15:23.670484+0000 mgr.smithi120.xfjtcc (mgr.14205) 55 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-10T04:15:27.274 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:27 smithi120 bash[19947]: cluster 2024-09-10T04:15:25.336568+0000 mgr.smithi120.xfjtcc (mgr.14205) 56 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:27.274 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:27 smithi120 bash[19947]: cluster 2024-09-10T04:15:25.336568+0000 mgr.smithi120.xfjtcc (mgr.14205) 56 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:27.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:27 smithi151 bash[25273]: cluster 2024-09-10T04:15:25.336568+0000 mgr.smithi120.xfjtcc (mgr.14205) 56 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:27.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:27 smithi151 bash[25273]: cluster 2024-09-10T04:15:25.336568+0000 mgr.smithi120.xfjtcc (mgr.14205) 56 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:29.439 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:29 smithi120 bash[19947]: cluster 2024-09-10T04:15:27.336950+0000 mgr.smithi120.xfjtcc (mgr.14205) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:29.440 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:29 smithi120 bash[19947]: cluster 2024-09-10T04:15:27.336950+0000 mgr.smithi120.xfjtcc (mgr.14205) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:29.440 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:29 smithi120 bash[19947]: audit 2024-09-10T04:15:28.187402+0000 mon.smithi120 (mon.0) 312 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:29.440 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:29 smithi120 bash[19947]: audit 2024-09-10T04:15:28.187402+0000 mon.smithi120 (mon.0) 312 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:29.440 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:29 smithi120 bash[19947]: audit 2024-09-10T04:15:28.193394+0000 mon.smithi120 (mon.0) 313 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:29.440 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:29 smithi120 bash[19947]: audit 2024-09-10T04:15:28.193394+0000 mon.smithi120 (mon.0) 313 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:29.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:29 smithi151 bash[25273]: cluster 2024-09-10T04:15:27.336950+0000 mgr.smithi120.xfjtcc (mgr.14205) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:29.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:29 smithi151 bash[25273]: cluster 2024-09-10T04:15:27.336950+0000 mgr.smithi120.xfjtcc (mgr.14205) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:29.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:29 smithi151 bash[25273]: audit 2024-09-10T04:15:28.187402+0000 mon.smithi120 (mon.0) 312 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:29.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:29 smithi151 bash[25273]: audit 2024-09-10T04:15:28.187402+0000 mon.smithi120 (mon.0) 312 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:29.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:29 smithi151 bash[25273]: audit 2024-09-10T04:15:28.193394+0000 mon.smithi120 (mon.0) 313 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:29.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:29 smithi151 bash[25273]: audit 2024-09-10T04:15:28.193394+0000 mon.smithi120 (mon.0) 313 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:29.651 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:15:30.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:30 smithi120 bash[19947]: cephadm 2024-09-10T04:15:28.194377+0000 mgr.smithi120.xfjtcc (mgr.14205) 58 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:15:30.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:30 smithi120 bash[19947]: cephadm 2024-09-10T04:15:28.194377+0000 mgr.smithi120.xfjtcc (mgr.14205) 58 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:15:30.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:30 smithi120 bash[19947]: cephadm 2024-09-10T04:15:28.431748+0000 mgr.smithi120.xfjtcc (mgr.14205) 59 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:15:30.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:30 smithi120 bash[19947]: cephadm 2024-09-10T04:15:28.431748+0000 mgr.smithi120.xfjtcc (mgr.14205) 59 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:15:30.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:30 smithi151 bash[25273]: cephadm 2024-09-10T04:15:28.194377+0000 mgr.smithi120.xfjtcc (mgr.14205) 58 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:15:30.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:30 smithi151 bash[25273]: cephadm 2024-09-10T04:15:28.194377+0000 mgr.smithi120.xfjtcc (mgr.14205) 58 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:15:30.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:30 smithi151 bash[25273]: cephadm 2024-09-10T04:15:28.431748+0000 mgr.smithi120.xfjtcc (mgr.14205) 59 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:15:30.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:30 smithi151 bash[25273]: cephadm 2024-09-10T04:15:28.431748+0000 mgr.smithi120.xfjtcc (mgr.14205) 59 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:15:31.139 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:31 smithi120 bash[19947]: cluster 2024-09-10T04:15:29.337354+0000 mgr.smithi120.xfjtcc (mgr.14205) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:31.139 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:31 smithi120 bash[19947]: cluster 2024-09-10T04:15:29.337354+0000 mgr.smithi120.xfjtcc (mgr.14205) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:31.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:31 smithi151 bash[25273]: cluster 2024-09-10T04:15:29.337354+0000 mgr.smithi120.xfjtcc (mgr.14205) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:31.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:31 smithi151 bash[25273]: cluster 2024-09-10T04:15:29.337354+0000 mgr.smithi120.xfjtcc (mgr.14205) 60 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:32.035 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:15:32.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:32 smithi151 bash[25273]: audit 2024-09-10T04:15:32.034954+0000 mon.smithi120 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.120:0/2566949970' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:32.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:32 smithi151 bash[25273]: audit 2024-09-10T04:15:32.034954+0000 mon.smithi120 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.120:0/2566949970' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:32.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:32 smithi120 bash[19947]: audit 2024-09-10T04:15:32.034954+0000 mon.smithi120 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.120:0/2566949970' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:32.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:32 smithi120 bash[19947]: audit 2024-09-10T04:15:32.034954+0000 mon.smithi120 (mon.0) 314 : audit [DBG] from='client.? 172.21.15.120:0/2566949970' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:33.152 INFO:teuthology.orchestra.run.smithi120.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-10T04:15:33.478 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:33 smithi120 bash[19947]: cluster 2024-09-10T04:15:31.337776+0000 mgr.smithi120.xfjtcc (mgr.14205) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:33.479 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:33 smithi120 bash[19947]: cluster 2024-09-10T04:15:31.337776+0000 mgr.smithi120.xfjtcc (mgr.14205) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:33.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:33 smithi151 bash[25273]: cluster 2024-09-10T04:15:31.337776+0000 mgr.smithi120.xfjtcc (mgr.14205) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:33.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:33 smithi151 bash[25273]: cluster 2024-09-10T04:15:31.337776+0000 mgr.smithi120.xfjtcc (mgr.14205) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:34.153 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:15:34.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:34 smithi120 bash[19947]: audit 2024-09-10T04:15:33.652917+0000 mon.smithi120 (mon.0) 315 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:34.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:34 smithi120 bash[19947]: audit 2024-09-10T04:15:33.652917+0000 mon.smithi120 (mon.0) 315 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:34.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:34 smithi151 bash[25273]: audit 2024-09-10T04:15:33.652917+0000 mon.smithi120 (mon.0) 315 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:34.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:34 smithi151 bash[25273]: audit 2024-09-10T04:15:33.652917+0000 mon.smithi120 (mon.0) 315 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:35.189 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:35 smithi120 bash[19947]: cluster 2024-09-10T04:15:33.338201+0000 mgr.smithi120.xfjtcc (mgr.14205) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:35.189 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:35 smithi120 bash[19947]: cluster 2024-09-10T04:15:33.338201+0000 mgr.smithi120.xfjtcc (mgr.14205) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:35.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:35 smithi151 bash[25273]: cluster 2024-09-10T04:15:33.338201+0000 mgr.smithi120.xfjtcc (mgr.14205) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:35.694 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:35 smithi151 bash[25273]: cluster 2024-09-10T04:15:33.338201+0000 mgr.smithi120.xfjtcc (mgr.14205) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:36.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: audit 2024-09-10T04:15:35.235047+0000 mon.smithi120 (mon.0) 316 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:36.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: audit 2024-09-10T04:15:35.235047+0000 mon.smithi120 (mon.0) 316 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: audit 2024-09-10T04:15:35.241341+0000 mon.smithi120 (mon.0) 317 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: audit 2024-09-10T04:15:35.241341+0000 mon.smithi120 (mon.0) 317 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: cephadm 2024-09-10T04:15:35.242138+0000 mgr.smithi120.xfjtcc (mgr.14205) 63 : cephadm [INF] Reconfiguring ceph-exporter.smithi151 (monmap changed)... 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: cephadm 2024-09-10T04:15:35.242138+0000 mgr.smithi120.xfjtcc (mgr.14205) 63 : cephadm [INF] Reconfiguring ceph-exporter.smithi151 (monmap changed)... 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: audit 2024-09-10T04:15:35.242419+0000 mon.smithi120 (mon.0) 318 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: audit 2024-09-10T04:15:35.242419+0000 mon.smithi120 (mon.0) 318 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: audit 2024-09-10T04:15:35.243216+0000 mon.smithi120 (mon.0) 319 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: audit 2024-09-10T04:15:35.243216+0000 mon.smithi120 (mon.0) 319 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: cephadm 2024-09-10T04:15:35.243986+0000 mgr.smithi120.xfjtcc (mgr.14205) 64 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi151 on smithi151 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: cephadm 2024-09-10T04:15:35.243986+0000 mgr.smithi120.xfjtcc (mgr.14205) 64 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi151 on smithi151 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: cluster 2024-09-10T04:15:35.338516+0000 mgr.smithi120.xfjtcc (mgr.14205) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:36.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:36 smithi120 bash[19947]: cluster 2024-09-10T04:15:35.338516+0000 mgr.smithi120.xfjtcc (mgr.14205) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:36.637 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: audit 2024-09-10T04:15:35.235047+0000 mon.smithi120 (mon.0) 316 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: audit 2024-09-10T04:15:35.235047+0000 mon.smithi120 (mon.0) 316 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: audit 2024-09-10T04:15:35.241341+0000 mon.smithi120 (mon.0) 317 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: audit 2024-09-10T04:15:35.241341+0000 mon.smithi120 (mon.0) 317 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: cephadm 2024-09-10T04:15:35.242138+0000 mgr.smithi120.xfjtcc (mgr.14205) 63 : cephadm [INF] Reconfiguring ceph-exporter.smithi151 (monmap changed)... 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: cephadm 2024-09-10T04:15:35.242138+0000 mgr.smithi120.xfjtcc (mgr.14205) 63 : cephadm [INF] Reconfiguring ceph-exporter.smithi151 (monmap changed)... 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: audit 2024-09-10T04:15:35.242419+0000 mon.smithi120 (mon.0) 318 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: audit 2024-09-10T04:15:35.242419+0000 mon.smithi120 (mon.0) 318 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi151", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: audit 2024-09-10T04:15:35.243216+0000 mon.smithi120 (mon.0) 319 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: audit 2024-09-10T04:15:35.243216+0000 mon.smithi120 (mon.0) 319 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: cephadm 2024-09-10T04:15:35.243986+0000 mgr.smithi120.xfjtcc (mgr.14205) 64 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi151 on smithi151 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: cephadm 2024-09-10T04:15:35.243986+0000 mgr.smithi120.xfjtcc (mgr.14205) 64 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi151 on smithi151 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: cluster 2024-09-10T04:15:35.338516+0000 mgr.smithi120.xfjtcc (mgr.14205) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:36.638 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:36 smithi151 bash[25273]: cluster 2024-09-10T04:15:35.338516+0000 mgr.smithi120.xfjtcc (mgr.14205) 65 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:38.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: cluster 2024-09-10T04:15:37.338921+0000 mgr.smithi120.xfjtcc (mgr.14205) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: cluster 2024-09-10T04:15:37.338921+0000 mgr.smithi120.xfjtcc (mgr.14205) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: audit 2024-09-10T04:15:37.411855+0000 mon.smithi120 (mon.0) 320 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: audit 2024-09-10T04:15:37.411855+0000 mon.smithi120 (mon.0) 320 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: audit 2024-09-10T04:15:37.420395+0000 mon.smithi120 (mon.0) 321 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: audit 2024-09-10T04:15:37.420395+0000 mon.smithi120 (mon.0) 321 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: cephadm 2024-09-10T04:15:37.422025+0000 mgr.smithi120.xfjtcc (mgr.14205) 67 : cephadm [INF] Reconfiguring crash.smithi151 (monmap changed)... 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: cephadm 2024-09-10T04:15:37.422025+0000 mgr.smithi120.xfjtcc (mgr.14205) 67 : cephadm [INF] Reconfiguring crash.smithi151 (monmap changed)... 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: audit 2024-09-10T04:15:37.422639+0000 mon.smithi120 (mon.0) 322 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: audit 2024-09-10T04:15:37.422639+0000 mon.smithi120 (mon.0) 322 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:38.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: audit 2024-09-10T04:15:37.424322+0000 mon.smithi120 (mon.0) 323 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:38.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: audit 2024-09-10T04:15:37.424322+0000 mon.smithi120 (mon.0) 323 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:38.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: cephadm 2024-09-10T04:15:37.425991+0000 mgr.smithi120.xfjtcc (mgr.14205) 68 : cephadm [INF] Reconfiguring daemon crash.smithi151 on smithi151 2024-09-10T04:15:38.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:38 smithi151 bash[25273]: cephadm 2024-09-10T04:15:37.425991+0000 mgr.smithi120.xfjtcc (mgr.14205) 68 : cephadm [INF] Reconfiguring daemon crash.smithi151 on smithi151 2024-09-10T04:15:38.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: cluster 2024-09-10T04:15:37.338921+0000 mgr.smithi120.xfjtcc (mgr.14205) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:38.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: cluster 2024-09-10T04:15:37.338921+0000 mgr.smithi120.xfjtcc (mgr.14205) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:38.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: audit 2024-09-10T04:15:37.411855+0000 mon.smithi120 (mon.0) 320 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:38.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: audit 2024-09-10T04:15:37.411855+0000 mon.smithi120 (mon.0) 320 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:38.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: audit 2024-09-10T04:15:37.420395+0000 mon.smithi120 (mon.0) 321 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:38.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: audit 2024-09-10T04:15:37.420395+0000 mon.smithi120 (mon.0) 321 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:38.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: cephadm 2024-09-10T04:15:37.422025+0000 mgr.smithi120.xfjtcc (mgr.14205) 67 : cephadm [INF] Reconfiguring crash.smithi151 (monmap changed)... 2024-09-10T04:15:38.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: cephadm 2024-09-10T04:15:37.422025+0000 mgr.smithi120.xfjtcc (mgr.14205) 67 : cephadm [INF] Reconfiguring crash.smithi151 (monmap changed)... 2024-09-10T04:15:38.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: audit 2024-09-10T04:15:37.422639+0000 mon.smithi120 (mon.0) 322 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:38.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: audit 2024-09-10T04:15:37.422639+0000 mon.smithi120 (mon.0) 322 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi151", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-10T04:15:38.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: audit 2024-09-10T04:15:37.424322+0000 mon.smithi120 (mon.0) 323 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:38.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: audit 2024-09-10T04:15:37.424322+0000 mon.smithi120 (mon.0) 323 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:38.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: cephadm 2024-09-10T04:15:37.425991+0000 mgr.smithi120.xfjtcc (mgr.14205) 68 : cephadm [INF] Reconfiguring daemon crash.smithi151 on smithi151 2024-09-10T04:15:38.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:38 smithi120 bash[19947]: cephadm 2024-09-10T04:15:37.425991+0000 mgr.smithi120.xfjtcc (mgr.14205) 68 : cephadm [INF] Reconfiguring daemon crash.smithi151 on smithi151 2024-09-10T04:15:38.930 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:15:40.327 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:15:40.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: cluster 2024-09-10T04:15:39.339357+0000 mgr.smithi120.xfjtcc (mgr.14205) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: cluster 2024-09-10T04:15:39.339357+0000 mgr.smithi120.xfjtcc (mgr.14205) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.479143+0000 mon.smithi120 (mon.0) 324 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.479143+0000 mon.smithi120 (mon.0) 324 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.487558+0000 mon.smithi120 (mon.0) 325 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.487558+0000 mon.smithi120 (mon.0) 325 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: cephadm 2024-09-10T04:15:39.489597+0000 mgr.smithi120.xfjtcc (mgr.14205) 70 : cephadm [INF] Reconfiguring mgr.smithi151.abmuzj (monmap changed)... 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: cephadm 2024-09-10T04:15:39.489597+0000 mgr.smithi120.xfjtcc (mgr.14205) 70 : cephadm [INF] Reconfiguring mgr.smithi151.abmuzj (monmap changed)... 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.490281+0000 mon.smithi120 (mon.0) 326 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.490281+0000 mon.smithi120 (mon.0) 326 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:40.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.492070+0000 mon.smithi120 (mon.0) 327 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:40.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.492070+0000 mon.smithi120 (mon.0) 327 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:40.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.493500+0000 mon.smithi120 (mon.0) 328 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:40.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:39.493500+0000 mon.smithi120 (mon.0) 328 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:40.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: cephadm 2024-09-10T04:15:39.495259+0000 mgr.smithi120.xfjtcc (mgr.14205) 71 : cephadm [INF] Reconfiguring daemon mgr.smithi151.abmuzj on smithi151 2024-09-10T04:15:40.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: cephadm 2024-09-10T04:15:39.495259+0000 mgr.smithi120.xfjtcc (mgr.14205) 71 : cephadm [INF] Reconfiguring daemon mgr.smithi151.abmuzj on smithi151 2024-09-10T04:15:40.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:40.327351+0000 mon.smithi120 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.120:0/2878051613' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:40.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:40 smithi151 bash[25273]: audit 2024-09-10T04:15:40.327351+0000 mon.smithi120 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.120:0/2878051613' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: cluster 2024-09-10T04:15:39.339357+0000 mgr.smithi120.xfjtcc (mgr.14205) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: cluster 2024-09-10T04:15:39.339357+0000 mgr.smithi120.xfjtcc (mgr.14205) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.479143+0000 mon.smithi120 (mon.0) 324 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.479143+0000 mon.smithi120 (mon.0) 324 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.487558+0000 mon.smithi120 (mon.0) 325 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.487558+0000 mon.smithi120 (mon.0) 325 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: cephadm 2024-09-10T04:15:39.489597+0000 mgr.smithi120.xfjtcc (mgr.14205) 70 : cephadm [INF] Reconfiguring mgr.smithi151.abmuzj (monmap changed)... 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: cephadm 2024-09-10T04:15:39.489597+0000 mgr.smithi120.xfjtcc (mgr.14205) 70 : cephadm [INF] Reconfiguring mgr.smithi151.abmuzj (monmap changed)... 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.490281+0000 mon.smithi120 (mon.0) 326 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.490281+0000 mon.smithi120 (mon.0) 326 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi151.abmuzj", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.492070+0000 mon.smithi120 (mon.0) 327 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.492070+0000 mon.smithi120 (mon.0) 327 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mgr services"} : dispatch 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.493500+0000 mon.smithi120 (mon.0) 328 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:39.493500+0000 mon.smithi120 (mon.0) 328 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: cephadm 2024-09-10T04:15:39.495259+0000 mgr.smithi120.xfjtcc (mgr.14205) 71 : cephadm [INF] Reconfiguring daemon mgr.smithi151.abmuzj on smithi151 2024-09-10T04:15:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: cephadm 2024-09-10T04:15:39.495259+0000 mgr.smithi120.xfjtcc (mgr.14205) 71 : cephadm [INF] Reconfiguring daemon mgr.smithi151.abmuzj on smithi151 2024-09-10T04:15:40.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:40.327351+0000 mon.smithi120 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.120:0/2878051613' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:40.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:40 smithi120 bash[19947]: audit 2024-09-10T04:15:40.327351+0000 mon.smithi120 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.120:0/2878051613' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:40.933 INFO:teuthology.orchestra.run.smithi120.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-10T04:15:41.934 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:15:42.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: cluster 2024-09-10T04:15:41.339778+0000 mgr.smithi120.xfjtcc (mgr.14205) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:42.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: cluster 2024-09-10T04:15:41.339778+0000 mgr.smithi120.xfjtcc (mgr.14205) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:42.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.490399+0000 mon.smithi120 (mon.0) 330 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:42.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.490399+0000 mon.smithi120 (mon.0) 330 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.498916+0000 mon.smithi120 (mon.0) 331 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.498916+0000 mon.smithi120 (mon.0) 331 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: cephadm 2024-09-10T04:15:41.500590+0000 mgr.smithi120.xfjtcc (mgr.14205) 73 : cephadm [INF] Reconfiguring mon.smithi151 (monmap changed)... 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: cephadm 2024-09-10T04:15:41.500590+0000 mgr.smithi120.xfjtcc (mgr.14205) 73 : cephadm [INF] Reconfiguring mon.smithi151 (monmap changed)... 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.501240+0000 mon.smithi120 (mon.0) 332 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.501240+0000 mon.smithi120 (mon.0) 332 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.503071+0000 mon.smithi120 (mon.0) 333 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.503071+0000 mon.smithi120 (mon.0) 333 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-10T04:15:42.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.504864+0000 mon.smithi120 (mon.0) 334 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:42.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: audit 2024-09-10T04:15:41.504864+0000 mon.smithi120 (mon.0) 334 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:42.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: cephadm 2024-09-10T04:15:41.506896+0000 mgr.smithi120.xfjtcc (mgr.14205) 74 : cephadm [INF] Reconfiguring daemon mon.smithi151 on smithi151 2024-09-10T04:15:42.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:42 smithi120 bash[19947]: cephadm 2024-09-10T04:15:41.506896+0000 mgr.smithi120.xfjtcc (mgr.14205) 74 : cephadm [INF] Reconfiguring daemon mon.smithi151 on smithi151 2024-09-10T04:15:42.795 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: cluster 2024-09-10T04:15:41.339778+0000 mgr.smithi120.xfjtcc (mgr.14205) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:42.795 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: cluster 2024-09-10T04:15:41.339778+0000 mgr.smithi120.xfjtcc (mgr.14205) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:42.795 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.490399+0000 mon.smithi120 (mon.0) 330 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.490399+0000 mon.smithi120 (mon.0) 330 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.498916+0000 mon.smithi120 (mon.0) 331 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.498916+0000 mon.smithi120 (mon.0) 331 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: cephadm 2024-09-10T04:15:41.500590+0000 mgr.smithi120.xfjtcc (mgr.14205) 73 : cephadm [INF] Reconfiguring mon.smithi151 (monmap changed)... 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: cephadm 2024-09-10T04:15:41.500590+0000 mgr.smithi120.xfjtcc (mgr.14205) 73 : cephadm [INF] Reconfiguring mon.smithi151 (monmap changed)... 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.501240+0000 mon.smithi120 (mon.0) 332 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.501240+0000 mon.smithi120 (mon.0) 332 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.503071+0000 mon.smithi120 (mon.0) 333 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.503071+0000 mon.smithi120 (mon.0) 333 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.504864+0000 mon.smithi120 (mon.0) 334 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:42.796 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: audit 2024-09-10T04:15:41.504864+0000 mon.smithi120 (mon.0) 334 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:42.797 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: cephadm 2024-09-10T04:15:41.506896+0000 mgr.smithi120.xfjtcc (mgr.14205) 74 : cephadm [INF] Reconfiguring daemon mon.smithi151 on smithi151 2024-09-10T04:15:42.797 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:42 smithi151 bash[25273]: cephadm 2024-09-10T04:15:41.506896+0000 mgr.smithi120.xfjtcc (mgr.14205) 74 : cephadm [INF] Reconfiguring daemon mon.smithi151 on smithi151 2024-09-10T04:15:44.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: cluster 2024-09-10T04:15:43.340212+0000 mgr.smithi120.xfjtcc (mgr.14205) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:44.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: cluster 2024-09-10T04:15:43.340212+0000 mgr.smithi120.xfjtcc (mgr.14205) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:44.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.543756+0000 mon.smithi120 (mon.0) 335 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.543756+0000 mon.smithi120 (mon.0) 335 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.552799+0000 mon.smithi120 (mon.0) 336 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.552799+0000 mon.smithi120 (mon.0) 336 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.562861+0000 mon.smithi120 (mon.0) 337 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.562861+0000 mon.smithi120 (mon.0) 337 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.563771+0000 mgr.smithi120.xfjtcc (mgr.14205) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.563771+0000 mgr.smithi120.xfjtcc (mgr.14205) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.566126+0000 mon.smithi120 (mon.0) 338 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"} : dispatch 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.566126+0000 mon.smithi120 (mon.0) 338 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"} : dispatch 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.566956+0000 mgr.smithi120.xfjtcc (mgr.14205) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"}]: dispatch 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.566956+0000 mgr.smithi120.xfjtcc (mgr.14205) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"}]: dispatch 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.575574+0000 mon.smithi120 (mon.0) 339 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.575574+0000 mon.smithi120 (mon.0) 339 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.591827+0000 mon.smithi120 (mon.0) 340 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.591827+0000 mon.smithi120 (mon.0) 340 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.593101+0000 mgr.smithi120.xfjtcc (mgr.14205) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.593101+0000 mgr.smithi120.xfjtcc (mgr.14205) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.599950+0000 mon.smithi120 (mon.0) 341 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"} : dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.599950+0000 mon.smithi120 (mon.0) 341 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"} : dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.600832+0000 mgr.smithi120.xfjtcc (mgr.14205) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"}]: dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.600832+0000 mgr.smithi120.xfjtcc (mgr.14205) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"}]: dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.612044+0000 mon.smithi120 (mon.0) 342 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.612044+0000 mon.smithi120 (mon.0) 342 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.627590+0000 mon.smithi120 (mon.0) 343 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.627590+0000 mon.smithi120 (mon.0) 343 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:15:44.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.628696+0000 mgr.smithi120.xfjtcc (mgr.14205) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.628696+0000 mgr.smithi120.xfjtcc (mgr.14205) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.642914+0000 mon.smithi120 (mon.0) 344 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"} : dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.642914+0000 mon.smithi120 (mon.0) 344 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"} : dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.644271+0000 mgr.smithi120.xfjtcc (mgr.14205) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"}]: dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.644271+0000 mgr.smithi120.xfjtcc (mgr.14205) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"}]: dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.653198+0000 mon.smithi120 (mon.0) 345 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.653198+0000 mon.smithi120 (mon.0) 345 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.978988+0000 mon.smithi120 (mon.0) 346 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:43.978988+0000 mon.smithi120 (mon.0) 346 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:44.067113+0000 mon.smithi120 (mon.0) 347 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:44.067113+0000 mon.smithi120 (mon.0) 347 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:44.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:44.068070+0000 mgr.smithi120.xfjtcc (mgr.14205) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:44.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:44 smithi151 bash[25273]: audit 2024-09-10T04:15:44.068070+0000 mgr.smithi120.xfjtcc (mgr.14205) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:44.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: cluster 2024-09-10T04:15:43.340212+0000 mgr.smithi120.xfjtcc (mgr.14205) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:44.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: cluster 2024-09-10T04:15:43.340212+0000 mgr.smithi120.xfjtcc (mgr.14205) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:44.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.543756+0000 mon.smithi120 (mon.0) 335 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.990 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.543756+0000 mon.smithi120 (mon.0) 335 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.552799+0000 mon.smithi120 (mon.0) 336 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.552799+0000 mon.smithi120 (mon.0) 336 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.562861+0000 mon.smithi120 (mon.0) 337 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.562861+0000 mon.smithi120 (mon.0) 337 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.563771+0000 mgr.smithi120.xfjtcc (mgr.14205) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.563771+0000 mgr.smithi120.xfjtcc (mgr.14205) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.566126+0000 mon.smithi120 (mon.0) 338 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"} : dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.566126+0000 mon.smithi120 (mon.0) 338 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"} : dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.566956+0000 mgr.smithi120.xfjtcc (mgr.14205) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"}]: dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.566956+0000 mgr.smithi120.xfjtcc (mgr.14205) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"}]: dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.575574+0000 mon.smithi120 (mon.0) 339 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.575574+0000 mon.smithi120 (mon.0) 339 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.591827+0000 mon.smithi120 (mon.0) 340 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-10T04:15:44.991 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.591827+0000 mon.smithi120 (mon.0) 340 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.593101+0000 mgr.smithi120.xfjtcc (mgr.14205) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.593101+0000 mgr.smithi120.xfjtcc (mgr.14205) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.599950+0000 mon.smithi120 (mon.0) 341 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"} : dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.599950+0000 mon.smithi120 (mon.0) 341 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"} : dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.600832+0000 mgr.smithi120.xfjtcc (mgr.14205) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"}]: dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.600832+0000 mgr.smithi120.xfjtcc (mgr.14205) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"}]: dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.612044+0000 mon.smithi120 (mon.0) 342 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.612044+0000 mon.smithi120 (mon.0) 342 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.627590+0000 mon.smithi120 (mon.0) 343 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.627590+0000 mon.smithi120 (mon.0) 343 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.628696+0000 mgr.smithi120.xfjtcc (mgr.14205) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.628696+0000 mgr.smithi120.xfjtcc (mgr.14205) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:15:44.992 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.642914+0000 mon.smithi120 (mon.0) 344 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"} : dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.642914+0000 mon.smithi120 (mon.0) 344 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"} : dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.644271+0000 mgr.smithi120.xfjtcc (mgr.14205) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"}]: dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.644271+0000 mgr.smithi120.xfjtcc (mgr.14205) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"}]: dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.653198+0000 mon.smithi120 (mon.0) 345 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.653198+0000 mon.smithi120 (mon.0) 345 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.978988+0000 mon.smithi120 (mon.0) 346 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:43.978988+0000 mon.smithi120 (mon.0) 346 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:44.067113+0000 mon.smithi120 (mon.0) 347 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:44.067113+0000 mon.smithi120 (mon.0) 347 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:44.068070+0000 mgr.smithi120.xfjtcc (mgr.14205) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:44.993 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:44 smithi120 bash[19947]: audit 2024-09-10T04:15:44.068070+0000 mgr.smithi120.xfjtcc (mgr.14205) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:45.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:45 smithi151 bash[25273]: audit 2024-09-10T04:15:44.679577+0000 mon.smithi120 (mon.0) 348 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:45.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:45 smithi151 bash[25273]: audit 2024-09-10T04:15:44.679577+0000 mon.smithi120 (mon.0) 348 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:45.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:45 smithi151 bash[25273]: audit 2024-09-10T04:15:44.680762+0000 mgr.smithi120.xfjtcc (mgr.14205) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:45.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:45 smithi151 bash[25273]: audit 2024-09-10T04:15:44.680762+0000 mgr.smithi120.xfjtcc (mgr.14205) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:45.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:45 smithi151 bash[25273]: audit 2024-09-10T04:15:45.294270+0000 mon.smithi120 (mon.0) 349 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:45.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:45 smithi151 bash[25273]: audit 2024-09-10T04:15:45.294270+0000 mon.smithi120 (mon.0) 349 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:46.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:45 smithi120 bash[19947]: audit 2024-09-10T04:15:44.679577+0000 mon.smithi120 (mon.0) 348 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:46.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:45 smithi120 bash[19947]: audit 2024-09-10T04:15:44.679577+0000 mon.smithi120 (mon.0) 348 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:46.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:45 smithi120 bash[19947]: audit 2024-09-10T04:15:44.680762+0000 mgr.smithi120.xfjtcc (mgr.14205) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:46.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:45 smithi120 bash[19947]: audit 2024-09-10T04:15:44.680762+0000 mgr.smithi120.xfjtcc (mgr.14205) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:46.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:45 smithi120 bash[19947]: audit 2024-09-10T04:15:45.294270+0000 mon.smithi120 (mon.0) 349 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:46.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:45 smithi120 bash[19947]: audit 2024-09-10T04:15:45.294270+0000 mon.smithi120 (mon.0) 349 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:15:46.718 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:15:46.810 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:46 smithi120 bash[19947]: audit 2024-09-10T04:15:45.295659+0000 mgr.smithi120.xfjtcc (mgr.14205) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:46.810 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:46 smithi120 bash[19947]: audit 2024-09-10T04:15:45.295659+0000 mgr.smithi120.xfjtcc (mgr.14205) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:46.810 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:46 smithi120 bash[19947]: cluster 2024-09-10T04:15:45.340519+0000 mgr.smithi120.xfjtcc (mgr.14205) 85 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:46.810 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:46 smithi120 bash[19947]: cluster 2024-09-10T04:15:45.340519+0000 mgr.smithi120.xfjtcc (mgr.14205) 85 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:46.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:46 smithi151 bash[25273]: audit 2024-09-10T04:15:45.295659+0000 mgr.smithi120.xfjtcc (mgr.14205) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:46.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:46 smithi151 bash[25273]: audit 2024-09-10T04:15:45.295659+0000 mgr.smithi120.xfjtcc (mgr.14205) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:15:46.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:46 smithi151 bash[25273]: cluster 2024-09-10T04:15:45.340519+0000 mgr.smithi120.xfjtcc (mgr.14205) 85 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:46.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:46 smithi151 bash[25273]: cluster 2024-09-10T04:15:45.340519+0000 mgr.smithi120.xfjtcc (mgr.14205) 85 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:48.127 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:15:48.808 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:48 smithi120 bash[19947]: cluster 2024-09-10T04:15:47.340920+0000 mgr.smithi120.xfjtcc (mgr.14205) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:48.809 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:48 smithi120 bash[19947]: cluster 2024-09-10T04:15:47.340920+0000 mgr.smithi120.xfjtcc (mgr.14205) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:48.809 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:48 smithi120 bash[19947]: audit 2024-09-10T04:15:48.127474+0000 mon.smithi120 (mon.0) 350 : audit [DBG] from='client.? 172.21.15.120:0/1698304985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:48.809 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:48 smithi120 bash[19947]: audit 2024-09-10T04:15:48.127474+0000 mon.smithi120 (mon.0) 350 : audit [DBG] from='client.? 172.21.15.120:0/1698304985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:48.810 INFO:teuthology.orchestra.run.smithi120.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-10T04:15:48.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:48 smithi151 bash[25273]: cluster 2024-09-10T04:15:47.340920+0000 mgr.smithi120.xfjtcc (mgr.14205) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:48.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:48 smithi151 bash[25273]: cluster 2024-09-10T04:15:47.340920+0000 mgr.smithi120.xfjtcc (mgr.14205) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:48.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:48 smithi151 bash[25273]: audit 2024-09-10T04:15:48.127474+0000 mon.smithi120 (mon.0) 350 : audit [DBG] from='client.? 172.21.15.120:0/1698304985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:48.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:48 smithi151 bash[25273]: audit 2024-09-10T04:15:48.127474+0000 mon.smithi120 (mon.0) 350 : audit [DBG] from='client.? 172.21.15.120:0/1698304985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:49.811 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:15:49.821 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:49 smithi120 bash[19947]: audit 2024-09-10T04:15:48.653668+0000 mon.smithi120 (mon.0) 351 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:49.821 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:49 smithi120 bash[19947]: audit 2024-09-10T04:15:48.653668+0000 mon.smithi120 (mon.0) 351 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:49.821 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:49 smithi120 bash[19947]: audit 2024-09-10T04:15:49.406070+0000 mon.smithi120 (mon.0) 352 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:49.821 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:49 smithi120 bash[19947]: audit 2024-09-10T04:15:49.406070+0000 mon.smithi120 (mon.0) 352 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:49.821 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:49 smithi120 bash[19947]: audit 2024-09-10T04:15:49.410591+0000 mon.smithi120 (mon.0) 353 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:49.821 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:49 smithi120 bash[19947]: audit 2024-09-10T04:15:49.410591+0000 mon.smithi120 (mon.0) 353 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:49.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:49 smithi151 bash[25273]: audit 2024-09-10T04:15:48.653668+0000 mon.smithi120 (mon.0) 351 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:49.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:49 smithi151 bash[25273]: audit 2024-09-10T04:15:48.653668+0000 mon.smithi120 (mon.0) 351 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:15:49.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:49 smithi151 bash[25273]: audit 2024-09-10T04:15:49.406070+0000 mon.smithi120 (mon.0) 352 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:49.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:49 smithi151 bash[25273]: audit 2024-09-10T04:15:49.406070+0000 mon.smithi120 (mon.0) 352 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:49.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:49 smithi151 bash[25273]: audit 2024-09-10T04:15:49.410591+0000 mon.smithi120 (mon.0) 353 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:49.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:49 smithi151 bash[25273]: audit 2024-09-10T04:15:49.410591+0000 mon.smithi120 (mon.0) 353 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: cluster 2024-09-10T04:15:49.341216+0000 mgr.smithi120.xfjtcc (mgr.14205) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: cluster 2024-09-10T04:15:49.341216+0000 mgr.smithi120.xfjtcc (mgr.14205) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.038896+0000 mon.smithi120 (mon.0) 354 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.038896+0000 mon.smithi120 (mon.0) 354 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.041881+0000 mon.smithi120 (mon.0) 355 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.041881+0000 mon.smithi120 (mon.0) 355 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.047716+0000 mon.smithi120 (mon.0) 356 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.047716+0000 mon.smithi120 (mon.0) 356 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.053890+0000 mon.smithi120 (mon.0) 357 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.053890+0000 mon.smithi120 (mon.0) 357 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.639654+0000 mon.smithi120 (mon.0) 358 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.639654+0000 mon.smithi120 (mon.0) 358 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.648719+0000 mon.smithi120 (mon.0) 359 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.648719+0000 mon.smithi120 (mon.0) 359 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.650601+0000 mon.smithi120 (mon.0) 360 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.650601+0000 mon.smithi120 (mon.0) 360 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.651787+0000 mon.smithi120 (mon.0) 361 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.651787+0000 mon.smithi120 (mon.0) 361 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.662081+0000 mon.smithi120 (mon.0) 362 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.662081+0000 mon.smithi120 (mon.0) 362 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.667022+0000 mon.smithi120 (mon.0) 363 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:15:51.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.667022+0000 mon.smithi120 (mon.0) 363 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:15:51.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.673337+0000 mon.smithi120 (mon.0) 364 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:15:51.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.673337+0000 mon.smithi120 (mon.0) 364 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:15:51.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.674527+0000 mon.smithi120 (mon.0) 365 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.674527+0000 mon.smithi120 (mon.0) 365 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.678218+0000 mon.smithi120 (mon.0) 366 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:15:51.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.678218+0000 mon.smithi120 (mon.0) 366 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:15:51.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.679264+0000 mon.smithi120 (mon.0) 367 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:51 smithi151 bash[25273]: audit 2024-09-10T04:15:50.679264+0000 mon.smithi120 (mon.0) 367 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: cluster 2024-09-10T04:15:49.341216+0000 mgr.smithi120.xfjtcc (mgr.14205) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:51.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: cluster 2024-09-10T04:15:49.341216+0000 mgr.smithi120.xfjtcc (mgr.14205) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:51.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.038896+0000 mon.smithi120 (mon.0) 354 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.038896+0000 mon.smithi120 (mon.0) 354 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.041881+0000 mon.smithi120 (mon.0) 355 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.041881+0000 mon.smithi120 (mon.0) 355 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.047716+0000 mon.smithi120 (mon.0) 356 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.047716+0000 mon.smithi120 (mon.0) 356 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.053890+0000 mon.smithi120 (mon.0) 357 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.053890+0000 mon.smithi120 (mon.0) 357 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.639654+0000 mon.smithi120 (mon.0) 358 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.639654+0000 mon.smithi120 (mon.0) 358 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.535 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.648719+0000 mon.smithi120 (mon.0) 359 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.648719+0000 mon.smithi120 (mon.0) 359 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.650601+0000 mon.smithi120 (mon.0) 360 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.650601+0000 mon.smithi120 (mon.0) 360 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.651787+0000 mon.smithi120 (mon.0) 361 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:51.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.651787+0000 mon.smithi120 (mon.0) 361 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:15:51.537 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.662081+0000 mon.smithi120 (mon.0) 362 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.537 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.662081+0000 mon.smithi120 (mon.0) 362 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:15:51.537 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.667022+0000 mon.smithi120 (mon.0) 363 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:15:51.537 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.667022+0000 mon.smithi120 (mon.0) 363 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:15:51.537 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.673337+0000 mon.smithi120 (mon.0) 364 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:15:51.538 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.673337+0000 mon.smithi120 (mon.0) 364 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:15:51.538 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.674527+0000 mon.smithi120 (mon.0) 365 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.538 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.674527+0000 mon.smithi120 (mon.0) 365 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.538 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.678218+0000 mon.smithi120 (mon.0) 366 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:15:51.538 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.678218+0000 mon.smithi120 (mon.0) 366 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:15:51.538 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.679264+0000 mon.smithi120 (mon.0) 367 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:51.539 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:51 smithi120 bash[19947]: audit 2024-09-10T04:15:50.679264+0000 mon.smithi120 (mon.0) 367 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:15:53.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:53 smithi151 bash[25273]: cluster 2024-09-10T04:15:51.341575+0000 mgr.smithi120.xfjtcc (mgr.14205) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:53.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:53 smithi151 bash[25273]: cluster 2024-09-10T04:15:51.341575+0000 mgr.smithi120.xfjtcc (mgr.14205) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:53.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:53 smithi120 bash[19947]: cluster 2024-09-10T04:15:51.341575+0000 mgr.smithi120.xfjtcc (mgr.14205) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:53.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:53 smithi120 bash[19947]: cluster 2024-09-10T04:15:51.341575+0000 mgr.smithi120.xfjtcc (mgr.14205) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:54.612 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:15:55.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:55 smithi151 bash[25273]: cluster 2024-09-10T04:15:53.341990+0000 mgr.smithi120.xfjtcc (mgr.14205) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:55.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:55 smithi151 bash[25273]: cluster 2024-09-10T04:15:53.341990+0000 mgr.smithi120.xfjtcc (mgr.14205) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:55.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:55 smithi120 bash[19947]: cluster 2024-09-10T04:15:53.341990+0000 mgr.smithi120.xfjtcc (mgr.14205) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:55.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:55 smithi120 bash[19947]: cluster 2024-09-10T04:15:53.341990+0000 mgr.smithi120.xfjtcc (mgr.14205) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:56.513 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:15:57.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:57 smithi151 bash[25273]: cluster 2024-09-10T04:15:55.342461+0000 mgr.smithi120.xfjtcc (mgr.14205) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:57.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:57 smithi151 bash[25273]: cluster 2024-09-10T04:15:55.342461+0000 mgr.smithi120.xfjtcc (mgr.14205) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:57.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:57 smithi151 bash[25273]: audit 2024-09-10T04:15:56.512812+0000 mon.smithi120 (mon.0) 368 : audit [DBG] from='client.? 172.21.15.120:0/1844343487' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:57.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:57 smithi151 bash[25273]: audit 2024-09-10T04:15:56.512812+0000 mon.smithi120 (mon.0) 368 : audit [DBG] from='client.? 172.21.15.120:0/1844343487' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:57.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:57 smithi120 bash[19947]: cluster 2024-09-10T04:15:55.342461+0000 mgr.smithi120.xfjtcc (mgr.14205) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:57.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:57 smithi120 bash[19947]: cluster 2024-09-10T04:15:55.342461+0000 mgr.smithi120.xfjtcc (mgr.14205) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:57.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:57 smithi120 bash[19947]: audit 2024-09-10T04:15:56.512812+0000 mon.smithi120 (mon.0) 368 : audit [DBG] from='client.? 172.21.15.120:0/1844343487' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:57.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:57 smithi120 bash[19947]: audit 2024-09-10T04:15:56.512812+0000 mon.smithi120 (mon.0) 368 : audit [DBG] from='client.? 172.21.15.120:0/1844343487' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:15:57.340 INFO:teuthology.orchestra.run.smithi120.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-10T04:15:58.342 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:15:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:59 smithi151 bash[25273]: cluster 2024-09-10T04:15:57.342753+0000 mgr.smithi120.xfjtcc (mgr.14205) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:15:59 smithi151 bash[25273]: cluster 2024-09-10T04:15:57.342753+0000 mgr.smithi120.xfjtcc (mgr.14205) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:59.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:59 smithi120 bash[19947]: cluster 2024-09-10T04:15:57.342753+0000 mgr.smithi120.xfjtcc (mgr.14205) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:15:59.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:15:59 smithi120 bash[19947]: cluster 2024-09-10T04:15:57.342753+0000 mgr.smithi120.xfjtcc (mgr.14205) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:00.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: audit 2024-09-10T04:15:59.680875+0000 mon.smithi151 (mon.1) 2 : audit [INF] from='client.? 172.21.15.151:0/3956841794' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"} : dispatch 2024-09-10T04:16:00.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: audit 2024-09-10T04:15:59.680875+0000 mon.smithi151 (mon.1) 2 : audit [INF] from='client.? 172.21.15.151:0/3956841794' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"} : dispatch 2024-09-10T04:16:00.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: audit 2024-09-10T04:15:59.681406+0000 mon.smithi120 (mon.0) 369 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"} : dispatch 2024-09-10T04:16:00.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: audit 2024-09-10T04:15:59.681406+0000 mon.smithi120 (mon.0) 369 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"} : dispatch 2024-09-10T04:16:00.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: audit 2024-09-10T04:15:59.684623+0000 mon.smithi120 (mon.0) 370 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"}]': finished 2024-09-10T04:16:00.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: audit 2024-09-10T04:15:59.684623+0000 mon.smithi120 (mon.0) 370 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"}]': finished 2024-09-10T04:16:00.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: cluster 2024-09-10T04:15:59.691895+0000 mon.smithi120 (mon.0) 371 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-10T04:16:00.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: cluster 2024-09-10T04:15:59.691895+0000 mon.smithi120 (mon.0) 371 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-10T04:16:00.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: audit 2024-09-10T04:15:59.692188+0000 mon.smithi120 (mon.0) 372 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:00.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:00 smithi151 bash[25273]: audit 2024-09-10T04:15:59.692188+0000 mon.smithi120 (mon.0) 372 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: audit 2024-09-10T04:15:59.680875+0000 mon.smithi151 (mon.1) 2 : audit [INF] from='client.? 172.21.15.151:0/3956841794' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"} : dispatch 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: audit 2024-09-10T04:15:59.680875+0000 mon.smithi151 (mon.1) 2 : audit [INF] from='client.? 172.21.15.151:0/3956841794' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"} : dispatch 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: audit 2024-09-10T04:15:59.681406+0000 mon.smithi120 (mon.0) 369 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"} : dispatch 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: audit 2024-09-10T04:15:59.681406+0000 mon.smithi120 (mon.0) 369 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"} : dispatch 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: audit 2024-09-10T04:15:59.684623+0000 mon.smithi120 (mon.0) 370 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"}]': finished 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: audit 2024-09-10T04:15:59.684623+0000 mon.smithi120 (mon.0) 370 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0"}]': finished 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: cluster 2024-09-10T04:15:59.691895+0000 mon.smithi120 (mon.0) 371 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: cluster 2024-09-10T04:15:59.691895+0000 mon.smithi120 (mon.0) 371 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-10T04:16:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: audit 2024-09-10T04:15:59.692188+0000 mon.smithi120 (mon.0) 372 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:00.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:00 smithi120 bash[19947]: audit 2024-09-10T04:15:59.692188+0000 mon.smithi120 (mon.0) 372 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: cluster 2024-09-10T04:15:59.342991+0000 mgr.smithi120.xfjtcc (mgr.14205) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: cluster 2024-09-10T04:15:59.342991+0000 mgr.smithi120.xfjtcc (mgr.14205) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: audit 2024-09-10T04:16:00.621841+0000 mon.smithi120 (mon.0) 373 : audit [INF] from='client.? 172.21.15.120:0/394867957' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ca435627-a127-409e-9d51-9bd1756bb312"} : dispatch 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: audit 2024-09-10T04:16:00.621841+0000 mon.smithi120 (mon.0) 373 : audit [INF] from='client.? 172.21.15.120:0/394867957' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ca435627-a127-409e-9d51-9bd1756bb312"} : dispatch 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: audit 2024-09-10T04:16:00.625095+0000 mon.smithi120 (mon.0) 374 : audit [INF] from='client.? 172.21.15.120:0/394867957' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ca435627-a127-409e-9d51-9bd1756bb312"}]': finished 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: audit 2024-09-10T04:16:00.625095+0000 mon.smithi120 (mon.0) 374 : audit [INF] from='client.? 172.21.15.120:0/394867957' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ca435627-a127-409e-9d51-9bd1756bb312"}]': finished 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:00.630937+0000 mon.smithi120 (mon.0) 375 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:00.630937+0000 mon.smithi120 (mon.0) 375 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: audit 2024-09-10T04:16:00.631175+0000 mon.smithi120 (mon.0) 376 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: audit 2024-09-10T04:16:00.631175+0000 mon.smithi120 (mon.0) 376 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: audit 2024-09-10T04:16:00.631394+0000 mon.smithi120 (mon.0) 377 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:01 smithi151 bash[25273]: audit 2024-09-10T04:16:00.631394+0000 mon.smithi120 (mon.0) 377 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:01.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: cluster 2024-09-10T04:15:59.342991+0000 mgr.smithi120.xfjtcc (mgr.14205) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:01.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: cluster 2024-09-10T04:15:59.342991+0000 mgr.smithi120.xfjtcc (mgr.14205) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:01.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: audit 2024-09-10T04:16:00.621841+0000 mon.smithi120 (mon.0) 373 : audit [INF] from='client.? 172.21.15.120:0/394867957' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ca435627-a127-409e-9d51-9bd1756bb312"} : dispatch 2024-09-10T04:16:01.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: audit 2024-09-10T04:16:00.621841+0000 mon.smithi120 (mon.0) 373 : audit [INF] from='client.? 172.21.15.120:0/394867957' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "ca435627-a127-409e-9d51-9bd1756bb312"} : dispatch 2024-09-10T04:16:01.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: audit 2024-09-10T04:16:00.625095+0000 mon.smithi120 (mon.0) 374 : audit [INF] from='client.? 172.21.15.120:0/394867957' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ca435627-a127-409e-9d51-9bd1756bb312"}]': finished 2024-09-10T04:16:01.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: audit 2024-09-10T04:16:00.625095+0000 mon.smithi120 (mon.0) 374 : audit [INF] from='client.? 172.21.15.120:0/394867957' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ca435627-a127-409e-9d51-9bd1756bb312"}]': finished 2024-09-10T04:16:01.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:00.630937+0000 mon.smithi120 (mon.0) 375 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-10T04:16:01.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:00.630937+0000 mon.smithi120 (mon.0) 375 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-10T04:16:01.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: audit 2024-09-10T04:16:00.631175+0000 mon.smithi120 (mon.0) 376 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:01.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: audit 2024-09-10T04:16:00.631175+0000 mon.smithi120 (mon.0) 376 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:01.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: audit 2024-09-10T04:16:00.631394+0000 mon.smithi120 (mon.0) 377 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:01.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:01 smithi120 bash[19947]: audit 2024-09-10T04:16:00.631394+0000 mon.smithi120 (mon.0) 377 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:02.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:02 smithi151 bash[25273]: audit 2024-09-10T04:16:01.170536+0000 mon.smithi151 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.151:0/4007949448' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:02.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:02 smithi151 bash[25273]: audit 2024-09-10T04:16:01.170536+0000 mon.smithi151 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.151:0/4007949448' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:02.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:02 smithi120 bash[19947]: audit 2024-09-10T04:16:01.170536+0000 mon.smithi151 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.151:0/4007949448' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:02.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:02 smithi120 bash[19947]: audit 2024-09-10T04:16:01.170536+0000 mon.smithi151 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.151:0/4007949448' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:03.130 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:16:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:03 smithi151 bash[25273]: cluster 2024-09-10T04:16:01.343463+0000 mgr.smithi120.xfjtcc (mgr.14205) 93 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:03 smithi151 bash[25273]: cluster 2024-09-10T04:16:01.343463+0000 mgr.smithi120.xfjtcc (mgr.14205) 93 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:03 smithi151 bash[25273]: audit 2024-09-10T04:16:02.079188+0000 mon.smithi120 (mon.0) 378 : audit [DBG] from='client.? 172.21.15.120:0/3077380985' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:03 smithi151 bash[25273]: audit 2024-09-10T04:16:02.079188+0000 mon.smithi120 (mon.0) 378 : audit [DBG] from='client.? 172.21.15.120:0/3077380985' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:03.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:03 smithi120 bash[19947]: cluster 2024-09-10T04:16:01.343463+0000 mgr.smithi120.xfjtcc (mgr.14205) 93 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:03.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:03 smithi120 bash[19947]: cluster 2024-09-10T04:16:01.343463+0000 mgr.smithi120.xfjtcc (mgr.14205) 93 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:03.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:03 smithi120 bash[19947]: audit 2024-09-10T04:16:02.079188+0000 mon.smithi120 (mon.0) 378 : audit [DBG] from='client.? 172.21.15.120:0/3077380985' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:03.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:03 smithi120 bash[19947]: audit 2024-09-10T04:16:02.079188+0000 mon.smithi120 (mon.0) 378 : audit [DBG] from='client.? 172.21.15.120:0/3077380985' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:04.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:04 smithi151 bash[25273]: audit 2024-09-10T04:16:03.653850+0000 mon.smithi120 (mon.0) 379 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:04.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:04 smithi151 bash[25273]: audit 2024-09-10T04:16:03.653850+0000 mon.smithi120 (mon.0) 379 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:04.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:04 smithi120 bash[19947]: audit 2024-09-10T04:16:03.653850+0000 mon.smithi120 (mon.0) 379 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:04.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:04 smithi120 bash[19947]: audit 2024-09-10T04:16:03.653850+0000 mon.smithi120 (mon.0) 379 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:04.570 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:16:05.156 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1725941760,"num_remapped_pgs":0} 2024-09-10T04:16:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: cluster 2024-09-10T04:16:03.343903+0000 mgr.smithi120.xfjtcc (mgr.14205) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: cluster 2024-09-10T04:16:03.343903+0000 mgr.smithi120.xfjtcc (mgr.14205) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.570303+0000 mon.smithi120 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.120:0/2399447783' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.570303+0000 mon.smithi120 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.120:0/2399447783' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.906191+0000 mon.smithi151 (mon.1) 4 : audit [INF] from='client.? 172.21.15.151:0/2072899118' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.906191+0000 mon.smithi151 (mon.1) 4 : audit [INF] from='client.? 172.21.15.151:0/2072899118' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.906574+0000 mon.smithi120 (mon.0) 381 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.906574+0000 mon.smithi120 (mon.0) 381 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.909917+0000 mon.smithi120 (mon.0) 382 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"}]': finished 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.909917+0000 mon.smithi120 (mon.0) 382 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"}]': finished 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: cluster 2024-09-10T04:16:04.916698+0000 mon.smithi120 (mon.0) 383 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: cluster 2024-09-10T04:16:04.916698+0000 mon.smithi120 (mon.0) 383 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.917105+0000 mon.smithi120 (mon.0) 384 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.917105+0000 mon.smithi120 (mon.0) 384 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.917486+0000 mon.smithi120 (mon.0) 385 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.917486+0000 mon.smithi120 (mon.0) 385 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.917887+0000 mon.smithi120 (mon.0) 386 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:05 smithi151 bash[25273]: audit 2024-09-10T04:16:04.917887+0000 mon.smithi120 (mon.0) 386 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: cluster 2024-09-10T04:16:03.343903+0000 mgr.smithi120.xfjtcc (mgr.14205) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: cluster 2024-09-10T04:16:03.343903+0000 mgr.smithi120.xfjtcc (mgr.14205) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.570303+0000 mon.smithi120 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.120:0/2399447783' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.570303+0000 mon.smithi120 (mon.0) 380 : audit [DBG] from='client.? 172.21.15.120:0/2399447783' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.906191+0000 mon.smithi151 (mon.1) 4 : audit [INF] from='client.? 172.21.15.151:0/2072899118' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"} : dispatch 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.906191+0000 mon.smithi151 (mon.1) 4 : audit [INF] from='client.? 172.21.15.151:0/2072899118' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"} : dispatch 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.906574+0000 mon.smithi120 (mon.0) 381 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"} : dispatch 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.906574+0000 mon.smithi120 (mon.0) 381 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"} : dispatch 2024-09-10T04:16:05.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.909917+0000 mon.smithi120 (mon.0) 382 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"}]': finished 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.909917+0000 mon.smithi120 (mon.0) 382 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2942c27c-50fe-461f-9219-6bfa9e807845"}]': finished 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: cluster 2024-09-10T04:16:04.916698+0000 mon.smithi120 (mon.0) 383 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: cluster 2024-09-10T04:16:04.916698+0000 mon.smithi120 (mon.0) 383 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.917105+0000 mon.smithi120 (mon.0) 384 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.917105+0000 mon.smithi120 (mon.0) 384 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.917486+0000 mon.smithi120 (mon.0) 385 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.917486+0000 mon.smithi120 (mon.0) 385 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.917887+0000 mon.smithi120 (mon.0) 386 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:05.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:05 smithi120 bash[19947]: audit 2024-09-10T04:16:04.917887+0000 mon.smithi120 (mon.0) 386 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:06.158 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:16:07.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: cluster 2024-09-10T04:16:05.344415+0000 mgr.smithi120.xfjtcc (mgr.14205) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:07.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: cluster 2024-09-10T04:16:05.344415+0000 mgr.smithi120.xfjtcc (mgr.14205) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.325075+0000 mon.smithi120 (mon.0) 387 : audit [INF] from='client.? 172.21.15.120:0/1323427421' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0166d245-c049-4007-aa85-f30248199406"} : dispatch 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.325075+0000 mon.smithi120 (mon.0) 387 : audit [INF] from='client.? 172.21.15.120:0/1323427421' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0166d245-c049-4007-aa85-f30248199406"} : dispatch 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.328867+0000 mon.smithi120 (mon.0) 388 : audit [INF] from='client.? 172.21.15.120:0/1323427421' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0166d245-c049-4007-aa85-f30248199406"}]': finished 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.328867+0000 mon.smithi120 (mon.0) 388 : audit [INF] from='client.? 172.21.15.120:0/1323427421' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0166d245-c049-4007-aa85-f30248199406"}]': finished 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: cluster 2024-09-10T04:16:06.334535+0000 mon.smithi120 (mon.0) 389 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: cluster 2024-09-10T04:16:06.334535+0000 mon.smithi120 (mon.0) 389 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.334758+0000 mon.smithi120 (mon.0) 390 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.334758+0000 mon.smithi120 (mon.0) 390 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.334903+0000 mon.smithi120 (mon.0) 391 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.334903+0000 mon.smithi120 (mon.0) 391 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:07.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.335080+0000 mon.smithi120 (mon.0) 392 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:07.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.335080+0000 mon.smithi120 (mon.0) 392 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:07.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.335226+0000 mon.smithi120 (mon.0) 393 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:07.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.335226+0000 mon.smithi120 (mon.0) 393 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:07.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.383140+0000 mon.smithi151 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.151:0/3668430604' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:07.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:07 smithi151 bash[25273]: audit 2024-09-10T04:16:06.383140+0000 mon.smithi151 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.151:0/3668430604' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:07.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: cluster 2024-09-10T04:16:05.344415+0000 mgr.smithi120.xfjtcc (mgr.14205) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:07.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: cluster 2024-09-10T04:16:05.344415+0000 mgr.smithi120.xfjtcc (mgr.14205) 95 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:07.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.325075+0000 mon.smithi120 (mon.0) 387 : audit [INF] from='client.? 172.21.15.120:0/1323427421' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0166d245-c049-4007-aa85-f30248199406"} : dispatch 2024-09-10T04:16:07.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.325075+0000 mon.smithi120 (mon.0) 387 : audit [INF] from='client.? 172.21.15.120:0/1323427421' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0166d245-c049-4007-aa85-f30248199406"} : dispatch 2024-09-10T04:16:07.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.328867+0000 mon.smithi120 (mon.0) 388 : audit [INF] from='client.? 172.21.15.120:0/1323427421' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0166d245-c049-4007-aa85-f30248199406"}]': finished 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.328867+0000 mon.smithi120 (mon.0) 388 : audit [INF] from='client.? 172.21.15.120:0/1323427421' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0166d245-c049-4007-aa85-f30248199406"}]': finished 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: cluster 2024-09-10T04:16:06.334535+0000 mon.smithi120 (mon.0) 389 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: cluster 2024-09-10T04:16:06.334535+0000 mon.smithi120 (mon.0) 389 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.334758+0000 mon.smithi120 (mon.0) 390 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.334758+0000 mon.smithi120 (mon.0) 390 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.334903+0000 mon.smithi120 (mon.0) 391 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.334903+0000 mon.smithi120 (mon.0) 391 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.335080+0000 mon.smithi120 (mon.0) 392 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.335080+0000 mon.smithi120 (mon.0) 392 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.335226+0000 mon.smithi120 (mon.0) 393 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.335226+0000 mon.smithi120 (mon.0) 393 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.383140+0000 mon.smithi151 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.151:0/3668430604' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:07.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:07 smithi120 bash[19947]: audit 2024-09-10T04:16:06.383140+0000 mon.smithi151 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.151:0/3668430604' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:08 smithi151 bash[25273]: audit 2024-09-10T04:16:07.832868+0000 mon.smithi120 (mon.0) 394 : audit [DBG] from='client.? 172.21.15.120:0/3859622839' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:08 smithi151 bash[25273]: audit 2024-09-10T04:16:07.832868+0000 mon.smithi120 (mon.0) 394 : audit [DBG] from='client.? 172.21.15.120:0/3859622839' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:08.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:08 smithi120 bash[19947]: audit 2024-09-10T04:16:07.832868+0000 mon.smithi120 (mon.0) 394 : audit [DBG] from='client.? 172.21.15.120:0/3859622839' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:08.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:08 smithi120 bash[19947]: audit 2024-09-10T04:16:07.832868+0000 mon.smithi120 (mon.0) 394 : audit [DBG] from='client.? 172.21.15.120:0/3859622839' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:09 smithi151 bash[25273]: cluster 2024-09-10T04:16:07.344758+0000 mgr.smithi120.xfjtcc (mgr.14205) 96 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:09 smithi151 bash[25273]: cluster 2024-09-10T04:16:07.344758+0000 mgr.smithi120.xfjtcc (mgr.14205) 96 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:09.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:09 smithi120 bash[19947]: cluster 2024-09-10T04:16:07.344758+0000 mgr.smithi120.xfjtcc (mgr.14205) 96 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:09.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:09 smithi120 bash[19947]: cluster 2024-09-10T04:16:07.344758+0000 mgr.smithi120.xfjtcc (mgr.14205) 96 : cluster [DBG] pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.887373+0000 mon.smithi151 (mon.1) 6 : audit [INF] from='client.? 172.21.15.151:0/1310225101' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"} : dispatch 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.887373+0000 mon.smithi151 (mon.1) 6 : audit [INF] from='client.? 172.21.15.151:0/1310225101' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"} : dispatch 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.887655+0000 mon.smithi120 (mon.0) 395 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"} : dispatch 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.887655+0000 mon.smithi120 (mon.0) 395 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"} : dispatch 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.890417+0000 mon.smithi120 (mon.0) 396 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"}]': finished 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.890417+0000 mon.smithi120 (mon.0) 396 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"}]': finished 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: cluster 2024-09-10T04:16:09.893492+0000 mon.smithi120 (mon.0) 397 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: cluster 2024-09-10T04:16:09.893492+0000 mon.smithi120 (mon.0) 397 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.893773+0000 mon.smithi120 (mon.0) 398 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.893773+0000 mon.smithi120 (mon.0) 398 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.894039+0000 mon.smithi120 (mon.0) 399 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:10.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.894039+0000 mon.smithi120 (mon.0) 399 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:10.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.894312+0000 mon.smithi120 (mon.0) 400 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:10.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.894312+0000 mon.smithi120 (mon.0) 400 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:10.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.894575+0000 mon.smithi120 (mon.0) 401 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:10.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.894575+0000 mon.smithi120 (mon.0) 401 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:10.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.894848+0000 mon.smithi120 (mon.0) 402 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:10.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:10 smithi151 bash[25273]: audit 2024-09-10T04:16:09.894848+0000 mon.smithi120 (mon.0) 402 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:10.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.887373+0000 mon.smithi151 (mon.1) 6 : audit [INF] from='client.? 172.21.15.151:0/1310225101' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"} : dispatch 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.887373+0000 mon.smithi151 (mon.1) 6 : audit [INF] from='client.? 172.21.15.151:0/1310225101' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"} : dispatch 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.887655+0000 mon.smithi120 (mon.0) 395 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"} : dispatch 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.887655+0000 mon.smithi120 (mon.0) 395 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"} : dispatch 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.890417+0000 mon.smithi120 (mon.0) 396 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"}]': finished 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.890417+0000 mon.smithi120 (mon.0) 396 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cafbe21f-5369-4b64-9b70-4b2364c1f243"}]': finished 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: cluster 2024-09-10T04:16:09.893492+0000 mon.smithi120 (mon.0) 397 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: cluster 2024-09-10T04:16:09.893492+0000 mon.smithi120 (mon.0) 397 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.893773+0000 mon.smithi120 (mon.0) 398 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.893773+0000 mon.smithi120 (mon.0) 398 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.894039+0000 mon.smithi120 (mon.0) 399 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.894039+0000 mon.smithi120 (mon.0) 399 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:10.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.894312+0000 mon.smithi120 (mon.0) 400 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:10.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.894312+0000 mon.smithi120 (mon.0) 400 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:10.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.894575+0000 mon.smithi120 (mon.0) 401 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:10.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.894575+0000 mon.smithi120 (mon.0) 401 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:10.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.894848+0000 mon.smithi120 (mon.0) 402 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:10.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:10 smithi120 bash[19947]: audit 2024-09-10T04:16:09.894848+0000 mon.smithi120 (mon.0) 402 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:10.937 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:16:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:11 smithi151 bash[25273]: cluster 2024-09-10T04:16:09.345161+0000 mgr.smithi120.xfjtcc (mgr.14205) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:11 smithi151 bash[25273]: cluster 2024-09-10T04:16:09.345161+0000 mgr.smithi120.xfjtcc (mgr.14205) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:11.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:11 smithi120 bash[19947]: cluster 2024-09-10T04:16:09.345161+0000 mgr.smithi120.xfjtcc (mgr.14205) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:11.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:11 smithi120 bash[19947]: cluster 2024-09-10T04:16:09.345161+0000 mgr.smithi120.xfjtcc (mgr.14205) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: cluster 2024-09-10T04:16:11.345647+0000 mgr.smithi120.xfjtcc (mgr.14205) 98 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: cluster 2024-09-10T04:16:11.345647+0000 mgr.smithi120.xfjtcc (mgr.14205) 98 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.416085+0000 mon.smithi151 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.151:0/22944867' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.416085+0000 mon.smithi151 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.151:0/22944867' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.612706+0000 mon.smithi120 (mon.0) 403 : audit [INF] from='client.? 172.21.15.120:0/142453035' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "28533df4-185f-4636-9608-53d982463f52"} : dispatch 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.612706+0000 mon.smithi120 (mon.0) 403 : audit [INF] from='client.? 172.21.15.120:0/142453035' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "28533df4-185f-4636-9608-53d982463f52"} : dispatch 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.615344+0000 mon.smithi120 (mon.0) 404 : audit [INF] from='client.? 172.21.15.120:0/142453035' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "28533df4-185f-4636-9608-53d982463f52"}]': finished 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.615344+0000 mon.smithi120 (mon.0) 404 : audit [INF] from='client.? 172.21.15.120:0/142453035' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "28533df4-185f-4636-9608-53d982463f52"}]': finished 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: cluster 2024-09-10T04:16:11.619674+0000 mon.smithi120 (mon.0) 405 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-10T04:16:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: cluster 2024-09-10T04:16:11.619674+0000 mon.smithi120 (mon.0) 405 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.619907+0000 mon.smithi120 (mon.0) 406 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.619907+0000 mon.smithi120 (mon.0) 406 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620046+0000 mon.smithi120 (mon.0) 407 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620046+0000 mon.smithi120 (mon.0) 407 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620222+0000 mon.smithi120 (mon.0) 408 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620222+0000 mon.smithi120 (mon.0) 408 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620370+0000 mon.smithi120 (mon.0) 409 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620370+0000 mon.smithi120 (mon.0) 409 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620506+0000 mon.smithi120 (mon.0) 410 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620506+0000 mon.smithi120 (mon.0) 410 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620644+0000 mon.smithi120 (mon.0) 411 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:12.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:12 smithi151 bash[25273]: audit 2024-09-10T04:16:11.620644+0000 mon.smithi120 (mon.0) 411 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:12.520 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: cluster 2024-09-10T04:16:11.345647+0000 mgr.smithi120.xfjtcc (mgr.14205) 98 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: cluster 2024-09-10T04:16:11.345647+0000 mgr.smithi120.xfjtcc (mgr.14205) 98 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.416085+0000 mon.smithi151 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.151:0/22944867' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.416085+0000 mon.smithi151 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.151:0/22944867' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.612706+0000 mon.smithi120 (mon.0) 403 : audit [INF] from='client.? 172.21.15.120:0/142453035' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "28533df4-185f-4636-9608-53d982463f52"} : dispatch 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.612706+0000 mon.smithi120 (mon.0) 403 : audit [INF] from='client.? 172.21.15.120:0/142453035' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "28533df4-185f-4636-9608-53d982463f52"} : dispatch 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.615344+0000 mon.smithi120 (mon.0) 404 : audit [INF] from='client.? 172.21.15.120:0/142453035' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "28533df4-185f-4636-9608-53d982463f52"}]': finished 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.615344+0000 mon.smithi120 (mon.0) 404 : audit [INF] from='client.? 172.21.15.120:0/142453035' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "28533df4-185f-4636-9608-53d982463f52"}]': finished 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: cluster 2024-09-10T04:16:11.619674+0000 mon.smithi120 (mon.0) 405 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-10T04:16:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: cluster 2024-09-10T04:16:11.619674+0000 mon.smithi120 (mon.0) 405 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.619907+0000 mon.smithi120 (mon.0) 406 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.619907+0000 mon.smithi120 (mon.0) 406 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620046+0000 mon.smithi120 (mon.0) 407 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620046+0000 mon.smithi120 (mon.0) 407 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620222+0000 mon.smithi120 (mon.0) 408 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620222+0000 mon.smithi120 (mon.0) 408 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620370+0000 mon.smithi120 (mon.0) 409 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620370+0000 mon.smithi120 (mon.0) 409 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620506+0000 mon.smithi120 (mon.0) 410 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620506+0000 mon.smithi120 (mon.0) 410 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620644+0000 mon.smithi120 (mon.0) 411 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:12.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:12 smithi120 bash[19947]: audit 2024-09-10T04:16:11.620644+0000 mon.smithi120 (mon.0) 411 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:13.480 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:13 smithi120 bash[19947]: audit 2024-09-10T04:16:12.520588+0000 mon.smithi120 (mon.0) 412 : audit [DBG] from='client.? 172.21.15.120:0/2394747721' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:13.481 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:13 smithi120 bash[19947]: audit 2024-09-10T04:16:12.520588+0000 mon.smithi120 (mon.0) 412 : audit [DBG] from='client.? 172.21.15.120:0/2394747721' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:13.482 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1725941771,"num_remapped_pgs":0} 2024-09-10T04:16:13.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:13 smithi151 bash[25273]: audit 2024-09-10T04:16:12.520588+0000 mon.smithi120 (mon.0) 412 : audit [DBG] from='client.? 172.21.15.120:0/2394747721' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:13.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:13 smithi151 bash[25273]: audit 2024-09-10T04:16:12.520588+0000 mon.smithi120 (mon.0) 412 : audit [DBG] from='client.? 172.21.15.120:0/2394747721' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:14.483 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:16:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:14 smithi151 bash[25273]: cluster 2024-09-10T04:16:13.346055+0000 mgr.smithi120.xfjtcc (mgr.14205) 99 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:14 smithi151 bash[25273]: cluster 2024-09-10T04:16:13.346055+0000 mgr.smithi120.xfjtcc (mgr.14205) 99 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:14 smithi151 bash[25273]: audit 2024-09-10T04:16:13.544101+0000 mon.smithi120 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.120:0/2991195308' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:14 smithi151 bash[25273]: audit 2024-09-10T04:16:13.544101+0000 mon.smithi120 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.120:0/2991195308' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:14.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:14 smithi120 bash[19947]: cluster 2024-09-10T04:16:13.346055+0000 mgr.smithi120.xfjtcc (mgr.14205) 99 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:14.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:14 smithi120 bash[19947]: cluster 2024-09-10T04:16:13.346055+0000 mgr.smithi120.xfjtcc (mgr.14205) 99 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:14.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:14 smithi120 bash[19947]: audit 2024-09-10T04:16:13.544101+0000 mon.smithi120 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.120:0/2991195308' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:14.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:14 smithi120 bash[19947]: audit 2024-09-10T04:16:13.544101+0000 mon.smithi120 (mon.0) 413 : audit [DBG] from='client.? 172.21.15.120:0/2991195308' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:15.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.168662+0000 mon.smithi151 (mon.1) 8 : audit [INF] from='client.? 172.21.15.151:0/1834668489' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"} : dispatch 2024-09-10T04:16:15.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.168662+0000 mon.smithi151 (mon.1) 8 : audit [INF] from='client.? 172.21.15.151:0/1834668489' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"} : dispatch 2024-09-10T04:16:15.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.169068+0000 mon.smithi120 (mon.0) 414 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"} : dispatch 2024-09-10T04:16:15.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.169068+0000 mon.smithi120 (mon.0) 414 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"} : dispatch 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.172667+0000 mon.smithi120 (mon.0) 415 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"}]': finished 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.172667+0000 mon.smithi120 (mon.0) 415 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"}]': finished 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: cluster 2024-09-10T04:16:15.179761+0000 mon.smithi120 (mon.0) 416 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: cluster 2024-09-10T04:16:15.179761+0000 mon.smithi120 (mon.0) 416 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.180208+0000 mon.smithi120 (mon.0) 417 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.180208+0000 mon.smithi120 (mon.0) 417 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.180697+0000 mon.smithi120 (mon.0) 418 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.180697+0000 mon.smithi120 (mon.0) 418 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.181165+0000 mon.smithi120 (mon.0) 419 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.181165+0000 mon.smithi120 (mon.0) 419 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.181602+0000 mon.smithi120 (mon.0) 420 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.181602+0000 mon.smithi120 (mon.0) 420 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:15.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.182057+0000 mon.smithi120 (mon.0) 421 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:15.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.182057+0000 mon.smithi120 (mon.0) 421 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:15.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.182501+0000 mon.smithi120 (mon.0) 422 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:15.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.182501+0000 mon.smithi120 (mon.0) 422 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:15.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.182948+0000 mon.smithi120 (mon.0) 423 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:15.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:15 smithi151 bash[25273]: audit 2024-09-10T04:16:15.182948+0000 mon.smithi120 (mon.0) 423 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:15.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.168662+0000 mon.smithi151 (mon.1) 8 : audit [INF] from='client.? 172.21.15.151:0/1834668489' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"} : dispatch 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.168662+0000 mon.smithi151 (mon.1) 8 : audit [INF] from='client.? 172.21.15.151:0/1834668489' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"} : dispatch 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.169068+0000 mon.smithi120 (mon.0) 414 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"} : dispatch 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.169068+0000 mon.smithi120 (mon.0) 414 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"} : dispatch 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.172667+0000 mon.smithi120 (mon.0) 415 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"}]': finished 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.172667+0000 mon.smithi120 (mon.0) 415 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9"}]': finished 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: cluster 2024-09-10T04:16:15.179761+0000 mon.smithi120 (mon.0) 416 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: cluster 2024-09-10T04:16:15.179761+0000 mon.smithi120 (mon.0) 416 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.180208+0000 mon.smithi120 (mon.0) 417 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.180208+0000 mon.smithi120 (mon.0) 417 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.180697+0000 mon.smithi120 (mon.0) 418 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.180697+0000 mon.smithi120 (mon.0) 418 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:15.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.181165+0000 mon.smithi120 (mon.0) 419 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.181165+0000 mon.smithi120 (mon.0) 419 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.181602+0000 mon.smithi120 (mon.0) 420 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.181602+0000 mon.smithi120 (mon.0) 420 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.182057+0000 mon.smithi120 (mon.0) 421 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.182057+0000 mon.smithi120 (mon.0) 421 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.182501+0000 mon.smithi120 (mon.0) 422 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.182501+0000 mon.smithi120 (mon.0) 422 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.182948+0000 mon.smithi120 (mon.0) 423 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:15.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:15 smithi120 bash[19947]: audit 2024-09-10T04:16:15.182948+0000 mon.smithi120 (mon.0) 423 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:16.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:16 smithi151 bash[25273]: cluster 2024-09-10T04:16:15.346388+0000 mgr.smithi120.xfjtcc (mgr.14205) 100 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:16.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:16 smithi151 bash[25273]: cluster 2024-09-10T04:16:15.346388+0000 mgr.smithi120.xfjtcc (mgr.14205) 100 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:16.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:16 smithi120 bash[19947]: cluster 2024-09-10T04:16:15.346388+0000 mgr.smithi120.xfjtcc (mgr.14205) 100 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:16.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:16 smithi120 bash[19947]: cluster 2024-09-10T04:16:15.346388+0000 mgr.smithi120.xfjtcc (mgr.14205) 100 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:17.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:16.647612+0000 mon.smithi151 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.151:0/1861769272' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:17.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:16.647612+0000 mon.smithi151 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.151:0/1861769272' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:17.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.022045+0000 mon.smithi120 (mon.0) 424 : audit [INF] from='client.? 172.21.15.120:0/873733108' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "93aa6c24-d48d-4878-93d8-2d304cecf27e"} : dispatch 2024-09-10T04:16:17.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.022045+0000 mon.smithi120 (mon.0) 424 : audit [INF] from='client.? 172.21.15.120:0/873733108' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "93aa6c24-d48d-4878-93d8-2d304cecf27e"} : dispatch 2024-09-10T04:16:17.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.025540+0000 mon.smithi120 (mon.0) 425 : audit [INF] from='client.? 172.21.15.120:0/873733108' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "93aa6c24-d48d-4878-93d8-2d304cecf27e"}]': finished 2024-09-10T04:16:17.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.025540+0000 mon.smithi120 (mon.0) 425 : audit [INF] from='client.? 172.21.15.120:0/873733108' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "93aa6c24-d48d-4878-93d8-2d304cecf27e"}]': finished 2024-09-10T04:16:17.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: cluster 2024-09-10T04:16:17.030455+0000 mon.smithi120 (mon.0) 426 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-10T04:16:17.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: cluster 2024-09-10T04:16:17.030455+0000 mon.smithi120 (mon.0) 426 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.030872+0000 mon.smithi120 (mon.0) 427 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.030872+0000 mon.smithi120 (mon.0) 427 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.031282+0000 mon.smithi120 (mon.0) 428 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.031282+0000 mon.smithi120 (mon.0) 428 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.031713+0000 mon.smithi120 (mon.0) 429 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.031713+0000 mon.smithi120 (mon.0) 429 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.032105+0000 mon.smithi120 (mon.0) 430 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.032105+0000 mon.smithi120 (mon.0) 430 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.032521+0000 mon.smithi120 (mon.0) 431 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.032521+0000 mon.smithi120 (mon.0) 431 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.032910+0000 mon.smithi120 (mon.0) 432 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.032910+0000 mon.smithi120 (mon.0) 432 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.033307+0000 mon.smithi120 (mon.0) 433 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:17.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.033307+0000 mon.smithi120 (mon.0) 433 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:17.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.033702+0000 mon.smithi120 (mon.0) 434 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:17.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:17 smithi151 bash[25273]: audit 2024-09-10T04:16:17.033702+0000 mon.smithi120 (mon.0) 434 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:17.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:16.647612+0000 mon.smithi151 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.151:0/1861769272' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:17.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:16.647612+0000 mon.smithi151 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.151:0/1861769272' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:17.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.022045+0000 mon.smithi120 (mon.0) 424 : audit [INF] from='client.? 172.21.15.120:0/873733108' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "93aa6c24-d48d-4878-93d8-2d304cecf27e"} : dispatch 2024-09-10T04:16:17.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.022045+0000 mon.smithi120 (mon.0) 424 : audit [INF] from='client.? 172.21.15.120:0/873733108' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "93aa6c24-d48d-4878-93d8-2d304cecf27e"} : dispatch 2024-09-10T04:16:17.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.025540+0000 mon.smithi120 (mon.0) 425 : audit [INF] from='client.? 172.21.15.120:0/873733108' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "93aa6c24-d48d-4878-93d8-2d304cecf27e"}]': finished 2024-09-10T04:16:17.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.025540+0000 mon.smithi120 (mon.0) 425 : audit [INF] from='client.? 172.21.15.120:0/873733108' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "93aa6c24-d48d-4878-93d8-2d304cecf27e"}]': finished 2024-09-10T04:16:17.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: cluster 2024-09-10T04:16:17.030455+0000 mon.smithi120 (mon.0) 426 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-10T04:16:17.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: cluster 2024-09-10T04:16:17.030455+0000 mon.smithi120 (mon.0) 426 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.030872+0000 mon.smithi120 (mon.0) 427 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.030872+0000 mon.smithi120 (mon.0) 427 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.031282+0000 mon.smithi120 (mon.0) 428 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.031282+0000 mon.smithi120 (mon.0) 428 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.031713+0000 mon.smithi120 (mon.0) 429 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.031713+0000 mon.smithi120 (mon.0) 429 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.032105+0000 mon.smithi120 (mon.0) 430 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.032105+0000 mon.smithi120 (mon.0) 430 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.032521+0000 mon.smithi120 (mon.0) 431 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.032521+0000 mon.smithi120 (mon.0) 431 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.032910+0000 mon.smithi120 (mon.0) 432 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.032910+0000 mon.smithi120 (mon.0) 432 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:17.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.033307+0000 mon.smithi120 (mon.0) 433 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:17.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.033307+0000 mon.smithi120 (mon.0) 433 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:17.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.033702+0000 mon.smithi120 (mon.0) 434 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:17.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:17 smithi120 bash[19947]: audit 2024-09-10T04:16:17.033702+0000 mon.smithi120 (mon.0) 434 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:18.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:18 smithi120 bash[19947]: cluster 2024-09-10T04:16:17.346725+0000 mgr.smithi120.xfjtcc (mgr.14205) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:18.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:18 smithi120 bash[19947]: cluster 2024-09-10T04:16:17.346725+0000 mgr.smithi120.xfjtcc (mgr.14205) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:18.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:18 smithi151 bash[25273]: cluster 2024-09-10T04:16:17.346725+0000 mgr.smithi120.xfjtcc (mgr.14205) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:18.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:18 smithi151 bash[25273]: cluster 2024-09-10T04:16:17.346725+0000 mgr.smithi120.xfjtcc (mgr.14205) 101 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:19.246 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:16:19.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:19 smithi151 bash[25273]: audit 2024-09-10T04:16:18.530973+0000 mon.smithi120 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.120:0/1442634693' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:19.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:19 smithi151 bash[25273]: audit 2024-09-10T04:16:18.530973+0000 mon.smithi120 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.120:0/1442634693' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:19.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:19 smithi151 bash[25273]: audit 2024-09-10T04:16:18.654182+0000 mon.smithi120 (mon.0) 436 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:19.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:19 smithi151 bash[25273]: audit 2024-09-10T04:16:18.654182+0000 mon.smithi120 (mon.0) 436 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:19.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:19 smithi120 bash[19947]: audit 2024-09-10T04:16:18.530973+0000 mon.smithi120 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.120:0/1442634693' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:19.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:19 smithi120 bash[19947]: audit 2024-09-10T04:16:18.530973+0000 mon.smithi120 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.120:0/1442634693' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-10T04:16:19.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:19 smithi120 bash[19947]: audit 2024-09-10T04:16:18.654182+0000 mon.smithi120 (mon.0) 436 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:19.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:19 smithi120 bash[19947]: audit 2024-09-10T04:16:18.654182+0000 mon.smithi120 (mon.0) 436 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:20.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:20 smithi151 bash[25273]: cluster 2024-09-10T04:16:19.347119+0000 mgr.smithi120.xfjtcc (mgr.14205) 102 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:20.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:20 smithi151 bash[25273]: cluster 2024-09-10T04:16:19.347119+0000 mgr.smithi120.xfjtcc (mgr.14205) 102 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:20.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:20 smithi120 bash[19947]: cluster 2024-09-10T04:16:19.347119+0000 mgr.smithi120.xfjtcc (mgr.14205) 102 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:20.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:20 smithi120 bash[19947]: cluster 2024-09-10T04:16:19.347119+0000 mgr.smithi120.xfjtcc (mgr.14205) 102 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:20.709 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:16:21.313 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725941777,"num_remapped_pgs":0} 2024-09-10T04:16:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:21 smithi120 bash[19947]: audit 2024-09-10T04:16:20.709865+0000 mon.smithi120 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.120:0/3662929631' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:21 smithi120 bash[19947]: audit 2024-09-10T04:16:20.709865+0000 mon.smithi120 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.120:0/3662929631' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:21.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:21 smithi151 bash[25273]: audit 2024-09-10T04:16:20.709865+0000 mon.smithi120 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.120:0/3662929631' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:21.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:21 smithi151 bash[25273]: audit 2024-09-10T04:16:20.709865+0000 mon.smithi120 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.120:0/3662929631' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:22.314 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:16:22.325 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:22 smithi120 bash[19947]: cluster 2024-09-10T04:16:21.347590+0000 mgr.smithi120.xfjtcc (mgr.14205) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:22.325 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:22 smithi120 bash[19947]: cluster 2024-09-10T04:16:21.347590+0000 mgr.smithi120.xfjtcc (mgr.14205) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:22.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:22 smithi151 bash[25273]: cluster 2024-09-10T04:16:21.347590+0000 mgr.smithi120.xfjtcc (mgr.14205) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:22.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:22 smithi151 bash[25273]: cluster 2024-09-10T04:16:21.347590+0000 mgr.smithi120.xfjtcc (mgr.14205) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:24.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:24 smithi151 bash[25273]: cluster 2024-09-10T04:16:23.348048+0000 mgr.smithi120.xfjtcc (mgr.14205) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:24.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:24 smithi151 bash[25273]: cluster 2024-09-10T04:16:23.348048+0000 mgr.smithi120.xfjtcc (mgr.14205) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:24.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:24 smithi120 bash[19947]: cluster 2024-09-10T04:16:23.348048+0000 mgr.smithi120.xfjtcc (mgr.14205) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:24.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:24 smithi120 bash[19947]: cluster 2024-09-10T04:16:23.348048+0000 mgr.smithi120.xfjtcc (mgr.14205) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:26.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:26 smithi151 bash[25273]: cluster 2024-09-10T04:16:25.348525+0000 mgr.smithi120.xfjtcc (mgr.14205) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:26.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:26 smithi151 bash[25273]: cluster 2024-09-10T04:16:25.348525+0000 mgr.smithi120.xfjtcc (mgr.14205) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:26.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:26 smithi120 bash[19947]: cluster 2024-09-10T04:16:25.348525+0000 mgr.smithi120.xfjtcc (mgr.14205) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:26.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:26 smithi120 bash[19947]: cluster 2024-09-10T04:16:25.348525+0000 mgr.smithi120.xfjtcc (mgr.14205) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:27.109 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:16:28.664 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:28 smithi120 bash[19947]: cluster 2024-09-10T04:16:27.348995+0000 mgr.smithi120.xfjtcc (mgr.14205) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:28.664 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:28 smithi120 bash[19947]: cluster 2024-09-10T04:16:27.348995+0000 mgr.smithi120.xfjtcc (mgr.14205) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:28.728 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:28 smithi151 bash[25273]: cluster 2024-09-10T04:16:27.348995+0000 mgr.smithi120.xfjtcc (mgr.14205) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:28.728 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:28 smithi151 bash[25273]: cluster 2024-09-10T04:16:27.348995+0000 mgr.smithi120.xfjtcc (mgr.14205) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:28.884 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:16:29.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:29 smithi120 bash[19947]: audit 2024-09-10T04:16:28.884056+0000 mon.smithi120 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.120:0/1005263506' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:29.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:29 smithi120 bash[19947]: audit 2024-09-10T04:16:28.884056+0000 mon.smithi120 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.120:0/1005263506' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:29.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:29 smithi120 bash[19947]: audit 2024-09-10T04:16:29.343047+0000 mon.smithi120 (mon.0) 439 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-10T04:16:29.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:29 smithi120 bash[19947]: audit 2024-09-10T04:16:29.343047+0000 mon.smithi120 (mon.0) 439 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-10T04:16:29.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:29 smithi120 bash[19947]: audit 2024-09-10T04:16:29.344402+0000 mon.smithi120 (mon.0) 440 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:29.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:29 smithi120 bash[19947]: audit 2024-09-10T04:16:29.344402+0000 mon.smithi120 (mon.0) 440 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:29.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:29 smithi151 bash[25273]: audit 2024-09-10T04:16:28.884056+0000 mon.smithi120 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.120:0/1005263506' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:29.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:29 smithi151 bash[25273]: audit 2024-09-10T04:16:28.884056+0000 mon.smithi120 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.120:0/1005263506' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:29.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:29 smithi151 bash[25273]: audit 2024-09-10T04:16:29.343047+0000 mon.smithi120 (mon.0) 439 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-10T04:16:29.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:29 smithi151 bash[25273]: audit 2024-09-10T04:16:29.343047+0000 mon.smithi120 (mon.0) 439 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-10T04:16:29.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:29 smithi151 bash[25273]: audit 2024-09-10T04:16:29.344402+0000 mon.smithi120 (mon.0) 440 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:29.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:29 smithi151 bash[25273]: audit 2024-09-10T04:16:29.344402+0000 mon.smithi120 (mon.0) 440 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:29.897 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725941777,"num_remapped_pgs":0} 2024-09-10T04:16:30.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:30 smithi151 bash[25273]: cephadm 2024-09-10T04:16:29.345799+0000 mgr.smithi120.xfjtcc (mgr.14205) 107 : cephadm [INF] Deploying daemon osd.0 on smithi151 2024-09-10T04:16:30.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:30 smithi151 bash[25273]: cephadm 2024-09-10T04:16:29.345799+0000 mgr.smithi120.xfjtcc (mgr.14205) 107 : cephadm [INF] Deploying daemon osd.0 on smithi151 2024-09-10T04:16:30.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:30 smithi151 bash[25273]: cluster 2024-09-10T04:16:29.349488+0000 mgr.smithi120.xfjtcc (mgr.14205) 108 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:30.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:30 smithi151 bash[25273]: cluster 2024-09-10T04:16:29.349488+0000 mgr.smithi120.xfjtcc (mgr.14205) 108 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:30.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:30 smithi120 bash[19947]: cephadm 2024-09-10T04:16:29.345799+0000 mgr.smithi120.xfjtcc (mgr.14205) 107 : cephadm [INF] Deploying daemon osd.0 on smithi151 2024-09-10T04:16:30.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:30 smithi120 bash[19947]: cephadm 2024-09-10T04:16:29.345799+0000 mgr.smithi120.xfjtcc (mgr.14205) 107 : cephadm [INF] Deploying daemon osd.0 on smithi151 2024-09-10T04:16:30.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:30 smithi120 bash[19947]: cluster 2024-09-10T04:16:29.349488+0000 mgr.smithi120.xfjtcc (mgr.14205) 108 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:30.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:30 smithi120 bash[19947]: cluster 2024-09-10T04:16:29.349488+0000 mgr.smithi120.xfjtcc (mgr.14205) 108 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:30.899 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:16:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:32 smithi151 bash[25273]: cluster 2024-09-10T04:16:31.349966+0000 mgr.smithi120.xfjtcc (mgr.14205) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:32 smithi151 bash[25273]: cluster 2024-09-10T04:16:31.349966+0000 mgr.smithi120.xfjtcc (mgr.14205) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:32 smithi151 bash[25273]: audit 2024-09-10T04:16:32.005010+0000 mon.smithi120 (mon.0) 441 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-10T04:16:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:32 smithi151 bash[25273]: audit 2024-09-10T04:16:32.005010+0000 mon.smithi120 (mon.0) 441 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-10T04:16:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:32 smithi151 bash[25273]: audit 2024-09-10T04:16:32.006813+0000 mon.smithi120 (mon.0) 442 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:32 smithi151 bash[25273]: audit 2024-09-10T04:16:32.006813+0000 mon.smithi120 (mon.0) 442 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:32 smithi151 bash[25273]: cephadm 2024-09-10T04:16:32.008324+0000 mgr.smithi120.xfjtcc (mgr.14205) 110 : cephadm [INF] Deploying daemon osd.1 on smithi120 2024-09-10T04:16:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:32 smithi151 bash[25273]: cephadm 2024-09-10T04:16:32.008324+0000 mgr.smithi120.xfjtcc (mgr.14205) 110 : cephadm [INF] Deploying daemon osd.1 on smithi120 2024-09-10T04:16:32.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:32 smithi120 bash[19947]: cluster 2024-09-10T04:16:31.349966+0000 mgr.smithi120.xfjtcc (mgr.14205) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:32.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:32 smithi120 bash[19947]: cluster 2024-09-10T04:16:31.349966+0000 mgr.smithi120.xfjtcc (mgr.14205) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:32.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:32 smithi120 bash[19947]: audit 2024-09-10T04:16:32.005010+0000 mon.smithi120 (mon.0) 441 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-10T04:16:32.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:32 smithi120 bash[19947]: audit 2024-09-10T04:16:32.005010+0000 mon.smithi120 (mon.0) 441 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-10T04:16:32.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:32 smithi120 bash[19947]: audit 2024-09-10T04:16:32.006813+0000 mon.smithi120 (mon.0) 442 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:32.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:32 smithi120 bash[19947]: audit 2024-09-10T04:16:32.006813+0000 mon.smithi120 (mon.0) 442 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:32.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:32 smithi120 bash[19947]: cephadm 2024-09-10T04:16:32.008324+0000 mgr.smithi120.xfjtcc (mgr.14205) 110 : cephadm [INF] Deploying daemon osd.1 on smithi120 2024-09-10T04:16:32.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:32 smithi120 bash[19947]: cephadm 2024-09-10T04:16:32.008324+0000 mgr.smithi120.xfjtcc (mgr.14205) 110 : cephadm [INF] Deploying daemon osd.1 on smithi120 2024-09-10T04:16:33.939 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:33 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:34.189 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:34.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: cluster 2024-09-10T04:16:33.350381+0000 mgr.smithi120.xfjtcc (mgr.14205) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:34.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: cluster 2024-09-10T04:16:33.350381+0000 mgr.smithi120.xfjtcc (mgr.14205) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:34.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:33.654206+0000 mon.smithi120 (mon.0) 443 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:34.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:33.654206+0000 mon.smithi120 (mon.0) 443 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:34.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:34.231403+0000 mon.smithi120 (mon.0) 444 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:34.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:34.231403+0000 mon.smithi120 (mon.0) 444 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:34.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:34.238758+0000 mon.smithi120 (mon.0) 445 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:34.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:34.238758+0000 mon.smithi120 (mon.0) 445 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:34.688 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:34.240035+0000 mon.smithi120 (mon.0) 446 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-10T04:16:34.688 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:34.240035+0000 mon.smithi120 (mon.0) 446 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-10T04:16:34.688 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:34.240984+0000 mon.smithi120 (mon.0) 447 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:34.688 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:34 smithi151 bash[25273]: audit 2024-09-10T04:16:34.240984+0000 mon.smithi120 (mon.0) 447 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:34.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: cluster 2024-09-10T04:16:33.350381+0000 mgr.smithi120.xfjtcc (mgr.14205) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:34.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: cluster 2024-09-10T04:16:33.350381+0000 mgr.smithi120.xfjtcc (mgr.14205) 111 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:34.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:33.654206+0000 mon.smithi120 (mon.0) 443 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:34.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:33.654206+0000 mon.smithi120 (mon.0) 443 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:34.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:34.231403+0000 mon.smithi120 (mon.0) 444 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:34.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:34.231403+0000 mon.smithi120 (mon.0) 444 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:34.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:34.238758+0000 mon.smithi120 (mon.0) 445 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:34.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:34.238758+0000 mon.smithi120 (mon.0) 445 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:34.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:34.240035+0000 mon.smithi120 (mon.0) 446 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-10T04:16:34.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:34.240035+0000 mon.smithi120 (mon.0) 446 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-10T04:16:34.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:34.240984+0000 mon.smithi120 (mon.0) 447 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:34.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:34 smithi120 bash[19947]: audit 2024-09-10T04:16:34.240984+0000 mon.smithi120 (mon.0) 447 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:35.669 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:16:35.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:35 smithi151 bash[25273]: cephadm 2024-09-10T04:16:34.242040+0000 mgr.smithi120.xfjtcc (mgr.14205) 112 : cephadm [INF] Deploying daemon osd.2 on smithi151 2024-09-10T04:16:35.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:35 smithi151 bash[25273]: cephadm 2024-09-10T04:16:34.242040+0000 mgr.smithi120.xfjtcc (mgr.14205) 112 : cephadm [INF] Deploying daemon osd.2 on smithi151 2024-09-10T04:16:35.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:35 smithi120 bash[19947]: cephadm 2024-09-10T04:16:34.242040+0000 mgr.smithi120.xfjtcc (mgr.14205) 112 : cephadm [INF] Deploying daemon osd.2 on smithi151 2024-09-10T04:16:35.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:35 smithi120 bash[19947]: cephadm 2024-09-10T04:16:34.242040+0000 mgr.smithi120.xfjtcc (mgr.14205) 112 : cephadm [INF] Deploying daemon osd.2 on smithi151 2024-09-10T04:16:36.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:36 smithi151 bash[25273]: cluster 2024-09-10T04:16:35.350639+0000 mgr.smithi120.xfjtcc (mgr.14205) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:36.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:36 smithi151 bash[25273]: cluster 2024-09-10T04:16:35.350639+0000 mgr.smithi120.xfjtcc (mgr.14205) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:36.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:36 smithi120 bash[19947]: cluster 2024-09-10T04:16:35.350639+0000 mgr.smithi120.xfjtcc (mgr.14205) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:36.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:36 smithi120 bash[19947]: cluster 2024-09-10T04:16:35.350639+0000 mgr.smithi120.xfjtcc (mgr.14205) 113 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:37.051 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:36 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:37.229 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:16:37.360 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:37 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:38.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.224100+0000 mon.smithi120 (mon.0) 448 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:38.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.224100+0000 mon.smithi120 (mon.0) 448 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:38.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.229107+0000 mon.smithi120 (mon.0) 449 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:38.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.229107+0000 mon.smithi120 (mon.0) 449 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.229430+0000 mon.smithi120 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.120:0/487561267' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.229430+0000 mon.smithi120 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.120:0/487561267' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.229888+0000 mon.smithi120 (mon.0) 451 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.229888+0000 mon.smithi120 (mon.0) 451 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.230621+0000 mon.smithi120 (mon.0) 452 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: audit 2024-09-10T04:16:37.230621+0000 mon.smithi120 (mon.0) 452 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: cephadm 2024-09-10T04:16:37.231221+0000 mgr.smithi120.xfjtcc (mgr.14205) 114 : cephadm [INF] Deploying daemon osd.3 on smithi120 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: cephadm 2024-09-10T04:16:37.231221+0000 mgr.smithi120.xfjtcc (mgr.14205) 114 : cephadm [INF] Deploying daemon osd.3 on smithi120 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: cluster 2024-09-10T04:16:37.350892+0000 mgr.smithi120.xfjtcc (mgr.14205) 115 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:38.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:38 smithi120 bash[19947]: cluster 2024-09-10T04:16:37.350892+0000 mgr.smithi120.xfjtcc (mgr.14205) 115 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:38.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.224100+0000 mon.smithi120 (mon.0) 448 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:38.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.224100+0000 mon.smithi120 (mon.0) 448 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:38.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.229107+0000 mon.smithi120 (mon.0) 449 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:38.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.229107+0000 mon.smithi120 (mon.0) 449 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:38.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.229430+0000 mon.smithi120 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.120:0/487561267' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:38.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.229430+0000 mon.smithi120 (mon.0) 450 : audit [DBG] from='client.? 172.21.15.120:0/487561267' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:38.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.229888+0000 mon.smithi120 (mon.0) 451 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-10T04:16:38.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.229888+0000 mon.smithi120 (mon.0) 451 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-10T04:16:38.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.230621+0000 mon.smithi120 (mon.0) 452 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:38.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: audit 2024-09-10T04:16:37.230621+0000 mon.smithi120 (mon.0) 452 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:38.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: cephadm 2024-09-10T04:16:37.231221+0000 mgr.smithi120.xfjtcc (mgr.14205) 114 : cephadm [INF] Deploying daemon osd.3 on smithi120 2024-09-10T04:16:38.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: cephadm 2024-09-10T04:16:37.231221+0000 mgr.smithi120.xfjtcc (mgr.14205) 114 : cephadm [INF] Deploying daemon osd.3 on smithi120 2024-09-10T04:16:38.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: cluster 2024-09-10T04:16:37.350892+0000 mgr.smithi120.xfjtcc (mgr.14205) 115 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:38.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 bash[25273]: cluster 2024-09-10T04:16:37.350892+0000 mgr.smithi120.xfjtcc (mgr.14205) 115 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:38.893 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725941777,"num_remapped_pgs":0} 2024-09-10T04:16:39.058 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:38 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:39.310 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:39 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:39.895 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:16:40.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: cluster 2024-09-10T04:16:39.351286+0000 mgr.smithi120.xfjtcc (mgr.14205) 116 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:40.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: cluster 2024-09-10T04:16:39.351286+0000 mgr.smithi120.xfjtcc (mgr.14205) 116 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:40.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: audit 2024-09-10T04:16:39.363824+0000 mon.smithi120 (mon.0) 453 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: audit 2024-09-10T04:16:39.363824+0000 mon.smithi120 (mon.0) 453 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: audit 2024-09-10T04:16:39.372359+0000 mon.smithi120 (mon.0) 454 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: audit 2024-09-10T04:16:39.372359+0000 mon.smithi120 (mon.0) 454 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: audit 2024-09-10T04:16:39.374057+0000 mon.smithi120 (mon.0) 455 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: audit 2024-09-10T04:16:39.374057+0000 mon.smithi120 (mon.0) 455 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: audit 2024-09-10T04:16:39.375600+0000 mon.smithi120 (mon.0) 456 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: audit 2024-09-10T04:16:39.375600+0000 mon.smithi120 (mon.0) 456 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: cephadm 2024-09-10T04:16:39.377042+0000 mgr.smithi120.xfjtcc (mgr.14205) 117 : cephadm [INF] Deploying daemon osd.4 on smithi151 2024-09-10T04:16:40.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:40 smithi151 bash[25273]: cephadm 2024-09-10T04:16:39.377042+0000 mgr.smithi120.xfjtcc (mgr.14205) 117 : cephadm [INF] Deploying daemon osd.4 on smithi151 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: cluster 2024-09-10T04:16:39.351286+0000 mgr.smithi120.xfjtcc (mgr.14205) 116 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: cluster 2024-09-10T04:16:39.351286+0000 mgr.smithi120.xfjtcc (mgr.14205) 116 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: audit 2024-09-10T04:16:39.363824+0000 mon.smithi120 (mon.0) 453 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: audit 2024-09-10T04:16:39.363824+0000 mon.smithi120 (mon.0) 453 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: audit 2024-09-10T04:16:39.372359+0000 mon.smithi120 (mon.0) 454 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: audit 2024-09-10T04:16:39.372359+0000 mon.smithi120 (mon.0) 454 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: audit 2024-09-10T04:16:39.374057+0000 mon.smithi120 (mon.0) 455 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: audit 2024-09-10T04:16:39.374057+0000 mon.smithi120 (mon.0) 455 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-10T04:16:40.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: audit 2024-09-10T04:16:39.375600+0000 mon.smithi120 (mon.0) 456 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: audit 2024-09-10T04:16:39.375600+0000 mon.smithi120 (mon.0) 456 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: cephadm 2024-09-10T04:16:39.377042+0000 mgr.smithi120.xfjtcc (mgr.14205) 117 : cephadm [INF] Deploying daemon osd.4 on smithi151 2024-09-10T04:16:40.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:40 smithi120 bash[19947]: cephadm 2024-09-10T04:16:39.377042+0000 mgr.smithi120.xfjtcc (mgr.14205) 117 : cephadm [INF] Deploying daemon osd.4 on smithi151 2024-09-10T04:16:42.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:42 smithi151 bash[25273]: cluster 2024-09-10T04:16:41.351754+0000 mgr.smithi120.xfjtcc (mgr.14205) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:42.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:42 smithi151 bash[25273]: cluster 2024-09-10T04:16:41.351754+0000 mgr.smithi120.xfjtcc (mgr.14205) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:42.725 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:42 smithi120 bash[19947]: cluster 2024-09-10T04:16:41.351754+0000 mgr.smithi120.xfjtcc (mgr.14205) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:42.725 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:42 smithi120 bash[19947]: cluster 2024-09-10T04:16:41.351754+0000 mgr.smithi120.xfjtcc (mgr.14205) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:42.725 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:42 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:42.998 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:42 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:44.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: audit 2024-09-10T04:16:43.046956+0000 mon.smithi120 (mon.0) 457 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:44.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: audit 2024-09-10T04:16:43.046956+0000 mon.smithi120 (mon.0) 457 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:44.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: audit 2024-09-10T04:16:43.051731+0000 mon.smithi120 (mon.0) 458 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:44.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: audit 2024-09-10T04:16:43.051731+0000 mon.smithi120 (mon.0) 458 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:44.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: audit 2024-09-10T04:16:43.052425+0000 mon.smithi120 (mon.0) 459 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-10T04:16:44.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: audit 2024-09-10T04:16:43.052425+0000 mon.smithi120 (mon.0) 459 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-10T04:16:44.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: audit 2024-09-10T04:16:43.053055+0000 mon.smithi120 (mon.0) 460 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:44.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: audit 2024-09-10T04:16:43.053055+0000 mon.smithi120 (mon.0) 460 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:44.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: cephadm 2024-09-10T04:16:43.053587+0000 mgr.smithi120.xfjtcc (mgr.14205) 119 : cephadm [INF] Deploying daemon osd.5 on smithi120 2024-09-10T04:16:44.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:44 smithi120 bash[19947]: cephadm 2024-09-10T04:16:43.053587+0000 mgr.smithi120.xfjtcc (mgr.14205) 119 : cephadm [INF] Deploying daemon osd.5 on smithi120 2024-09-10T04:16:44.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: audit 2024-09-10T04:16:43.046956+0000 mon.smithi120 (mon.0) 457 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:44.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: audit 2024-09-10T04:16:43.046956+0000 mon.smithi120 (mon.0) 457 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:44.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: audit 2024-09-10T04:16:43.051731+0000 mon.smithi120 (mon.0) 458 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:44.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: audit 2024-09-10T04:16:43.051731+0000 mon.smithi120 (mon.0) 458 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:44.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: audit 2024-09-10T04:16:43.052425+0000 mon.smithi120 (mon.0) 459 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-10T04:16:44.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: audit 2024-09-10T04:16:43.052425+0000 mon.smithi120 (mon.0) 459 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-10T04:16:44.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: audit 2024-09-10T04:16:43.053055+0000 mon.smithi120 (mon.0) 460 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:44.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: audit 2024-09-10T04:16:43.053055+0000 mon.smithi120 (mon.0) 460 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:44.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: cephadm 2024-09-10T04:16:43.053587+0000 mgr.smithi120.xfjtcc (mgr.14205) 119 : cephadm [INF] Deploying daemon osd.5 on smithi120 2024-09-10T04:16:44.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 bash[25273]: cephadm 2024-09-10T04:16:43.053587+0000 mgr.smithi120.xfjtcc (mgr.14205) 119 : cephadm [INF] Deploying daemon osd.5 on smithi120 2024-09-10T04:16:45.187 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:44 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:45.187 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:45 smithi151 bash[25273]: cluster 2024-09-10T04:16:43.352156+0000 mgr.smithi120.xfjtcc (mgr.14205) 120 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:45.188 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:45 smithi151 bash[25273]: cluster 2024-09-10T04:16:43.352156+0000 mgr.smithi120.xfjtcc (mgr.14205) 120 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:45.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:45 smithi120 bash[19947]: cluster 2024-09-10T04:16:43.352156+0000 mgr.smithi120.xfjtcc (mgr.14205) 120 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:45.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:45 smithi120 bash[19947]: cluster 2024-09-10T04:16:43.352156+0000 mgr.smithi120.xfjtcc (mgr.14205) 120 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:45.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:45 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:45.859 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:16:46.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: cluster 2024-09-10T04:16:45.352471+0000 mgr.smithi120.xfjtcc (mgr.14205) 121 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: cluster 2024-09-10T04:16:45.352471+0000 mgr.smithi120.xfjtcc (mgr.14205) 121 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: audit 2024-09-10T04:16:45.364749+0000 mon.smithi120 (mon.0) 461 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: audit 2024-09-10T04:16:45.364749+0000 mon.smithi120 (mon.0) 461 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: audit 2024-09-10T04:16:45.370291+0000 mon.smithi120 (mon.0) 462 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: audit 2024-09-10T04:16:45.370291+0000 mon.smithi120 (mon.0) 462 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: audit 2024-09-10T04:16:45.371514+0000 mon.smithi120 (mon.0) 463 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: audit 2024-09-10T04:16:45.371514+0000 mon.smithi120 (mon.0) 463 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: audit 2024-09-10T04:16:45.372914+0000 mon.smithi120 (mon.0) 464 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: audit 2024-09-10T04:16:45.372914+0000 mon.smithi120 (mon.0) 464 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: cephadm 2024-09-10T04:16:45.374174+0000 mgr.smithi120.xfjtcc (mgr.14205) 122 : cephadm [INF] Deploying daemon osd.6 on smithi151 2024-09-10T04:16:46.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:46 smithi151 bash[25273]: cephadm 2024-09-10T04:16:45.374174+0000 mgr.smithi120.xfjtcc (mgr.14205) 122 : cephadm [INF] Deploying daemon osd.6 on smithi151 2024-09-10T04:16:46.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: cluster 2024-09-10T04:16:45.352471+0000 mgr.smithi120.xfjtcc (mgr.14205) 121 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:46.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: cluster 2024-09-10T04:16:45.352471+0000 mgr.smithi120.xfjtcc (mgr.14205) 121 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:46.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: audit 2024-09-10T04:16:45.364749+0000 mon.smithi120 (mon.0) 461 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:46.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: audit 2024-09-10T04:16:45.364749+0000 mon.smithi120 (mon.0) 461 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:46.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: audit 2024-09-10T04:16:45.370291+0000 mon.smithi120 (mon.0) 462 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:46.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: audit 2024-09-10T04:16:45.370291+0000 mon.smithi120 (mon.0) 462 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:46.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: audit 2024-09-10T04:16:45.371514+0000 mon.smithi120 (mon.0) 463 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-10T04:16:46.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: audit 2024-09-10T04:16:45.371514+0000 mon.smithi120 (mon.0) 463 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-10T04:16:46.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: audit 2024-09-10T04:16:45.372914+0000 mon.smithi120 (mon.0) 464 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:46.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: audit 2024-09-10T04:16:45.372914+0000 mon.smithi120 (mon.0) 464 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:46.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: cephadm 2024-09-10T04:16:45.374174+0000 mgr.smithi120.xfjtcc (mgr.14205) 122 : cephadm [INF] Deploying daemon osd.6 on smithi151 2024-09-10T04:16:46.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:46 smithi120 bash[19947]: cephadm 2024-09-10T04:16:45.374174+0000 mgr.smithi120.xfjtcc (mgr.14205) 122 : cephadm [INF] Deploying daemon osd.6 on smithi151 2024-09-10T04:16:48.006 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:16:48.653 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:48 smithi120 bash[19947]: cluster 2024-09-10T04:16:47.352849+0000 mgr.smithi120.xfjtcc (mgr.14205) 123 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:48.653 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:48 smithi120 bash[19947]: cluster 2024-09-10T04:16:47.352849+0000 mgr.smithi120.xfjtcc (mgr.14205) 123 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:48.653 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:48 smithi120 bash[19947]: audit 2024-09-10T04:16:47.728475+0000 mon.smithi151 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-10T04:16:48.653 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:48 smithi120 bash[19947]: audit 2024-09-10T04:16:47.728475+0000 mon.smithi151 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-10T04:16:48.653 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:48 smithi120 bash[19947]: audit 2024-09-10T04:16:47.728521+0000 mon.smithi120 (mon.0) 465 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-10T04:16:48.653 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:48 smithi120 bash[19947]: audit 2024-09-10T04:16:47.728521+0000 mon.smithi120 (mon.0) 465 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-10T04:16:48.653 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:48 smithi120 bash[19947]: audit 2024-09-10T04:16:48.007075+0000 mon.smithi120 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.120:0/3526056603' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:48.653 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:48 smithi120 bash[19947]: audit 2024-09-10T04:16:48.007075+0000 mon.smithi120 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.120:0/3526056603' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:48.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:48 smithi151 bash[25273]: cluster 2024-09-10T04:16:47.352849+0000 mgr.smithi120.xfjtcc (mgr.14205) 123 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:48.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:48 smithi151 bash[25273]: cluster 2024-09-10T04:16:47.352849+0000 mgr.smithi120.xfjtcc (mgr.14205) 123 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:48.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:48 smithi151 bash[25273]: audit 2024-09-10T04:16:47.728475+0000 mon.smithi151 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-10T04:16:48.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:48 smithi151 bash[25273]: audit 2024-09-10T04:16:47.728475+0000 mon.smithi151 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-10T04:16:48.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:48 smithi151 bash[25273]: audit 2024-09-10T04:16:47.728521+0000 mon.smithi120 (mon.0) 465 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-10T04:16:48.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:48 smithi151 bash[25273]: audit 2024-09-10T04:16:47.728521+0000 mon.smithi120 (mon.0) 465 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-10T04:16:48.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:48 smithi151 bash[25273]: audit 2024-09-10T04:16:48.007075+0000 mon.smithi120 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.120:0/3526056603' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:48.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:48 smithi151 bash[25273]: audit 2024-09-10T04:16:48.007075+0000 mon.smithi120 (mon.0) 466 : audit [DBG] from='client.? 172.21.15.120:0/3526056603' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:16:49.436 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1725941777,"num_remapped_pgs":0} 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.375901+0000 mon.smithi120 (mon.0) 467 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.375901+0000 mon.smithi120 (mon.0) 467 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.379301+0000 mon.smithi151 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.379301+0000 mon.smithi151 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: cluster 2024-09-10T04:16:48.382002+0000 mon.smithi120 (mon.0) 468 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: cluster 2024-09-10T04:16:48.382002+0000 mon.smithi120 (mon.0) 468 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.382401+0000 mon.smithi120 (mon.0) 469 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.382401+0000 mon.smithi120 (mon.0) 469 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:49.686 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.383008+0000 mon.smithi120 (mon.0) 470 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.383008+0000 mon.smithi120 (mon.0) 470 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.383539+0000 mon.smithi120 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.383539+0000 mon.smithi120 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.383999+0000 mon.smithi120 (mon.0) 472 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.383999+0000 mon.smithi120 (mon.0) 472 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.384411+0000 mon.smithi120 (mon.0) 473 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.384411+0000 mon.smithi120 (mon.0) 473 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.384862+0000 mon.smithi120 (mon.0) 474 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.384862+0000 mon.smithi120 (mon.0) 474 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.385280+0000 mon.smithi120 (mon.0) 475 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.385280+0000 mon.smithi120 (mon.0) 475 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.385699+0000 mon.smithi120 (mon.0) 476 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:49.687 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.385699+0000 mon.smithi120 (mon.0) 476 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:49.688 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.386110+0000 mon.smithi120 (mon.0) 477 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:49.688 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.386110+0000 mon.smithi120 (mon.0) 477 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:49.688 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.655380+0000 mon.smithi120 (mon.0) 478 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:49.688 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:49 smithi151 bash[25273]: audit 2024-09-10T04:16:48.655380+0000 mon.smithi120 (mon.0) 478 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:49.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.375901+0000 mon.smithi120 (mon.0) 467 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-10T04:16:49.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.375901+0000 mon.smithi120 (mon.0) 467 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-10T04:16:49.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.379301+0000 mon.smithi151 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:49.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.379301+0000 mon.smithi151 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: cluster 2024-09-10T04:16:48.382002+0000 mon.smithi120 (mon.0) 468 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: cluster 2024-09-10T04:16:48.382002+0000 mon.smithi120 (mon.0) 468 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.382401+0000 mon.smithi120 (mon.0) 469 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.382401+0000 mon.smithi120 (mon.0) 469 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.383008+0000 mon.smithi120 (mon.0) 470 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.383008+0000 mon.smithi120 (mon.0) 470 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.383539+0000 mon.smithi120 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.383539+0000 mon.smithi120 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.383999+0000 mon.smithi120 (mon.0) 472 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.383999+0000 mon.smithi120 (mon.0) 472 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.384411+0000 mon.smithi120 (mon.0) 473 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.384411+0000 mon.smithi120 (mon.0) 473 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:49.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.384862+0000 mon.smithi120 (mon.0) 474 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.384862+0000 mon.smithi120 (mon.0) 474 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.385280+0000 mon.smithi120 (mon.0) 475 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.385280+0000 mon.smithi120 (mon.0) 475 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.385699+0000 mon.smithi120 (mon.0) 476 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.385699+0000 mon.smithi120 (mon.0) 476 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.386110+0000 mon.smithi120 (mon.0) 477 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.386110+0000 mon.smithi120 (mon.0) 477 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.655380+0000 mon.smithi120 (mon.0) 478 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:49.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:49 smithi120 bash[19947]: audit 2024-09-10T04:16:48.655380+0000 mon.smithi120 (mon.0) 478 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:16:50.437 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: cluster 2024-09-10T04:16:49.353334+0000 mgr.smithi120.xfjtcc (mgr.14205) 124 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: cluster 2024-09-10T04:16:49.353334+0000 mgr.smithi120.xfjtcc (mgr.14205) 124 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.378514+0000 mon.smithi120 (mon.0) 479 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.378514+0000 mon.smithi120 (mon.0) 479 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: cluster 2024-09-10T04:16:49.385429+0000 mon.smithi120 (mon.0) 480 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: cluster 2024-09-10T04:16:49.385429+0000 mon.smithi120 (mon.0) 480 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.386381+0000 mon.smithi120 (mon.0) 481 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.386381+0000 mon.smithi120 (mon.0) 481 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.386985+0000 mon.smithi120 (mon.0) 482 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:50.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.386985+0000 mon.smithi120 (mon.0) 482 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.387345+0000 mon.smithi120 (mon.0) 483 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.387345+0000 mon.smithi120 (mon.0) 483 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.387789+0000 mon.smithi120 (mon.0) 484 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.387789+0000 mon.smithi120 (mon.0) 484 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.388158+0000 mon.smithi120 (mon.0) 485 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.388158+0000 mon.smithi120 (mon.0) 485 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.388647+0000 mon.smithi120 (mon.0) 486 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.388647+0000 mon.smithi120 (mon.0) 486 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.397730+0000 mon.smithi120 (mon.0) 487 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.397730+0000 mon.smithi120 (mon.0) 487 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.398049+0000 mon.smithi120 (mon.0) 488 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.398049+0000 mon.smithi120 (mon.0) 488 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.398532+0000 mon.smithi120 (mon.0) 489 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.398532+0000 mon.smithi120 (mon.0) 489 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.866579+0000 mon.smithi120 (mon.0) 490 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-10T04:16:50.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:49.866579+0000 mon.smithi120 (mon.0) 490 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-10T04:16:50.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:50.388333+0000 mon.smithi120 (mon.0) 491 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.738 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:50 smithi151 bash[25273]: audit 2024-09-10T04:16:50.388333+0000 mon.smithi120 (mon.0) 491 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: cluster 2024-09-10T04:16:49.353334+0000 mgr.smithi120.xfjtcc (mgr.14205) 124 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:50.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: cluster 2024-09-10T04:16:49.353334+0000 mgr.smithi120.xfjtcc (mgr.14205) 124 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:50.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.378514+0000 mon.smithi120 (mon.0) 479 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:16:50.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.378514+0000 mon.smithi120 (mon.0) 479 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:16:50.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: cluster 2024-09-10T04:16:49.385429+0000 mon.smithi120 (mon.0) 480 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-10T04:16:50.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: cluster 2024-09-10T04:16:49.385429+0000 mon.smithi120 (mon.0) 480 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-10T04:16:50.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.386381+0000 mon.smithi120 (mon.0) 481 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.386381+0000 mon.smithi120 (mon.0) 481 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.386985+0000 mon.smithi120 (mon.0) 482 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.386985+0000 mon.smithi120 (mon.0) 482 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.387345+0000 mon.smithi120 (mon.0) 483 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.387345+0000 mon.smithi120 (mon.0) 483 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.387789+0000 mon.smithi120 (mon.0) 484 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.387789+0000 mon.smithi120 (mon.0) 484 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.388158+0000 mon.smithi120 (mon.0) 485 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.388158+0000 mon.smithi120 (mon.0) 485 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.388647+0000 mon.smithi120 (mon.0) 486 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.388647+0000 mon.smithi120 (mon.0) 486 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.397730+0000 mon.smithi120 (mon.0) 487 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.397730+0000 mon.smithi120 (mon.0) 487 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:50.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.398049+0000 mon.smithi120 (mon.0) 488 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:50.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.398049+0000 mon.smithi120 (mon.0) 488 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:50.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.398532+0000 mon.smithi120 (mon.0) 489 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.398532+0000 mon.smithi120 (mon.0) 489 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.866579+0000 mon.smithi120 (mon.0) 490 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-10T04:16:50.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:49.866579+0000 mon.smithi120 (mon.0) 490 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-10T04:16:50.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:50.388333+0000 mon.smithi120 (mon.0) 491 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:50.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:50 smithi120 bash[19947]: audit 2024-09-10T04:16:50.388333+0000 mon.smithi120 (mon.0) 491 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:51.114 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:51.374 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:51.707 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: cluster 2024-09-10T04:16:48.712563+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:51.707 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: cluster 2024-09-10T04:16:48.712563+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:51.707 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: cluster 2024-09-10T04:16:48.712724+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:51.707 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: cluster 2024-09-10T04:16:48.712724+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:51.707 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: cluster 2024-09-10T04:16:50.871840+0000 mon.smithi120 (mon.0) 492 : cluster [INF] osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127] boot 2024-09-10T04:16:51.707 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: cluster 2024-09-10T04:16:50.871840+0000 mon.smithi120 (mon.0) 492 : cluster [INF] osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127] boot 2024-09-10T04:16:51.707 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: cluster 2024-09-10T04:16:50.871951+0000 mon.smithi120 (mon.0) 493 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-10T04:16:51.707 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: cluster 2024-09-10T04:16:50.871951+0000 mon.smithi120 (mon.0) 493 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.872250+0000 mon.smithi120 (mon.0) 494 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.872250+0000 mon.smithi120 (mon.0) 494 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.873278+0000 mon.smithi120 (mon.0) 495 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.873278+0000 mon.smithi120 (mon.0) 495 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.873646+0000 mon.smithi120 (mon.0) 496 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.873646+0000 mon.smithi120 (mon.0) 496 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.873938+0000 mon.smithi120 (mon.0) 497 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.873938+0000 mon.smithi120 (mon.0) 497 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.874227+0000 mon.smithi120 (mon.0) 498 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.874227+0000 mon.smithi120 (mon.0) 498 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.874550+0000 mon.smithi120 (mon.0) 499 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:51.708 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.874550+0000 mon.smithi120 (mon.0) 499 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:51.709 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.874875+0000 mon.smithi120 (mon.0) 500 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:51.709 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.874875+0000 mon.smithi120 (mon.0) 500 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:51.709 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.875191+0000 mon.smithi120 (mon.0) 501 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:51.709 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:51 smithi151 bash[25273]: audit 2024-09-10T04:16:50.875191+0000 mon.smithi120 (mon.0) 501 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: cluster 2024-09-10T04:16:48.712563+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: cluster 2024-09-10T04:16:48.712563+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: cluster 2024-09-10T04:16:48.712724+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: cluster 2024-09-10T04:16:48.712724+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: cluster 2024-09-10T04:16:50.871840+0000 mon.smithi120 (mon.0) 492 : cluster [INF] osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127] boot 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: cluster 2024-09-10T04:16:50.871840+0000 mon.smithi120 (mon.0) 492 : cluster [INF] osd.0 [v2:172.21.15.151:6800/3637569127,v1:172.21.15.151:6801/3637569127] boot 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: cluster 2024-09-10T04:16:50.871951+0000 mon.smithi120 (mon.0) 493 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: cluster 2024-09-10T04:16:50.871951+0000 mon.smithi120 (mon.0) 493 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-10T04:16:51.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.872250+0000 mon.smithi120 (mon.0) 494 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.872250+0000 mon.smithi120 (mon.0) 494 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.873278+0000 mon.smithi120 (mon.0) 495 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.873278+0000 mon.smithi120 (mon.0) 495 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.873646+0000 mon.smithi120 (mon.0) 496 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.873646+0000 mon.smithi120 (mon.0) 496 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.873938+0000 mon.smithi120 (mon.0) 497 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.873938+0000 mon.smithi120 (mon.0) 497 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.874227+0000 mon.smithi120 (mon.0) 498 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.874227+0000 mon.smithi120 (mon.0) 498 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.874550+0000 mon.smithi120 (mon.0) 499 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.874550+0000 mon.smithi120 (mon.0) 499 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:51.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.874875+0000 mon.smithi120 (mon.0) 500 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:51.765 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.874875+0000 mon.smithi120 (mon.0) 500 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:51.765 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.875191+0000 mon.smithi120 (mon.0) 501 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:51.765 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 bash[19947]: audit 2024-09-10T04:16:50.875191+0000 mon.smithi120 (mon.0) 501 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:52.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:51 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:52.290 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:52.677 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: cluster 2024-09-10T04:16:51.353772+0000 mgr.smithi120.xfjtcc (mgr.14205) 125 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: cluster 2024-09-10T04:16:51.353772+0000 mgr.smithi120.xfjtcc (mgr.14205) 125 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:51.421308+0000 mon.smithi120 (mon.0) 502 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:51.421308+0000 mon.smithi120 (mon.0) 502 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:51.428270+0000 mon.smithi120 (mon.0) 503 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:51.428270+0000 mon.smithi120 (mon.0) 503 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.090626+0000 mon.smithi120 (mon.0) 504 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.090626+0000 mon.smithi120 (mon.0) 504 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.220297+0000 mon.smithi120 (mon.0) 505 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.220297+0000 mon.smithi120 (mon.0) 505 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.224513+0000 mon.smithi120 (mon.0) 506 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.224513+0000 mon.smithi120 (mon.0) 506 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.225279+0000 mon.smithi120 (mon.0) 507 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.225279+0000 mon.smithi120 (mon.0) 507 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-10T04:16:52.678 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.225908+0000 mon.smithi120 (mon.0) 508 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:52.679 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:52 smithi120 bash[19947]: audit 2024-09-10T04:16:52.225908+0000 mon.smithi120 (mon.0) 508 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:52.691 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: cluster 2024-09-10T04:16:51.353772+0000 mgr.smithi120.xfjtcc (mgr.14205) 125 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:52.691 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: cluster 2024-09-10T04:16:51.353772+0000 mgr.smithi120.xfjtcc (mgr.14205) 125 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-10T04:16:52.691 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:51.421308+0000 mon.smithi120 (mon.0) 502 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.691 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:51.421308+0000 mon.smithi120 (mon.0) 502 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.691 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:51.428270+0000 mon.smithi120 (mon.0) 503 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.691 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:51.428270+0000 mon.smithi120 (mon.0) 503 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.691 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.090626+0000 mon.smithi120 (mon.0) 504 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.090626+0000 mon.smithi120 (mon.0) 504 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.220297+0000 mon.smithi120 (mon.0) 505 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.220297+0000 mon.smithi120 (mon.0) 505 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.224513+0000 mon.smithi120 (mon.0) 506 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.224513+0000 mon.smithi120 (mon.0) 506 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.225279+0000 mon.smithi120 (mon.0) 507 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.225279+0000 mon.smithi120 (mon.0) 507 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.225908+0000 mon.smithi120 (mon.0) 508 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:52.692 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:52 smithi151 bash[25273]: audit 2024-09-10T04:16:52.225908+0000 mon.smithi120 (mon.0) 508 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:16:53.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: cephadm 2024-09-10T04:16:52.226452+0000 mgr.smithi120.xfjtcc (mgr.14205) 126 : cephadm [INF] Deploying daemon osd.7 on smithi120 2024-09-10T04:16:53.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: cephadm 2024-09-10T04:16:52.226452+0000 mgr.smithi120.xfjtcc (mgr.14205) 126 : cephadm [INF] Deploying daemon osd.7 on smithi120 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.429947+0000 mon.smithi120 (mon.0) 509 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.429947+0000 mon.smithi120 (mon.0) 509 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: cluster 2024-09-10T04:16:52.434492+0000 mon.smithi120 (mon.0) 510 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: cluster 2024-09-10T04:16:52.434492+0000 mon.smithi120 (mon.0) 510 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.434768+0000 mon.smithi120 (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.434768+0000 mon.smithi120 (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435048+0000 mon.smithi120 (mon.0) 512 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435048+0000 mon.smithi120 (mon.0) 512 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435237+0000 mon.smithi120 (mon.0) 513 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435237+0000 mon.smithi120 (mon.0) 513 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435466+0000 mon.smithi120 (mon.0) 514 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435466+0000 mon.smithi120 (mon.0) 514 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:53.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435580+0000 mon.smithi120 (mon.0) 515 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435580+0000 mon.smithi120 (mon.0) 515 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435829+0000 mon.smithi120 (mon.0) 516 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.435829+0000 mon.smithi120 (mon.0) 516 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.436004+0000 mon.smithi120 (mon.0) 517 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.436004+0000 mon.smithi120 (mon.0) 517 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.436300+0000 mon.smithi120 (mon.0) 518 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:52.436300+0000 mon.smithi120 (mon.0) 518 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:53.259519+0000 mon.smithi151 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:53.259519+0000 mon.smithi151 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:53.259912+0000 mon.smithi120 (mon.0) 519 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-10T04:16:53.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:53 smithi120 bash[19947]: audit 2024-09-10T04:16:53.259912+0000 mon.smithi120 (mon.0) 519 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-10T04:16:53.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: cephadm 2024-09-10T04:16:52.226452+0000 mgr.smithi120.xfjtcc (mgr.14205) 126 : cephadm [INF] Deploying daemon osd.7 on smithi120 2024-09-10T04:16:53.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: cephadm 2024-09-10T04:16:52.226452+0000 mgr.smithi120.xfjtcc (mgr.14205) 126 : cephadm [INF] Deploying daemon osd.7 on smithi120 2024-09-10T04:16:53.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.429947+0000 mon.smithi120 (mon.0) 509 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-10T04:16:53.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.429947+0000 mon.smithi120 (mon.0) 509 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: cluster 2024-09-10T04:16:52.434492+0000 mon.smithi120 (mon.0) 510 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: cluster 2024-09-10T04:16:52.434492+0000 mon.smithi120 (mon.0) 510 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.434768+0000 mon.smithi120 (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.434768+0000 mon.smithi120 (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435048+0000 mon.smithi120 (mon.0) 512 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435048+0000 mon.smithi120 (mon.0) 512 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435237+0000 mon.smithi120 (mon.0) 513 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435237+0000 mon.smithi120 (mon.0) 513 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435466+0000 mon.smithi120 (mon.0) 514 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435466+0000 mon.smithi120 (mon.0) 514 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435580+0000 mon.smithi120 (mon.0) 515 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:53.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435580+0000 mon.smithi120 (mon.0) 515 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435829+0000 mon.smithi120 (mon.0) 516 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.435829+0000 mon.smithi120 (mon.0) 516 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.436004+0000 mon.smithi120 (mon.0) 517 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.436004+0000 mon.smithi120 (mon.0) 517 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.436300+0000 mon.smithi120 (mon.0) 518 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:52.436300+0000 mon.smithi120 (mon.0) 518 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:53.259519+0000 mon.smithi151 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:53.259519+0000 mon.smithi151 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:53.259912+0000 mon.smithi120 (mon.0) 519 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-10T04:16:53.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:53 smithi151 bash[25273]: audit 2024-09-10T04:16:53.259912+0000 mon.smithi120 (mon.0) 519 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-10T04:16:54.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: cluster 2024-09-10T04:16:53.354287+0000 mgr.smithi120.xfjtcc (mgr.14205) 127 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: cluster 2024-09-10T04:16:53.354287+0000 mgr.smithi120.xfjtcc (mgr.14205) 127 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.432327+0000 mon.smithi120 (mon.0) 520 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.432327+0000 mon.smithi120 (mon.0) 520 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.432490+0000 mon.smithi120 (mon.0) 521 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.432490+0000 mon.smithi120 (mon.0) 521 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: cluster 2024-09-10T04:16:53.437739+0000 mon.smithi120 (mon.0) 522 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: cluster 2024-09-10T04:16:53.437739+0000 mon.smithi120 (mon.0) 522 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.438486+0000 mon.smithi151 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.438486+0000 mon.smithi151 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:54.783 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.447938+0000 mon.smithi120 (mon.0) 523 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.447938+0000 mon.smithi120 (mon.0) 523 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.448773+0000 mon.smithi120 (mon.0) 524 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.448773+0000 mon.smithi120 (mon.0) 524 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.449224+0000 mon.smithi120 (mon.0) 525 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.449224+0000 mon.smithi120 (mon.0) 525 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.449470+0000 mon.smithi120 (mon.0) 526 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.449470+0000 mon.smithi120 (mon.0) 526 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.449798+0000 mon.smithi120 (mon.0) 527 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.449798+0000 mon.smithi120 (mon.0) 527 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.450244+0000 mon.smithi120 (mon.0) 528 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.450244+0000 mon.smithi120 (mon.0) 528 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:54.784 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.450524+0000 mon.smithi120 (mon.0) 529 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.450524+0000 mon.smithi120 (mon.0) 529 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.450770+0000 mon.smithi120 (mon.0) 530 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.450770+0000 mon.smithi120 (mon.0) 530 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.454199+0000 mon.smithi120 (mon.0) 531 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.454199+0000 mon.smithi120 (mon.0) 531 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.952531+0000 mon.smithi120 (mon.0) 532 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:53.952531+0000 mon.smithi120 (mon.0) 532 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.434372+0000 mon.smithi120 (mon.0) 533 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.434372+0000 mon.smithi120 (mon.0) 533 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:16:54.785 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: cluster 2024-09-10T04:16:54.441764+0000 mon.smithi120 (mon.0) 534 : cluster [INF] osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940] boot 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: cluster 2024-09-10T04:16:54.441764+0000 mon.smithi120 (mon.0) 534 : cluster [INF] osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940] boot 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: cluster 2024-09-10T04:16:54.441826+0000 mon.smithi120 (mon.0) 535 : cluster [DBG] osdmap e19: 8 total, 2 up, 8 in 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: cluster 2024-09-10T04:16:54.441826+0000 mon.smithi120 (mon.0) 535 : cluster [DBG] osdmap e19: 8 total, 2 up, 8 in 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.442394+0000 mon.smithi120 (mon.0) 536 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.442394+0000 mon.smithi120 (mon.0) 536 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.442921+0000 mon.smithi120 (mon.0) 537 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.442921+0000 mon.smithi120 (mon.0) 537 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.443241+0000 mon.smithi120 (mon.0) 538 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.443241+0000 mon.smithi120 (mon.0) 538 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:54.786 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.443538+0000 mon.smithi120 (mon.0) 539 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:54.787 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.443538+0000 mon.smithi120 (mon.0) 539 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:54.787 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.443838+0000 mon.smithi120 (mon.0) 540 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:54.787 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.443838+0000 mon.smithi120 (mon.0) 540 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:54.787 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.444243+0000 mon.smithi120 (mon.0) 541 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:54.787 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.444243+0000 mon.smithi120 (mon.0) 541 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:54.787 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.444570+0000 mon.smithi120 (mon.0) 542 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:54.787 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.444570+0000 mon.smithi120 (mon.0) 542 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:54.787 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.446217+0000 mon.smithi120 (mon.0) 543 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.788 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:54 smithi120 bash[19947]: audit 2024-09-10T04:16:54.446217+0000 mon.smithi120 (mon.0) 543 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: cluster 2024-09-10T04:16:53.354287+0000 mgr.smithi120.xfjtcc (mgr.14205) 127 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-10T04:16:54.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: cluster 2024-09-10T04:16:53.354287+0000 mgr.smithi120.xfjtcc (mgr.14205) 127 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 27 MiB used, 89 GiB / 89 GiB avail 2024-09-10T04:16:54.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.432327+0000 mon.smithi120 (mon.0) 520 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:16:54.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.432327+0000 mon.smithi120 (mon.0) 520 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:16:54.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.432490+0000 mon.smithi120 (mon.0) 521 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.432490+0000 mon.smithi120 (mon.0) 521 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: cluster 2024-09-10T04:16:53.437739+0000 mon.smithi120 (mon.0) 522 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: cluster 2024-09-10T04:16:53.437739+0000 mon.smithi120 (mon.0) 522 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.438486+0000 mon.smithi151 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.438486+0000 mon.smithi151 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.447938+0000 mon.smithi120 (mon.0) 523 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.447938+0000 mon.smithi120 (mon.0) 523 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.448773+0000 mon.smithi120 (mon.0) 524 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.448773+0000 mon.smithi120 (mon.0) 524 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.449224+0000 mon.smithi120 (mon.0) 525 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.449224+0000 mon.smithi120 (mon.0) 525 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.449470+0000 mon.smithi120 (mon.0) 526 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.449470+0000 mon.smithi120 (mon.0) 526 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.449798+0000 mon.smithi120 (mon.0) 527 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.449798+0000 mon.smithi120 (mon.0) 527 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.450244+0000 mon.smithi120 (mon.0) 528 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.450244+0000 mon.smithi120 (mon.0) 528 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.450524+0000 mon.smithi120 (mon.0) 529 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.450524+0000 mon.smithi120 (mon.0) 529 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.450770+0000 mon.smithi120 (mon.0) 530 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.450770+0000 mon.smithi120 (mon.0) 530 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.454199+0000 mon.smithi120 (mon.0) 531 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.454199+0000 mon.smithi120 (mon.0) 531 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.952531+0000 mon.smithi120 (mon.0) 532 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:53.952531+0000 mon.smithi120 (mon.0) 532 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940]' entity='osd.1' 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.434372+0000 mon.smithi120 (mon.0) 533 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.434372+0000 mon.smithi120 (mon.0) 533 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: cluster 2024-09-10T04:16:54.441764+0000 mon.smithi120 (mon.0) 534 : cluster [INF] osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940] boot 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: cluster 2024-09-10T04:16:54.441764+0000 mon.smithi120 (mon.0) 534 : cluster [INF] osd.1 [v2:172.21.15.120:6802/2998593940,v1:172.21.15.120:6803/2998593940] boot 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: cluster 2024-09-10T04:16:54.441826+0000 mon.smithi120 (mon.0) 535 : cluster [DBG] osdmap e19: 8 total, 2 up, 8 in 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: cluster 2024-09-10T04:16:54.441826+0000 mon.smithi120 (mon.0) 535 : cluster [DBG] osdmap e19: 8 total, 2 up, 8 in 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.442394+0000 mon.smithi120 (mon.0) 536 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.442394+0000 mon.smithi120 (mon.0) 536 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.442921+0000 mon.smithi120 (mon.0) 537 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.442921+0000 mon.smithi120 (mon.0) 537 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.443241+0000 mon.smithi120 (mon.0) 538 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.443241+0000 mon.smithi120 (mon.0) 538 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.443538+0000 mon.smithi120 (mon.0) 539 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.443538+0000 mon.smithi120 (mon.0) 539 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.443838+0000 mon.smithi120 (mon.0) 540 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.443838+0000 mon.smithi120 (mon.0) 540 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.444243+0000 mon.smithi120 (mon.0) 541 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.444243+0000 mon.smithi120 (mon.0) 541 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.444570+0000 mon.smithi120 (mon.0) 542 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.444570+0000 mon.smithi120 (mon.0) 542 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.446217+0000 mon.smithi120 (mon.0) 543 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:54.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:54 smithi151 bash[25273]: audit 2024-09-10T04:16:54.446217+0000 mon.smithi120 (mon.0) 543 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:56.216 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:16:56.263 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:56 smithi120 bash[19947]: cluster 2024-09-10T04:16:53.136882+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:56.263 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:56 smithi120 bash[19947]: cluster 2024-09-10T04:16:53.136882+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:56.263 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:56 smithi120 bash[19947]: cluster 2024-09-10T04:16:53.137013+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:56.263 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:56 smithi120 bash[19947]: cluster 2024-09-10T04:16:53.137013+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:56.263 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:56 smithi120 bash[19947]: audit 2024-09-10T04:16:54.998306+0000 mon.smithi120 (mon.0) 544 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-10T04:16:56.263 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:56 smithi120 bash[19947]: audit 2024-09-10T04:16:54.998306+0000 mon.smithi120 (mon.0) 544 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-10T04:16:56.263 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:56 smithi120 bash[19947]: audit 2024-09-10T04:16:55.445429+0000 mon.smithi120 (mon.0) 545 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:56.263 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:56 smithi120 bash[19947]: audit 2024-09-10T04:16:55.445429+0000 mon.smithi120 (mon.0) 545 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:56 smithi151 bash[25273]: cluster 2024-09-10T04:16:53.136882+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:56 smithi151 bash[25273]: cluster 2024-09-10T04:16:53.136882+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:56 smithi151 bash[25273]: cluster 2024-09-10T04:16:53.137013+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:56 smithi151 bash[25273]: cluster 2024-09-10T04:16:53.137013+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:56 smithi151 bash[25273]: audit 2024-09-10T04:16:54.998306+0000 mon.smithi120 (mon.0) 544 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-10T04:16:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:56 smithi151 bash[25273]: audit 2024-09-10T04:16:54.998306+0000 mon.smithi120 (mon.0) 544 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-10T04:16:56.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:56 smithi151 bash[25273]: audit 2024-09-10T04:16:55.445429+0000 mon.smithi120 (mon.0) 545 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:56.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:56 smithi151 bash[25273]: audit 2024-09-10T04:16:55.445429+0000 mon.smithi120 (mon.0) 545 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:57.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:54.243178+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:57.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:54.243178+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:57.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:54.243313+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:57.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:54.243313+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:57.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:55.354673+0000 mgr.smithi120.xfjtcc (mgr.14205) 128 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:55.354673+0000 mgr.smithi120.xfjtcc (mgr.14205) 128 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:56.001878+0000 mon.smithi120 (mon.0) 546 : cluster [INF] osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150] boot 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:56.001878+0000 mon.smithi120 (mon.0) 546 : cluster [INF] osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150] boot 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:56.001943+0000 mon.smithi120 (mon.0) 547 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: cluster 2024-09-10T04:16:56.001943+0000 mon.smithi120 (mon.0) 547 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.002347+0000 mon.smithi120 (mon.0) 548 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.002347+0000 mon.smithi120 (mon.0) 548 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.002803+0000 mon.smithi120 (mon.0) 549 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.002803+0000 mon.smithi120 (mon.0) 549 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.007277+0000 mon.smithi120 (mon.0) 550 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:57.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.007277+0000 mon.smithi120 (mon.0) 550 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:57.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.007787+0000 mon.smithi120 (mon.0) 551 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:57.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.007787+0000 mon.smithi120 (mon.0) 551 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:57.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.008159+0000 mon.smithi120 (mon.0) 552 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:57.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.008159+0000 mon.smithi120 (mon.0) 552 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:57.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.008641+0000 mon.smithi120 (mon.0) 553 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:57.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:57 smithi120 bash[19947]: audit 2024-09-10T04:16:56.008641+0000 mon.smithi120 (mon.0) 553 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:54.243178+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:54.243178+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:16:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:54.243313+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:54.243313+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:16:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:55.354673+0000 mgr.smithi120.xfjtcc (mgr.14205) 128 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-10T04:16:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:55.354673+0000 mgr.smithi120.xfjtcc (mgr.14205) 128 : cluster [DBG] pgmap v78: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-10T04:16:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:56.001878+0000 mon.smithi120 (mon.0) 546 : cluster [INF] osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150] boot 2024-09-10T04:16:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:56.001878+0000 mon.smithi120 (mon.0) 546 : cluster [INF] osd.2 [v2:172.21.15.151:6808/2227286150,v1:172.21.15.151:6809/2227286150] boot 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:56.001943+0000 mon.smithi120 (mon.0) 547 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: cluster 2024-09-10T04:16:56.001943+0000 mon.smithi120 (mon.0) 547 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.002347+0000 mon.smithi120 (mon.0) 548 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.002347+0000 mon.smithi120 (mon.0) 548 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.002803+0000 mon.smithi120 (mon.0) 549 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.002803+0000 mon.smithi120 (mon.0) 549 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.007277+0000 mon.smithi120 (mon.0) 550 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.007277+0000 mon.smithi120 (mon.0) 550 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.007787+0000 mon.smithi120 (mon.0) 551 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.007787+0000 mon.smithi120 (mon.0) 551 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.008159+0000 mon.smithi120 (mon.0) 552 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.008159+0000 mon.smithi120 (mon.0) 552 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.008641+0000 mon.smithi120 (mon.0) 553 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:57 smithi151 bash[25273]: audit 2024-09-10T04:16:56.008641+0000 mon.smithi120 (mon.0) 553 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:58.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: cluster 2024-09-10T04:16:57.018066+0000 mon.smithi120 (mon.0) 554 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-10T04:16:58.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: cluster 2024-09-10T04:16:57.018066+0000 mon.smithi120 (mon.0) 554 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-10T04:16:58.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.018261+0000 mon.smithi120 (mon.0) 555 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.018261+0000 mon.smithi120 (mon.0) 555 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.018643+0000 mon.smithi120 (mon.0) 556 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.018643+0000 mon.smithi120 (mon.0) 556 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.018933+0000 mon.smithi120 (mon.0) 557 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.018933+0000 mon.smithi120 (mon.0) 557 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.019320+0000 mon.smithi120 (mon.0) 558 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.019320+0000 mon.smithi120 (mon.0) 558 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.019562+0000 mon.smithi120 (mon.0) 559 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.019562+0000 mon.smithi120 (mon.0) 559 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.713919+0000 mon.smithi151 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.713919+0000 mon.smithi151 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-10T04:16:58.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.714264+0000 mon.smithi120 (mon.0) 560 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-10T04:16:58.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.714264+0000 mon.smithi120 (mon.0) 560 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-10T04:16:58.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.724943+0000 mon.smithi120 (mon.0) 561 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:16:58.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.724943+0000 mon.smithi120 (mon.0) 561 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:16:58.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.976761+0000 mon.smithi120 (mon.0) 562 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-10T04:16:58.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 bash[19947]: audit 2024-09-10T04:16:57.976761+0000 mon.smithi120 (mon.0) 562 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-10T04:16:58.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: cluster 2024-09-10T04:16:57.018066+0000 mon.smithi120 (mon.0) 554 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-10T04:16:58.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: cluster 2024-09-10T04:16:57.018066+0000 mon.smithi120 (mon.0) 554 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.018261+0000 mon.smithi120 (mon.0) 555 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.018261+0000 mon.smithi120 (mon.0) 555 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.018643+0000 mon.smithi120 (mon.0) 556 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.018643+0000 mon.smithi120 (mon.0) 556 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.018933+0000 mon.smithi120 (mon.0) 557 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.018933+0000 mon.smithi120 (mon.0) 557 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.019320+0000 mon.smithi120 (mon.0) 558 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.019320+0000 mon.smithi120 (mon.0) 558 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.019562+0000 mon.smithi120 (mon.0) 559 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.019562+0000 mon.smithi120 (mon.0) 559 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.713919+0000 mon.smithi151 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.713919+0000 mon.smithi151 (mon.1) 14 : audit [INF] from='osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.714264+0000 mon.smithi120 (mon.0) 560 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-10T04:16:58.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.714264+0000 mon.smithi120 (mon.0) 560 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-10T04:16:58.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.724943+0000 mon.smithi120 (mon.0) 561 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:16:58.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.724943+0000 mon.smithi120 (mon.0) 561 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:16:58.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.976761+0000 mon.smithi120 (mon.0) 562 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-10T04:16:58.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:58 smithi151 bash[25273]: audit 2024-09-10T04:16:57.976761+0000 mon.smithi120 (mon.0) 562 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-10T04:16:58.608 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:58.919 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:58 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:16:59.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: cluster 2024-09-10T04:16:57.355131+0000 mgr.smithi120.xfjtcc (mgr.14205) 129 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-10T04:16:59.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: cluster 2024-09-10T04:16:57.355131+0000 mgr.smithi120.xfjtcc (mgr.14205) 129 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-10T04:16:59.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.020907+0000 mon.smithi120 (mon.0) 563 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-10T04:16:59.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.020907+0000 mon.smithi120 (mon.0) 563 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-10T04:16:59.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.020988+0000 mon.smithi120 (mon.0) 564 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:16:59.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.020988+0000 mon.smithi120 (mon.0) 564 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:16:59.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.021057+0000 mon.smithi120 (mon.0) 565 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-10T04:16:59.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.021057+0000 mon.smithi120 (mon.0) 565 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-10T04:16:59.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.025952+0000 mon.smithi120 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-10T04:16:59.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.025952+0000 mon.smithi120 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-10T04:16:59.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.026374+0000 mon.smithi120 (mon.0) 567 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.026374+0000 mon.smithi120 (mon.0) 567 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.026740+0000 mon.smithi120 (mon.0) 568 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.026740+0000 mon.smithi120 (mon.0) 568 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027006+0000 mon.smithi120 (mon.0) 569 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027006+0000 mon.smithi120 (mon.0) 569 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027208+0000 mon.smithi120 (mon.0) 570 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027208+0000 mon.smithi120 (mon.0) 570 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027412+0000 mon.smithi120 (mon.0) 571 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027412+0000 mon.smithi120 (mon.0) 571 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027551+0000 mon.smithi120 (mon.0) 572 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027551+0000 mon.smithi120 (mon.0) 572 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:59.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027770+0000 mon.smithi120 (mon.0) 573 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-10T04:16:59.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.027770+0000 mon.smithi120 (mon.0) 573 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-10T04:16:59.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.029757+0000 mon.smithi151 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:59.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.029757+0000 mon.smithi151 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:59.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.029881+0000 mon.smithi120 (mon.0) 574 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:59.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.029881+0000 mon.smithi120 (mon.0) 574 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:59.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.967087+0000 mon.smithi120 (mon.0) 575 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:59.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.967087+0000 mon.smithi120 (mon.0) 575 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:59.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.972991+0000 mon.smithi120 (mon.0) 576 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:59.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:16:59 smithi151 bash[25273]: audit 2024-09-10T04:16:58.972991+0000 mon.smithi120 (mon.0) 576 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:59.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: cluster 2024-09-10T04:16:57.355131+0000 mgr.smithi120.xfjtcc (mgr.14205) 129 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-10T04:16:59.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: cluster 2024-09-10T04:16:57.355131+0000 mgr.smithi120.xfjtcc (mgr.14205) 129 : cluster [DBG] pgmap v81: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-10T04:16:59.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.020907+0000 mon.smithi120 (mon.0) 563 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-10T04:16:59.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.020907+0000 mon.smithi120 (mon.0) 563 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-10T04:16:59.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.020988+0000 mon.smithi120 (mon.0) 564 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:16:59.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.020988+0000 mon.smithi120 (mon.0) 564 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 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-10T04:16:59.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.021057+0000 mon.smithi120 (mon.0) 565 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-10T04:16:59.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.021057+0000 mon.smithi120 (mon.0) 565 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-10T04:16:59.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.025952+0000 mon.smithi120 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-10T04:16:59.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.025952+0000 mon.smithi120 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-10T04:16:59.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.026374+0000 mon.smithi120 (mon.0) 567 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:16:59.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.026374+0000 mon.smithi120 (mon.0) 567 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:16:59.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.026740+0000 mon.smithi120 (mon.0) 568 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:59.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.026740+0000 mon.smithi120 (mon.0) 568 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:16:59.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027006+0000 mon.smithi120 (mon.0) 569 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027006+0000 mon.smithi120 (mon.0) 569 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027208+0000 mon.smithi120 (mon.0) 570 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027208+0000 mon.smithi120 (mon.0) 570 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027412+0000 mon.smithi120 (mon.0) 571 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027412+0000 mon.smithi120 (mon.0) 571 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027551+0000 mon.smithi120 (mon.0) 572 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027551+0000 mon.smithi120 (mon.0) 572 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027770+0000 mon.smithi120 (mon.0) 573 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.027770+0000 mon.smithi120 (mon.0) 573 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.029757+0000 mon.smithi151 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.029757+0000 mon.smithi151 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:59.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.029881+0000 mon.smithi120 (mon.0) 574 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:59.286 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.029881+0000 mon.smithi120 (mon.0) 574 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:16:59.286 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.967087+0000 mon.smithi120 (mon.0) 575 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:59.286 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.967087+0000 mon.smithi120 (mon.0) 575 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:59.286 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.972991+0000 mon.smithi120 (mon.0) 576 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:59.286 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:16:59 smithi120 bash[19947]: audit 2024-09-10T04:16:58.972991+0000 mon.smithi120 (mon.0) 576 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:16:59.293 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:17:00.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.022736+0000 mon.smithi120 (mon.0) 577 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:00.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.022736+0000 mon.smithi120 (mon.0) 577 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:00.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.022816+0000 mon.smithi120 (mon.0) 578 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-10T04:17:00.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.022816+0000 mon.smithi120 (mon.0) 578 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.022879+0000 mon.smithi120 (mon.0) 579 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.022879+0000 mon.smithi120 (mon.0) 579 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: cluster 2024-09-10T04:16:59.026735+0000 mon.smithi120 (mon.0) 580 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: cluster 2024-09-10T04:16:59.026735+0000 mon.smithi120 (mon.0) 580 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.029339+0000 mon.smithi120 (mon.0) 581 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.029339+0000 mon.smithi120 (mon.0) 581 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.029924+0000 mon.smithi120 (mon.0) 582 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.029924+0000 mon.smithi120 (mon.0) 582 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.030282+0000 mon.smithi120 (mon.0) 583 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.030282+0000 mon.smithi120 (mon.0) 583 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:00.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.030562+0000 mon.smithi120 (mon.0) 584 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.030562+0000 mon.smithi120 (mon.0) 584 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.030833+0000 mon.smithi120 (mon.0) 585 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.030833+0000 mon.smithi120 (mon.0) 585 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.033852+0000 mon.smithi120 (mon.0) 586 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.033852+0000 mon.smithi120 (mon.0) 586 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.084632+0000 mon.smithi120 (mon.0) 587 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.084632+0000 mon.smithi120 (mon.0) 587 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.293709+0000 mon.smithi120 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.120:0/3324037399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.293709+0000 mon.smithi120 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.120:0/3324037399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:00.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.499920+0000 mon.smithi120 (mon.0) 589 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.499920+0000 mon.smithi120 (mon.0) 589 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.576272+0000 mon.smithi120 (mon.0) 590 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:16:59.576272+0000 mon.smithi120 (mon.0) 590 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: cluster 2024-09-10T04:17:00.032733+0000 mon.smithi120 (mon.0) 591 : cluster [INF] osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825] boot 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: cluster 2024-09-10T04:17:00.032733+0000 mon.smithi120 (mon.0) 591 : cluster [INF] osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825] boot 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: cluster 2024-09-10T04:17:00.032880+0000 mon.smithi120 (mon.0) 592 : cluster [INF] osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384] boot 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: cluster 2024-09-10T04:17:00.032880+0000 mon.smithi120 (mon.0) 592 : cluster [INF] osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384] boot 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: cluster 2024-09-10T04:17:00.032990+0000 mon.smithi120 (mon.0) 593 : cluster [DBG] osdmap e24: 8 total, 5 up, 8 in 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: cluster 2024-09-10T04:17:00.032990+0000 mon.smithi120 (mon.0) 593 : cluster [DBG] osdmap e24: 8 total, 5 up, 8 in 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:17:00.034244+0000 mon.smithi120 (mon.0) 594 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.285 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:00 smithi120 bash[19947]: audit 2024-09-10T04:17:00.034244+0000 mon.smithi120 (mon.0) 594 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.022736+0000 mon.smithi120 (mon.0) 577 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:00.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.022736+0000 mon.smithi120 (mon.0) 577 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:00.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.022816+0000 mon.smithi120 (mon.0) 578 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-10T04:17:00.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.022816+0000 mon.smithi120 (mon.0) 578 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-10T04:17:00.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.022879+0000 mon.smithi120 (mon.0) 579 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:17:00.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.022879+0000 mon.smithi120 (mon.0) 579 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: cluster 2024-09-10T04:16:59.026735+0000 mon.smithi120 (mon.0) 580 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: cluster 2024-09-10T04:16:59.026735+0000 mon.smithi120 (mon.0) 580 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.029339+0000 mon.smithi120 (mon.0) 581 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.029339+0000 mon.smithi120 (mon.0) 581 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.029924+0000 mon.smithi120 (mon.0) 582 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.029924+0000 mon.smithi120 (mon.0) 582 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.030282+0000 mon.smithi120 (mon.0) 583 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.030282+0000 mon.smithi120 (mon.0) 583 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:00.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.030562+0000 mon.smithi120 (mon.0) 584 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.030562+0000 mon.smithi120 (mon.0) 584 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.030833+0000 mon.smithi120 (mon.0) 585 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.030833+0000 mon.smithi120 (mon.0) 585 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.033852+0000 mon.smithi120 (mon.0) 586 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.033852+0000 mon.smithi120 (mon.0) 586 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.084632+0000 mon.smithi120 (mon.0) 587 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.084632+0000 mon.smithi120 (mon.0) 587 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.293709+0000 mon.smithi120 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.120:0/3324037399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.293709+0000 mon.smithi120 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.120:0/3324037399' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.499920+0000 mon.smithi120 (mon.0) 589 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' 2024-09-10T04:17:00.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.499920+0000 mon.smithi120 (mon.0) 589 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825]' entity='osd.3' 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.576272+0000 mon.smithi120 (mon.0) 590 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:16:59.576272+0000 mon.smithi120 (mon.0) 590 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: cluster 2024-09-10T04:17:00.032733+0000 mon.smithi120 (mon.0) 591 : cluster [INF] osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825] boot 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: cluster 2024-09-10T04:17:00.032733+0000 mon.smithi120 (mon.0) 591 : cluster [INF] osd.3 [v2:172.21.15.120:6810/3810642825,v1:172.21.15.120:6811/3810642825] boot 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: cluster 2024-09-10T04:17:00.032880+0000 mon.smithi120 (mon.0) 592 : cluster [INF] osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384] boot 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: cluster 2024-09-10T04:17:00.032880+0000 mon.smithi120 (mon.0) 592 : cluster [INF] osd.4 [v2:172.21.15.151:6816/3349940384,v1:172.21.15.151:6817/3349940384] boot 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: cluster 2024-09-10T04:17:00.032990+0000 mon.smithi120 (mon.0) 593 : cluster [DBG] osdmap e24: 8 total, 5 up, 8 in 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: cluster 2024-09-10T04:17:00.032990+0000 mon.smithi120 (mon.0) 593 : cluster [DBG] osdmap e24: 8 total, 5 up, 8 in 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:17:00.034244+0000 mon.smithi120 (mon.0) 594 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.491 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:00 smithi151 bash[25273]: audit 2024-09-10T04:17:00.034244+0000 mon.smithi120 (mon.0) 594 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-10T04:17:00.602 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":23,"num_osds":8,"num_up_osds":3,"osd_up_since":1725941815,"num_in_osds":8,"osd_in_since":1725941777,"num_remapped_pgs":0} 2024-09-10T04:17:01.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.735784+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:01.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.735784+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:01.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.735902+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:01.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.735902+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:01.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.926746+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.926746+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.926810+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:58.926810+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:59.355532+0000 mgr.smithi120.xfjtcc (mgr.14205) 130 : cluster [DBG] pgmap v84: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:16:59.355532+0000 mgr.smithi120.xfjtcc (mgr.14205) 130 : cluster [DBG] pgmap v84: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:00.035132+0000 mon.smithi120 (mon.0) 595 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:00.035132+0000 mon.smithi120 (mon.0) 595 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:00.036322+0000 mon.smithi120 (mon.0) 596 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:00.036322+0000 mon.smithi120 (mon.0) 596 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:00.036679+0000 mon.smithi120 (mon.0) 597 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:01.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:00.036679+0000 mon.smithi120 (mon.0) 597 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:00.037344+0000 mon.smithi120 (mon.0) 598 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:00.037344+0000 mon.smithi120 (mon.0) 598 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:17:01.032905+0000 mon.smithi120 (mon.0) 599 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: cluster 2024-09-10T04:17:01.032905+0000 mon.smithi120 (mon.0) 599 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:01.033091+0000 mon.smithi120 (mon.0) 600 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:01.033091+0000 mon.smithi120 (mon.0) 600 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:01.033371+0000 mon.smithi120 (mon.0) 601 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:01.033371+0000 mon.smithi120 (mon.0) 601 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:01.033638+0000 mon.smithi120 (mon.0) 602 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:01.284 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:01 smithi120 bash[19947]: audit 2024-09-10T04:17:01.033638+0000 mon.smithi120 (mon.0) 602 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:01.360 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.735784+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:01.360 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.735784+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:01.360 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.735902+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:01.360 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.735902+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:01.360 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.926746+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:01.360 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.926746+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:01.360 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.926810+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:58.926810+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:59.355532+0000 mgr.smithi120.xfjtcc (mgr.14205) 130 : cluster [DBG] pgmap v84: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:16:59.355532+0000 mgr.smithi120.xfjtcc (mgr.14205) 130 : cluster [DBG] pgmap v84: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:00.035132+0000 mon.smithi120 (mon.0) 595 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:00.035132+0000 mon.smithi120 (mon.0) 595 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:00.036322+0000 mon.smithi120 (mon.0) 596 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:00.036322+0000 mon.smithi120 (mon.0) 596 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:00.036679+0000 mon.smithi120 (mon.0) 597 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:00.036679+0000 mon.smithi120 (mon.0) 597 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:00.037344+0000 mon.smithi120 (mon.0) 598 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:00.037344+0000 mon.smithi120 (mon.0) 598 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:17:01.032905+0000 mon.smithi120 (mon.0) 599 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-10T04:17:01.361 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: cluster 2024-09-10T04:17:01.032905+0000 mon.smithi120 (mon.0) 599 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-10T04:17:01.362 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:01.033091+0000 mon.smithi120 (mon.0) 600 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:01.362 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:01.033091+0000 mon.smithi120 (mon.0) 600 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:01.362 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:01.033371+0000 mon.smithi120 (mon.0) 601 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:01.362 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:01.033371+0000 mon.smithi120 (mon.0) 601 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:01.362 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:01.033638+0000 mon.smithi120 (mon.0) 602 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:01.362 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:01 smithi151 bash[25273]: audit 2024-09-10T04:17:01.033638+0000 mon.smithi120 (mon.0) 602 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:01.603 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: cluster 2024-09-10T04:17:01.356070+0000 mgr.smithi120.xfjtcc (mgr.14205) 131 : cluster [DBG] pgmap v87: 1 pgs: 1 creating; 0 B data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: cluster 2024-09-10T04:17:01.356070+0000 mgr.smithi120.xfjtcc (mgr.14205) 131 : cluster [DBG] pgmap v87: 1 pgs: 1 creating; 0 B data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: cluster 2024-09-10T04:17:02.035354+0000 mon.smithi120 (mon.0) 603 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: cluster 2024-09-10T04:17:02.035354+0000 mon.smithi120 (mon.0) 603 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.035680+0000 mon.smithi120 (mon.0) 604 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.035680+0000 mon.smithi120 (mon.0) 604 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.036299+0000 mon.smithi120 (mon.0) 605 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.036299+0000 mon.smithi120 (mon.0) 605 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:03.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.036619+0000 mon.smithi120 (mon.0) 606 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:03.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.036619+0000 mon.smithi120 (mon.0) 606 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:03.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.114155+0000 mon.smithi151 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-10T04:17:03.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.114155+0000 mon.smithi151 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-10T04:17:03.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.114322+0000 mon.smithi120 (mon.0) 607 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-10T04:17:03.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:03 smithi120 bash[19947]: audit 2024-09-10T04:17:02.114322+0000 mon.smithi120 (mon.0) 607 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-10T04:17:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: cluster 2024-09-10T04:17:01.356070+0000 mgr.smithi120.xfjtcc (mgr.14205) 131 : cluster [DBG] pgmap v87: 1 pgs: 1 creating; 0 B data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: cluster 2024-09-10T04:17:01.356070+0000 mgr.smithi120.xfjtcc (mgr.14205) 131 : cluster [DBG] pgmap v87: 1 pgs: 1 creating; 0 B data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: cluster 2024-09-10T04:17:02.035354+0000 mon.smithi120 (mon.0) 603 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-10T04:17:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: cluster 2024-09-10T04:17:02.035354+0000 mon.smithi120 (mon.0) 603 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-10T04:17:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.035680+0000 mon.smithi120 (mon.0) 604 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.035680+0000 mon.smithi120 (mon.0) 604 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.036299+0000 mon.smithi120 (mon.0) 605 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.036299+0000 mon.smithi120 (mon.0) 605 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:03.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.036619+0000 mon.smithi120 (mon.0) 606 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:03.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.036619+0000 mon.smithi120 (mon.0) 606 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:03.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.114155+0000 mon.smithi151 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-10T04:17:03.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.114155+0000 mon.smithi151 (mon.1) 16 : audit [INF] from='osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-10T04:17:03.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.114322+0000 mon.smithi120 (mon.0) 607 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-10T04:17:03.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:03 smithi151 bash[25273]: audit 2024-09-10T04:17:02.114322+0000 mon.smithi120 (mon.0) 607 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-10T04:17:04.434 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.047690+0000 mon.smithi120 (mon.0) 608 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-10T04:17:04.434 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.047690+0000 mon.smithi120 (mon.0) 608 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-10T04:17:04.434 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: cluster 2024-09-10T04:17:03.050523+0000 mon.smithi120 (mon.0) 609 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-10T04:17:04.434 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: cluster 2024-09-10T04:17:03.050523+0000 mon.smithi120 (mon.0) 609 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-10T04:17:04.434 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.050722+0000 mon.smithi120 (mon.0) 610 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:04.434 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.050722+0000 mon.smithi120 (mon.0) 610 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:04.434 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.050901+0000 mon.smithi120 (mon.0) 611 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.050901+0000 mon.smithi120 (mon.0) 611 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.051102+0000 mon.smithi120 (mon.0) 612 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.051102+0000 mon.smithi120 (mon.0) 612 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.056622+0000 mon.smithi120 (mon.0) 613 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.056622+0000 mon.smithi120 (mon.0) 613 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.056665+0000 mon.smithi151 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.056665+0000 mon.smithi151 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.079803+0000 mon.smithi120 (mon.0) 614 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.079803+0000 mon.smithi120 (mon.0) 614 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.083893+0000 mon.smithi120 (mon.0) 615 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.083893+0000 mon.smithi120 (mon.0) 615 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.435 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.089194+0000 mon.smithi120 (mon.0) 616 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.089194+0000 mon.smithi120 (mon.0) 616 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.145564+0000 mon.smithi120 (mon.0) 617 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.145564+0000 mon.smithi120 (mon.0) 617 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.218456+0000 mon.smithi120 (mon.0) 618 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.218456+0000 mon.smithi120 (mon.0) 618 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.289204+0000 mon.smithi120 (mon.0) 619 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.289204+0000 mon.smithi120 (mon.0) 619 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.370247+0000 mon.smithi120 (mon.0) 620 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.370247+0000 mon.smithi120 (mon.0) 620 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.373100+0000 mon.smithi120 (mon.0) 621 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.373100+0000 mon.smithi120 (mon.0) 621 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.413791+0000 mon.smithi120 (mon.0) 622 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-10T04:17:04.436 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.413791+0000 mon.smithi120 (mon.0) 622 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-10T04:17:04.437 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.414056+0000 mon.smithi120 (mon.0) 623 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:17:04.437 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.414056+0000 mon.smithi120 (mon.0) 623 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:17:04.437 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.414245+0000 mon.smithi120 (mon.0) 624 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:17:04.437 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.414245+0000 mon.smithi120 (mon.0) 624 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:17:04.437 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.440179+0000 mon.smithi120 (mon.0) 625 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.437 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.440179+0000 mon.smithi120 (mon.0) 625 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.437 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.442394+0000 mon.smithi120 (mon.0) 626 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:17:04.437 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.442394+0000 mon.smithi120 (mon.0) 626 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.442533+0000 mon.smithi120 (mon.0) 627 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.442533+0000 mon.smithi120 (mon.0) 627 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.442829+0000 mon.smithi151 (mon.1) 18 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.442829+0000 mon.smithi151 (mon.1) 18 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.495408+0000 mon.smithi151 (mon.1) 19 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.495408+0000 mon.smithi151 (mon.1) 19 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.526949+0000 mon.smithi120 (mon.0) 628 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.526949+0000 mon.smithi120 (mon.0) 628 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.655570+0000 mon.smithi120 (mon.0) 629 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:04.438 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:04 smithi120 bash[19947]: audit 2024-09-10T04:17:03.655570+0000 mon.smithi120 (mon.0) 629 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:04.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.047690+0000 mon.smithi120 (mon.0) 608 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-10T04:17:04.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.047690+0000 mon.smithi120 (mon.0) 608 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-10T04:17:04.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: cluster 2024-09-10T04:17:03.050523+0000 mon.smithi120 (mon.0) 609 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: cluster 2024-09-10T04:17:03.050523+0000 mon.smithi120 (mon.0) 609 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.050722+0000 mon.smithi120 (mon.0) 610 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.050722+0000 mon.smithi120 (mon.0) 610 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.050901+0000 mon.smithi120 (mon.0) 611 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.050901+0000 mon.smithi120 (mon.0) 611 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.051102+0000 mon.smithi120 (mon.0) 612 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.051102+0000 mon.smithi120 (mon.0) 612 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.056622+0000 mon.smithi120 (mon.0) 613 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.056622+0000 mon.smithi120 (mon.0) 613 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.056665+0000 mon.smithi151 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.056665+0000 mon.smithi151 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]} : dispatch 2024-09-10T04:17:04.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.079803+0000 mon.smithi120 (mon.0) 614 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.079803+0000 mon.smithi120 (mon.0) 614 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.083893+0000 mon.smithi120 (mon.0) 615 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.083893+0000 mon.smithi120 (mon.0) 615 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.089194+0000 mon.smithi120 (mon.0) 616 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.089194+0000 mon.smithi120 (mon.0) 616 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.145564+0000 mon.smithi120 (mon.0) 617 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.145564+0000 mon.smithi120 (mon.0) 617 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.218456+0000 mon.smithi120 (mon.0) 618 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.218456+0000 mon.smithi120 (mon.0) 618 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.289204+0000 mon.smithi120 (mon.0) 619 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.289204+0000 mon.smithi120 (mon.0) 619 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.370247+0000 mon.smithi120 (mon.0) 620 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.370247+0000 mon.smithi120 (mon.0) 620 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.373100+0000 mon.smithi120 (mon.0) 621 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.373100+0000 mon.smithi120 (mon.0) 621 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.413791+0000 mon.smithi120 (mon.0) 622 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.413791+0000 mon.smithi120 (mon.0) 622 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.414056+0000 mon.smithi120 (mon.0) 623 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.414056+0000 mon.smithi120 (mon.0) 623 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:17:04.488 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.414245+0000 mon.smithi120 (mon.0) 624 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.414245+0000 mon.smithi120 (mon.0) 624 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.440179+0000 mon.smithi120 (mon.0) 625 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.440179+0000 mon.smithi120 (mon.0) 625 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.442394+0000 mon.smithi120 (mon.0) 626 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.442394+0000 mon.smithi120 (mon.0) 626 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi120"} : dispatch 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.442533+0000 mon.smithi120 (mon.0) 627 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.442533+0000 mon.smithi120 (mon.0) 627 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "mon metadata", "id": "smithi151"} : dispatch 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.442829+0000 mon.smithi151 (mon.1) 18 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.442829+0000 mon.smithi151 (mon.1) 18 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.495408+0000 mon.smithi151 (mon.1) 19 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.495408+0000 mon.smithi151 (mon.1) 19 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.526949+0000 mon.smithi120 (mon.0) 628 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.526949+0000 mon.smithi120 (mon.0) 628 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:04.489 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.655570+0000 mon.smithi120 (mon.0) 629 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:04.490 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:04 smithi151 bash[25273]: audit 2024-09-10T04:17:03.655570+0000 mon.smithi120 (mon.0) 629 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:05.345 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: cluster 2024-09-10T04:17:03.356482+0000 mgr.smithi120.xfjtcc (mgr.14205) 132 : cluster [DBG] pgmap v90: 1 pgs: 1 creating; 0 B data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:05.345 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: cluster 2024-09-10T04:17:03.356482+0000 mgr.smithi120.xfjtcc (mgr.14205) 132 : cluster [DBG] pgmap v90: 1 pgs: 1 creating; 0 B data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:05.345 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.050662+0000 mon.smithi120 (mon.0) 630 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:17:05.345 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.050662+0000 mon.smithi120 (mon.0) 630 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:17:05.345 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: cluster 2024-09-10T04:17:04.056244+0000 mon.smithi120 (mon.0) 631 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: cluster 2024-09-10T04:17:04.056244+0000 mon.smithi120 (mon.0) 631 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.057192+0000 mon.smithi120 (mon.0) 632 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.057192+0000 mon.smithi120 (mon.0) 632 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.057583+0000 mon.smithi120 (mon.0) 633 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.057583+0000 mon.smithi120 (mon.0) 633 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.058062+0000 mon.smithi120 (mon.0) 634 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.058062+0000 mon.smithi120 (mon.0) 634 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.071807+0000 mon.smithi120 (mon.0) 635 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:05.346 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:05 smithi120 bash[19947]: audit 2024-09-10T04:17:04.071807+0000 mon.smithi120 (mon.0) 635 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: cluster 2024-09-10T04:17:03.356482+0000 mgr.smithi120.xfjtcc (mgr.14205) 132 : cluster [DBG] pgmap v90: 1 pgs: 1 creating; 0 B data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: cluster 2024-09-10T04:17:03.356482+0000 mgr.smithi120.xfjtcc (mgr.14205) 132 : cluster [DBG] pgmap v90: 1 pgs: 1 creating; 0 B data, 141 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.050662+0000 mon.smithi120 (mon.0) 630 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.050662+0000 mon.smithi120 (mon.0) 630 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: cluster 2024-09-10T04:17:04.056244+0000 mon.smithi120 (mon.0) 631 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: cluster 2024-09-10T04:17:04.056244+0000 mon.smithi120 (mon.0) 631 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.057192+0000 mon.smithi120 (mon.0) 632 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.057192+0000 mon.smithi120 (mon.0) 632 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.057583+0000 mon.smithi120 (mon.0) 633 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.057583+0000 mon.smithi120 (mon.0) 633 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.058062+0000 mon.smithi120 (mon.0) 634 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.058062+0000 mon.smithi120 (mon.0) 634 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:05.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.071807+0000 mon.smithi120 (mon.0) 635 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:05.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:05 smithi151 bash[25273]: audit 2024-09-10T04:17:04.071807+0000 mon.smithi120 (mon.0) 635 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:03.066042+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:06.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:03.066042+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:06.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:03.066099+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:03.066099+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:05.065126+0000 mon.smithi120 (mon.0) 636 : cluster [INF] osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399] boot 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:05.065126+0000 mon.smithi120 (mon.0) 636 : cluster [INF] osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399] boot 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:05.065169+0000 mon.smithi120 (mon.0) 637 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:05.065169+0000 mon.smithi120 (mon.0) 637 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: audit 2024-09-10T04:17:05.065579+0000 mon.smithi120 (mon.0) 638 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: audit 2024-09-10T04:17:05.065579+0000 mon.smithi120 (mon.0) 638 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: audit 2024-09-10T04:17:05.065866+0000 mon.smithi120 (mon.0) 639 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: audit 2024-09-10T04:17:05.065866+0000 mon.smithi120 (mon.0) 639 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: audit 2024-09-10T04:17:05.066139+0000 mon.smithi120 (mon.0) 640 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: audit 2024-09-10T04:17:05.066139+0000 mon.smithi120 (mon.0) 640 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: audit 2024-09-10T04:17:05.066596+0000 mon.smithi120 (mon.0) 641 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: audit 2024-09-10T04:17:05.066596+0000 mon.smithi120 (mon.0) 641 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:05.309850+0000 mon.smithi120 (mon.0) 642 : cluster [DBG] mgrmap e20: smithi120.xfjtcc(active, since 2m), standbys: smithi151.abmuzj 2024-09-10T04:17:06.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:06 smithi151 bash[25273]: cluster 2024-09-10T04:17:05.309850+0000 mon.smithi120 (mon.0) 642 : cluster [DBG] mgrmap e20: smithi120.xfjtcc(active, since 2m), standbys: smithi151.abmuzj 2024-09-10T04:17:06.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:03.066042+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:06.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:03.066042+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:06.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:03.066099+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:03.066099+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:05.065126+0000 mon.smithi120 (mon.0) 636 : cluster [INF] osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399] boot 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:05.065126+0000 mon.smithi120 (mon.0) 636 : cluster [INF] osd.6 [v2:172.21.15.151:6824/882674399,v1:172.21.15.151:6825/882674399] boot 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:05.065169+0000 mon.smithi120 (mon.0) 637 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:05.065169+0000 mon.smithi120 (mon.0) 637 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: audit 2024-09-10T04:17:05.065579+0000 mon.smithi120 (mon.0) 638 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: audit 2024-09-10T04:17:05.065579+0000 mon.smithi120 (mon.0) 638 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: audit 2024-09-10T04:17:05.065866+0000 mon.smithi120 (mon.0) 639 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: audit 2024-09-10T04:17:05.065866+0000 mon.smithi120 (mon.0) 639 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: audit 2024-09-10T04:17:05.066139+0000 mon.smithi120 (mon.0) 640 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: audit 2024-09-10T04:17:05.066139+0000 mon.smithi120 (mon.0) 640 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: audit 2024-09-10T04:17:05.066596+0000 mon.smithi120 (mon.0) 641 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: audit 2024-09-10T04:17:05.066596+0000 mon.smithi120 (mon.0) 641 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-10T04:17:06.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:05.309850+0000 mon.smithi120 (mon.0) 642 : cluster [DBG] mgrmap e20: smithi120.xfjtcc(active, since 2m), standbys: smithi151.abmuzj 2024-09-10T04:17:06.534 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:06 smithi120 bash[19947]: cluster 2024-09-10T04:17:05.309850+0000 mon.smithi120 (mon.0) 642 : cluster [DBG] mgrmap e20: smithi120.xfjtcc(active, since 2m), standbys: smithi151.abmuzj 2024-09-10T04:17:07.373 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:07 smithi120 bash[19947]: cluster 2024-09-10T04:17:05.356961+0000 mgr.smithi120.xfjtcc (mgr.14205) 133 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:07.373 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:07 smithi120 bash[19947]: cluster 2024-09-10T04:17:05.356961+0000 mgr.smithi120.xfjtcc (mgr.14205) 133 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:07.373 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:07 smithi120 bash[19947]: audit 2024-09-10T04:17:06.113642+0000 mon.smithi120 (mon.0) 643 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-10T04:17:07.373 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:07 smithi120 bash[19947]: audit 2024-09-10T04:17:06.113642+0000 mon.smithi120 (mon.0) 643 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-10T04:17:07.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:07 smithi151 bash[25273]: cluster 2024-09-10T04:17:05.356961+0000 mgr.smithi120.xfjtcc (mgr.14205) 133 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:07.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:07 smithi151 bash[25273]: cluster 2024-09-10T04:17:05.356961+0000 mgr.smithi120.xfjtcc (mgr.14205) 133 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 152 MiB used, 447 GiB / 447 GiB avail 2024-09-10T04:17:07.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:07 smithi151 bash[25273]: audit 2024-09-10T04:17:06.113642+0000 mon.smithi120 (mon.0) 643 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-10T04:17:07.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:07 smithi151 bash[25273]: audit 2024-09-10T04:17:06.113642+0000 mon.smithi120 (mon.0) 643 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-10T04:17:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: audit 2024-09-10T04:17:07.081120+0000 mon.smithi120 (mon.0) 644 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-10T04:17:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: audit 2024-09-10T04:17:07.081120+0000 mon.smithi120 (mon.0) 644 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-10T04:17:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: cluster 2024-09-10T04:17:07.084152+0000 mon.smithi120 (mon.0) 645 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-10T04:17:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: cluster 2024-09-10T04:17:07.084152+0000 mon.smithi120 (mon.0) 645 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-10T04:17:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: audit 2024-09-10T04:17:07.084386+0000 mon.smithi120 (mon.0) 646 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:17:08.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: audit 2024-09-10T04:17:07.084386+0000 mon.smithi120 (mon.0) 646 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:17:08.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: audit 2024-09-10T04:17:07.084615+0000 mon.smithi120 (mon.0) 647 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:08.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: audit 2024-09-10T04:17:07.084615+0000 mon.smithi120 (mon.0) 647 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:08.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: audit 2024-09-10T04:17:07.084802+0000 mon.smithi120 (mon.0) 648 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:08.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:08 smithi120 bash[19947]: audit 2024-09-10T04:17:07.084802+0000 mon.smithi120 (mon.0) 648 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:08.324 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:17:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: audit 2024-09-10T04:17:07.081120+0000 mon.smithi120 (mon.0) 644 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-10T04:17:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: audit 2024-09-10T04:17:07.081120+0000 mon.smithi120 (mon.0) 644 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-10T04:17:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: cluster 2024-09-10T04:17:07.084152+0000 mon.smithi120 (mon.0) 645 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-10T04:17:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: cluster 2024-09-10T04:17:07.084152+0000 mon.smithi120 (mon.0) 645 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-10T04:17:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: audit 2024-09-10T04:17:07.084386+0000 mon.smithi120 (mon.0) 646 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:17:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: audit 2024-09-10T04:17:07.084386+0000 mon.smithi120 (mon.0) 646 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:17:08.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: audit 2024-09-10T04:17:07.084615+0000 mon.smithi120 (mon.0) 647 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:08.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: audit 2024-09-10T04:17:07.084615+0000 mon.smithi120 (mon.0) 647 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:08.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: audit 2024-09-10T04:17:07.084802+0000 mon.smithi120 (mon.0) 648 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:08.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:08 smithi151 bash[25273]: audit 2024-09-10T04:17:07.084802+0000 mon.smithi120 (mon.0) 648 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: cluster 2024-09-10T04:17:07.357528+0000 mgr.smithi120.xfjtcc (mgr.14205) 134 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 184 MiB used, 536 GiB / 536 GiB avail 2024-09-10T04:17:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: cluster 2024-09-10T04:17:07.357528+0000 mgr.smithi120.xfjtcc (mgr.14205) 134 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 184 MiB used, 536 GiB / 536 GiB avail 2024-09-10T04:17:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: audit 2024-09-10T04:17:08.084037+0000 mon.smithi120 (mon.0) 649 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: audit 2024-09-10T04:17:08.084037+0000 mon.smithi120 (mon.0) 649 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: cluster 2024-09-10T04:17:08.089577+0000 mon.smithi120 (mon.0) 650 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: cluster 2024-09-10T04:17:08.089577+0000 mon.smithi120 (mon.0) 650 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: audit 2024-09-10T04:17:08.091178+0000 mon.smithi120 (mon.0) 651 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: audit 2024-09-10T04:17:08.091178+0000 mon.smithi120 (mon.0) 651 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: audit 2024-09-10T04:17:08.099524+0000 mon.smithi120 (mon.0) 652 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: audit 2024-09-10T04:17:08.099524+0000 mon.smithi120 (mon.0) 652 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: audit 2024-09-10T04:17:08.100232+0000 mon.smithi120 (mon.0) 653 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:09.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:09 smithi151 bash[25273]: audit 2024-09-10T04:17:08.100232+0000 mon.smithi120 (mon.0) 653 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:09.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: cluster 2024-09-10T04:17:07.357528+0000 mgr.smithi120.xfjtcc (mgr.14205) 134 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 184 MiB used, 536 GiB / 536 GiB avail 2024-09-10T04:17:09.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: cluster 2024-09-10T04:17:07.357528+0000 mgr.smithi120.xfjtcc (mgr.14205) 134 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 184 MiB used, 536 GiB / 536 GiB avail 2024-09-10T04:17:09.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: audit 2024-09-10T04:17:08.084037+0000 mon.smithi120 (mon.0) 649 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:09.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: audit 2024-09-10T04:17:08.084037+0000 mon.smithi120 (mon.0) 649 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:09.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: cluster 2024-09-10T04:17:08.089577+0000 mon.smithi120 (mon.0) 650 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-10T04:17:09.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: cluster 2024-09-10T04:17:08.089577+0000 mon.smithi120 (mon.0) 650 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-10T04:17:09.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: audit 2024-09-10T04:17:08.091178+0000 mon.smithi120 (mon.0) 651 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:09.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: audit 2024-09-10T04:17:08.091178+0000 mon.smithi120 (mon.0) 651 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:09.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: audit 2024-09-10T04:17:08.099524+0000 mon.smithi120 (mon.0) 652 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:09.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: audit 2024-09-10T04:17:08.099524+0000 mon.smithi120 (mon.0) 652 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:09.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: audit 2024-09-10T04:17:08.100232+0000 mon.smithi120 (mon.0) 653 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:09.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:09 smithi120 bash[19947]: audit 2024-09-10T04:17:08.100232+0000 mon.smithi120 (mon.0) 653 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: cluster 2024-09-10T04:17:07.062910+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: cluster 2024-09-10T04:17:07.062910+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: cluster 2024-09-10T04:17:07.062978+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: cluster 2024-09-10T04:17:07.062978+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: cluster 2024-09-10T04:17:09.101461+0000 mon.smithi120 (mon.0) 654 : cluster [INF] osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602] boot 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: cluster 2024-09-10T04:17:09.101461+0000 mon.smithi120 (mon.0) 654 : cluster [INF] osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602] boot 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: cluster 2024-09-10T04:17:09.101513+0000 mon.smithi120 (mon.0) 655 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: cluster 2024-09-10T04:17:09.101513+0000 mon.smithi120 (mon.0) 655 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: audit 2024-09-10T04:17:09.102064+0000 mon.smithi120 (mon.0) 656 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: audit 2024-09-10T04:17:09.102064+0000 mon.smithi120 (mon.0) 656 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:10.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: audit 2024-09-10T04:17:09.102734+0000 mon.smithi120 (mon.0) 657 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:10.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:10 smithi120 bash[19947]: audit 2024-09-10T04:17:09.102734+0000 mon.smithi120 (mon.0) 657 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:10.319 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:17:10.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: cluster 2024-09-10T04:17:07.062910+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:10.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: cluster 2024-09-10T04:17:07.062910+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:10.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: cluster 2024-09-10T04:17:07.062978+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:10.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: cluster 2024-09-10T04:17:07.062978+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: cluster 2024-09-10T04:17:09.101461+0000 mon.smithi120 (mon.0) 654 : cluster [INF] osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602] boot 2024-09-10T04:17:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: cluster 2024-09-10T04:17:09.101461+0000 mon.smithi120 (mon.0) 654 : cluster [INF] osd.5 [v2:172.21.15.120:6818/834528602,v1:172.21.15.120:6819/834528602] boot 2024-09-10T04:17:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: cluster 2024-09-10T04:17:09.101513+0000 mon.smithi120 (mon.0) 655 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-10T04:17:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: cluster 2024-09-10T04:17:09.101513+0000 mon.smithi120 (mon.0) 655 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-10T04:17:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: audit 2024-09-10T04:17:09.102064+0000 mon.smithi120 (mon.0) 656 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: audit 2024-09-10T04:17:09.102064+0000 mon.smithi120 (mon.0) 656 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-10T04:17:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: audit 2024-09-10T04:17:09.102734+0000 mon.smithi120 (mon.0) 657 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:10.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:10 smithi151 bash[25273]: audit 2024-09-10T04:17:09.102734+0000 mon.smithi120 (mon.0) 657 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:11.020 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":33,"num_osds":8,"num_up_osds":7,"osd_up_since":1725941829,"num_in_osds":8,"osd_in_since":1725941777,"num_remapped_pgs":0} 2024-09-10T04:17:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: cluster 2024-09-10T04:17:09.358108+0000 mgr.smithi120.xfjtcc (mgr.14205) 135 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 184 MiB used, 536 GiB / 536 GiB avail 2024-09-10T04:17:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: cluster 2024-09-10T04:17:09.358108+0000 mgr.smithi120.xfjtcc (mgr.14205) 135 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 184 MiB used, 536 GiB / 536 GiB avail 2024-09-10T04:17:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: cluster 2024-09-10T04:17:10.118080+0000 mon.smithi120 (mon.0) 658 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-10T04:17:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: cluster 2024-09-10T04:17:10.118080+0000 mon.smithi120 (mon.0) 658 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-10T04:17:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: audit 2024-09-10T04:17:10.122982+0000 mon.smithi120 (mon.0) 659 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: audit 2024-09-10T04:17:10.122982+0000 mon.smithi120 (mon.0) 659 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: audit 2024-09-10T04:17:10.319110+0000 mon.smithi120 (mon.0) 660 : audit [DBG] from='client.? 172.21.15.120:0/3123567964' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:11.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: audit 2024-09-10T04:17:10.319110+0000 mon.smithi120 (mon.0) 660 : audit [DBG] from='client.? 172.21.15.120:0/3123567964' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:11.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: audit 2024-09-10T04:17:10.711554+0000 mon.smithi120 (mon.0) 661 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-10T04:17:11.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:11 smithi120 bash[19947]: audit 2024-09-10T04:17:10.711554+0000 mon.smithi120 (mon.0) 661 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-10T04:17:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: cluster 2024-09-10T04:17:09.358108+0000 mgr.smithi120.xfjtcc (mgr.14205) 135 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 184 MiB used, 536 GiB / 536 GiB avail 2024-09-10T04:17:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: cluster 2024-09-10T04:17:09.358108+0000 mgr.smithi120.xfjtcc (mgr.14205) 135 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 184 MiB used, 536 GiB / 536 GiB avail 2024-09-10T04:17:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: cluster 2024-09-10T04:17:10.118080+0000 mon.smithi120 (mon.0) 658 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-10T04:17:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: cluster 2024-09-10T04:17:10.118080+0000 mon.smithi120 (mon.0) 658 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-10T04:17:11.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: audit 2024-09-10T04:17:10.122982+0000 mon.smithi120 (mon.0) 659 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:11.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: audit 2024-09-10T04:17:10.122982+0000 mon.smithi120 (mon.0) 659 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:11.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: audit 2024-09-10T04:17:10.319110+0000 mon.smithi120 (mon.0) 660 : audit [DBG] from='client.? 172.21.15.120:0/3123567964' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:11.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: audit 2024-09-10T04:17:10.319110+0000 mon.smithi120 (mon.0) 660 : audit [DBG] from='client.? 172.21.15.120:0/3123567964' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:11.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: audit 2024-09-10T04:17:10.711554+0000 mon.smithi120 (mon.0) 661 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-10T04:17:11.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:11 smithi151 bash[25273]: audit 2024-09-10T04:17:10.711554+0000 mon.smithi120 (mon.0) 661 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-10T04:17:12.021 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd stat -f json 2024-09-10T04:17:12.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: audit 2024-09-10T04:17:11.122237+0000 mon.smithi120 (mon.0) 662 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-10T04:17:12.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: audit 2024-09-10T04:17:11.122237+0000 mon.smithi120 (mon.0) 662 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-10T04:17:12.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: cluster 2024-09-10T04:17:11.127064+0000 mon.smithi120 (mon.0) 663 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-10T04:17:12.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: cluster 2024-09-10T04:17:11.127064+0000 mon.smithi120 (mon.0) 663 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-10T04:17:12.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: audit 2024-09-10T04:17:11.127654+0000 mon.smithi120 (mon.0) 664 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:17:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: audit 2024-09-10T04:17:11.127654+0000 mon.smithi120 (mon.0) 664 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:17:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: audit 2024-09-10T04:17:11.128479+0000 mon.smithi120 (mon.0) 665 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: audit 2024-09-10T04:17:11.128479+0000 mon.smithi120 (mon.0) 665 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: cluster 2024-09-10T04:17:11.358604+0000 mgr.smithi120.xfjtcc (mgr.14205) 136 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-10T04:17:12.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:12 smithi151 bash[25273]: cluster 2024-09-10T04:17:11.358604+0000 mgr.smithi120.xfjtcc (mgr.14205) 136 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: audit 2024-09-10T04:17:11.122237+0000 mon.smithi120 (mon.0) 662 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: audit 2024-09-10T04:17:11.122237+0000 mon.smithi120 (mon.0) 662 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: cluster 2024-09-10T04:17:11.127064+0000 mon.smithi120 (mon.0) 663 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: cluster 2024-09-10T04:17:11.127064+0000 mon.smithi120 (mon.0) 663 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: audit 2024-09-10T04:17:11.127654+0000 mon.smithi120 (mon.0) 664 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: audit 2024-09-10T04:17:11.127654+0000 mon.smithi120 (mon.0) 664 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]} : dispatch 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: audit 2024-09-10T04:17:11.128479+0000 mon.smithi120 (mon.0) 665 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: audit 2024-09-10T04:17:11.128479+0000 mon.smithi120 (mon.0) 665 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: cluster 2024-09-10T04:17:11.358604+0000 mgr.smithi120.xfjtcc (mgr.14205) 136 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-10T04:17:12.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:12 smithi120 bash[19947]: cluster 2024-09-10T04:17:11.358604+0000 mgr.smithi120.xfjtcc (mgr.14205) 136 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 209 MiB used, 626 GiB / 626 GiB avail 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.130146+0000 mon.smithi120 (mon.0) 666 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.130146+0000 mon.smithi120 (mon.0) 666 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: cluster 2024-09-10T04:17:12.135570+0000 mon.smithi120 (mon.0) 667 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: cluster 2024-09-10T04:17:12.135570+0000 mon.smithi120 (mon.0) 667 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.137155+0000 mon.smithi120 (mon.0) 668 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.137155+0000 mon.smithi120 (mon.0) 668 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.143947+0000 mon.smithi120 (mon.0) 669 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.143947+0000 mon.smithi120 (mon.0) 669 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.366971+0000 mon.smithi120 (mon.0) 670 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:13.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.366971+0000 mon.smithi120 (mon.0) 670 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.449685+0000 mon.smithi120 (mon.0) 671 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.449685+0000 mon.smithi120 (mon.0) 671 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.640620+0000 mon.smithi120 (mon.0) 672 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.640620+0000 mon.smithi120 (mon.0) 672 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: cluster 2024-09-10T04:17:12.751642+0000 mon.smithi120 (mon.0) 673 : cluster [INF] osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441] boot 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: cluster 2024-09-10T04:17:12.751642+0000 mon.smithi120 (mon.0) 673 : cluster [INF] osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441] boot 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: cluster 2024-09-10T04:17:12.751760+0000 mon.smithi120 (mon.0) 674 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: cluster 2024-09-10T04:17:12.751760+0000 mon.smithi120 (mon.0) 674 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.752317+0000 mon.smithi120 (mon.0) 675 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.752317+0000 mon.smithi120 (mon.0) 675 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.778550+0000 mon.smithi120 (mon.0) 676 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:17:13.487 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:13 smithi151 bash[25273]: audit 2024-09-10T04:17:12.778550+0000 mon.smithi120 (mon.0) 676 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:17:13.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.130146+0000 mon.smithi120 (mon.0) 666 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.130146+0000 mon.smithi120 (mon.0) 666 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: cluster 2024-09-10T04:17:12.135570+0000 mon.smithi120 (mon.0) 667 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: cluster 2024-09-10T04:17:12.135570+0000 mon.smithi120 (mon.0) 667 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.137155+0000 mon.smithi120 (mon.0) 668 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.137155+0000 mon.smithi120 (mon.0) 668 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.143947+0000 mon.smithi120 (mon.0) 669 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.143947+0000 mon.smithi120 (mon.0) 669 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.366971+0000 mon.smithi120 (mon.0) 670 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.366971+0000 mon.smithi120 (mon.0) 670 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:13.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.449685+0000 mon.smithi120 (mon.0) 671 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.449685+0000 mon.smithi120 (mon.0) 671 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.640620+0000 mon.smithi120 (mon.0) 672 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.640620+0000 mon.smithi120 (mon.0) 672 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441]' entity='osd.7' 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: cluster 2024-09-10T04:17:12.751642+0000 mon.smithi120 (mon.0) 673 : cluster [INF] osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441] boot 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: cluster 2024-09-10T04:17:12.751642+0000 mon.smithi120 (mon.0) 673 : cluster [INF] osd.7 [v2:172.21.15.120:6826/889236441,v1:172.21.15.120:6827/889236441] boot 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: cluster 2024-09-10T04:17:12.751760+0000 mon.smithi120 (mon.0) 674 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: cluster 2024-09-10T04:17:12.751760+0000 mon.smithi120 (mon.0) 674 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.752317+0000 mon.smithi120 (mon.0) 675 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.536 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.752317+0000 mon.smithi120 (mon.0) 675 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-10T04:17:13.537 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.778550+0000 mon.smithi120 (mon.0) 676 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:17:13.537 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:13 smithi120 bash[19947]: audit 2024-09-10T04:17:12.778550+0000 mon.smithi120 (mon.0) 676 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:17:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:14 smithi151 bash[25273]: cluster 2024-09-10T04:17:11.685196+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:14 smithi151 bash[25273]: cluster 2024-09-10T04:17:11.685196+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:14 smithi151 bash[25273]: cluster 2024-09-10T04:17:11.685311+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:14 smithi151 bash[25273]: cluster 2024-09-10T04:17:11.685311+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:14.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:14 smithi151 bash[25273]: cluster 2024-09-10T04:17:13.359273+0000 mgr.smithi120.xfjtcc (mgr.14205) 137 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 635 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:14.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:14 smithi151 bash[25273]: cluster 2024-09-10T04:17:13.359273+0000 mgr.smithi120.xfjtcc (mgr.14205) 137 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 635 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:14.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:14 smithi151 bash[25273]: cluster 2024-09-10T04:17:13.753298+0000 mon.smithi120 (mon.0) 677 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-10T04:17:14.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:14 smithi151 bash[25273]: cluster 2024-09-10T04:17:13.753298+0000 mon.smithi120 (mon.0) 677 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-10T04:17:14.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:14 smithi120 bash[19947]: cluster 2024-09-10T04:17:11.685196+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:14.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:14 smithi120 bash[19947]: cluster 2024-09-10T04:17:11.685196+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-10T04:17:14.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:14 smithi120 bash[19947]: cluster 2024-09-10T04:17:11.685311+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:14.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:14 smithi120 bash[19947]: cluster 2024-09-10T04:17:11.685311+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-10T04:17:14.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:14 smithi120 bash[19947]: cluster 2024-09-10T04:17:13.359273+0000 mgr.smithi120.xfjtcc (mgr.14205) 137 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 635 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:14.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:14 smithi120 bash[19947]: cluster 2024-09-10T04:17:13.359273+0000 mgr.smithi120.xfjtcc (mgr.14205) 137 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 635 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:14.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:14 smithi120 bash[19947]: cluster 2024-09-10T04:17:13.753298+0000 mon.smithi120 (mon.0) 677 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-10T04:17:14.533 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:14 smithi120 bash[19947]: cluster 2024-09-10T04:17:13.753298+0000 mon.smithi120 (mon.0) 677 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-10T04:17:16.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:15 smithi120 bash[19947]: cluster 2024-09-10T04:17:14.755895+0000 mon.smithi120 (mon.0) 678 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-10T04:17:16.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:15 smithi120 bash[19947]: cluster 2024-09-10T04:17:14.755895+0000 mon.smithi120 (mon.0) 678 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-10T04:17:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:15 smithi151 bash[25273]: cluster 2024-09-10T04:17:14.755895+0000 mon.smithi120 (mon.0) 678 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-10T04:17:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:15 smithi151 bash[25273]: cluster 2024-09-10T04:17:14.755895+0000 mon.smithi120 (mon.0) 678 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-10T04:17:16.834 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:17:17.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:16 smithi120 bash[19947]: cluster 2024-09-10T04:17:15.359854+0000 mgr.smithi120.xfjtcc (mgr.14205) 138 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 636 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:17.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:16 smithi120 bash[19947]: cluster 2024-09-10T04:17:15.359854+0000 mgr.smithi120.xfjtcc (mgr.14205) 138 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 636 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:17.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:16 smithi120 bash[19947]: cluster 2024-09-10T04:17:15.768363+0000 mon.smithi120 (mon.0) 679 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-10T04:17:17.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:16 smithi120 bash[19947]: cluster 2024-09-10T04:17:15.768363+0000 mon.smithi120 (mon.0) 679 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-10T04:17:17.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:16 smithi151 bash[25273]: cluster 2024-09-10T04:17:15.359854+0000 mgr.smithi120.xfjtcc (mgr.14205) 138 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 636 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:17.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:16 smithi151 bash[25273]: cluster 2024-09-10T04:17:15.359854+0000 mgr.smithi120.xfjtcc (mgr.14205) 138 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 636 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:17.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:16 smithi151 bash[25273]: cluster 2024-09-10T04:17:15.768363+0000 mon.smithi120 (mon.0) 679 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-10T04:17:17.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:16 smithi151 bash[25273]: cluster 2024-09-10T04:17:15.768363+0000 mon.smithi120 (mon.0) 679 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-10T04:17:18.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:17 smithi120 bash[19947]: cluster 2024-09-10T04:17:16.767048+0000 mon.smithi120 (mon.0) 680 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-10T04:17:18.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:17 smithi120 bash[19947]: cluster 2024-09-10T04:17:16.767048+0000 mon.smithi120 (mon.0) 680 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-10T04:17:18.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:17 smithi151 bash[25273]: cluster 2024-09-10T04:17:16.767048+0000 mon.smithi120 (mon.0) 680 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-10T04:17:18.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:17 smithi151 bash[25273]: cluster 2024-09-10T04:17:16.767048+0000 mon.smithi120 (mon.0) 680 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-10T04:17:18.353 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:17:19.029 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: cluster 2024-09-10T04:17:17.360332+0000 mgr.smithi120.xfjtcc (mgr.14205) 139 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 636 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:19.029 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: cluster 2024-09-10T04:17:17.360332+0000 mgr.smithi120.xfjtcc (mgr.14205) 139 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 636 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:19.029 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.322824+0000 mon.smithi120 (mon.0) 681 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.029 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.322824+0000 mon.smithi120 (mon.0) 681 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.326478+0000 mon.smithi120 (mon.0) 682 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.326478+0000 mon.smithi120 (mon.0) 682 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.353195+0000 mon.smithi120 (mon.0) 683 : audit [DBG] from='client.? 172.21.15.120:0/3869226921' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.353195+0000 mon.smithi120 (mon.0) 683 : audit [DBG] from='client.? 172.21.15.120:0/3869226921' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.655112+0000 mon.smithi120 (mon.0) 684 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.655112+0000 mon.smithi120 (mon.0) 684 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.695169+0000 mon.smithi120 (mon.0) 685 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.695169+0000 mon.smithi120 (mon.0) 685 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.700749+0000 mon.smithi120 (mon.0) 686 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.030 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:18 smithi151 bash[25273]: audit 2024-09-10T04:17:18.700749+0000 mon.smithi120 (mon.0) 686 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: cluster 2024-09-10T04:17:17.360332+0000 mgr.smithi120.xfjtcc (mgr.14205) 139 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 636 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: cluster 2024-09-10T04:17:17.360332+0000 mgr.smithi120.xfjtcc (mgr.14205) 139 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 636 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.322824+0000 mon.smithi120 (mon.0) 681 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.322824+0000 mon.smithi120 (mon.0) 681 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.326478+0000 mon.smithi120 (mon.0) 682 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.326478+0000 mon.smithi120 (mon.0) 682 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.353195+0000 mon.smithi120 (mon.0) 683 : audit [DBG] from='client.? 172.21.15.120:0/3869226921' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.353195+0000 mon.smithi120 (mon.0) 683 : audit [DBG] from='client.? 172.21.15.120:0/3869226921' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.655112+0000 mon.smithi120 (mon.0) 684 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:19.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.655112+0000 mon.smithi120 (mon.0) 684 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.695169+0000 mon.smithi120 (mon.0) 685 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.695169+0000 mon.smithi120 (mon.0) 685 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.700749+0000 mon.smithi120 (mon.0) 686 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:18 smithi120 bash[19947]: audit 2024-09-10T04:17:18.700749+0000 mon.smithi120 (mon.0) 686 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:19.034 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":40,"num_osds":8,"num_up_osds":8,"osd_up_since":1725941832,"num_in_osds":8,"osd_in_since":1725941777,"num_remapped_pgs":0} 2024-09-10T04:17:19.034 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-10T04:17:21.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:20 smithi151 bash[25273]: cluster 2024-09-10T04:17:19.360671+0000 mgr.smithi120.xfjtcc (mgr.14205) 140 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 103 KiB/s, 0 objects/s recovering 2024-09-10T04:17:21.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:20 smithi151 bash[25273]: cluster 2024-09-10T04:17:19.360671+0000 mgr.smithi120.xfjtcc (mgr.14205) 140 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 103 KiB/s, 0 objects/s recovering 2024-09-10T04:17:21.251 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:20 smithi120 bash[19947]: cluster 2024-09-10T04:17:19.360671+0000 mgr.smithi120.xfjtcc (mgr.14205) 140 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 103 KiB/s, 0 objects/s recovering 2024-09-10T04:17:21.251 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:20 smithi120 bash[19947]: cluster 2024-09-10T04:17:19.360671+0000 mgr.smithi120.xfjtcc (mgr.14205) 140 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 103 KiB/s, 0 objects/s recovering 2024-09-10T04:17:23.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:22 smithi151 bash[25273]: cluster 2024-09-10T04:17:21.361214+0000 mgr.smithi120.xfjtcc (mgr.14205) 141 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 87 KiB/s, 0 objects/s recovering 2024-09-10T04:17:23.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:22 smithi151 bash[25273]: cluster 2024-09-10T04:17:21.361214+0000 mgr.smithi120.xfjtcc (mgr.14205) 141 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 87 KiB/s, 0 objects/s recovering 2024-09-10T04:17:23.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:22 smithi120 bash[19947]: cluster 2024-09-10T04:17:21.361214+0000 mgr.smithi120.xfjtcc (mgr.14205) 141 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 87 KiB/s, 0 objects/s recovering 2024-09-10T04:17:23.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:22 smithi120 bash[19947]: cluster 2024-09-10T04:17:21.361214+0000 mgr.smithi120.xfjtcc (mgr.14205) 141 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 87 KiB/s, 0 objects/s recovering 2024-09-10T04:17:23.839 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:17:25.057 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:24 smithi151 bash[25273]: cluster 2024-09-10T04:17:23.361811+0000 mgr.smithi120.xfjtcc (mgr.14205) 142 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-10T04:17:25.057 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:24 smithi151 bash[25273]: cluster 2024-09-10T04:17:23.361811+0000 mgr.smithi120.xfjtcc (mgr.14205) 142 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-10T04:17:25.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:24 smithi120 bash[19947]: cluster 2024-09-10T04:17:23.361811+0000 mgr.smithi120.xfjtcc (mgr.14205) 142 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-10T04:17:25.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:24 smithi120 bash[19947]: cluster 2024-09-10T04:17:23.361811+0000 mgr.smithi120.xfjtcc (mgr.14205) 142 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-10T04:17:25.732 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:17:25.732 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":40,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","created":"2024-09-10T04:11:51.218680+0000","modified":"2024-09-10T04:17:16.758911+0000","last_up_change":"2024-09-10T04:17:12.742999+0000","last_in_change":"2024-09-10T04:16:17.023597+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"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-10T04:16:57.730799+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":"27","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6800","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6801","nonce":3637569127}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6802","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6803","nonce":3637569127}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6806","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6807","nonce":3637569127}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6804","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6805","nonce":3637569127}]},"public_addr":"172.21.15.151:6801/3637569127","cluster_addr":"172.21.15.151:6803/3637569127","heartbeat_back_addr":"172.21.15.151:6807/3637569127","heartbeat_front_addr":"172.21.15.151:6805/3637569127","state":["exists","up"]},{"osd":1,"uuid":"ca435627-a127-409e-9d51-9bd1756bb312","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6803","nonce":2998593940}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6805","nonce":2998593940}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6809","nonce":2998593940}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6807","nonce":2998593940}]},"public_addr":"172.21.15.120:6803/2998593940","cluster_addr":"172.21.15.120:6805/2998593940","heartbeat_back_addr":"172.21.15.120:6809/2998593940","heartbeat_front_addr":"172.21.15.120:6807/2998593940","state":["exists","up"]},{"osd":2,"uuid":"2942c27c-50fe-461f-9219-6bfa9e807845","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6808","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6809","nonce":2227286150}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6810","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6811","nonce":2227286150}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6814","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6815","nonce":2227286150}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6812","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6813","nonce":2227286150}]},"public_addr":"172.21.15.151:6809/2227286150","cluster_addr":"172.21.15.151:6811/2227286150","heartbeat_back_addr":"172.21.15.151:6815/2227286150","heartbeat_front_addr":"172.21.15.151:6813/2227286150","state":["exists","up"]},{"osd":3,"uuid":"0166d245-c049-4007-aa85-f30248199406","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6811","nonce":3810642825}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6813","nonce":3810642825}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6817","nonce":3810642825}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6815","nonce":3810642825}]},"public_addr":"172.21.15.120:6811/3810642825","cluster_addr":"172.21.15.120:6813/3810642825","heartbeat_back_addr":"172.21.15.120:6817/3810642825","heartbeat_front_addr":"172.21.15.120:6815/3810642825","state":["exists","up"]},{"osd":4,"uuid":"cafbe21f-5369-4b64-9b70-4b2364c1f243","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6816","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6817","nonce":3349940384}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6818","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6819","nonce":3349940384}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6822","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6823","nonce":3349940384}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6820","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6821","nonce":3349940384}]},"public_addr":"172.21.15.151:6817/3349940384","cluster_addr":"172.21.15.151:6819/3349940384","heartbeat_back_addr":"172.21.15.151:6823/3349940384","heartbeat_front_addr":"172.21.15.151:6821/3349940384","state":["exists","up"]},{"osd":5,"uuid":"28533df4-185f-4636-9608-53d982463f52","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6819","nonce":834528602}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6821","nonce":834528602}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6825","nonce":834528602}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6823","nonce":834528602}]},"public_addr":"172.21.15.120:6819/834528602","cluster_addr":"172.21.15.120:6821/834528602","heartbeat_back_addr":"172.21.15.120:6825/834528602","heartbeat_front_addr":"172.21.15.120:6823/834528602","state":["exists","up"]},{"osd":6,"uuid":"81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6824","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6825","nonce":882674399}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6826","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6827","nonce":882674399}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6830","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6831","nonce":882674399}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6828","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6829","nonce":882674399}]},"public_addr":"172.21.15.151:6825/882674399","cluster_addr":"172.21.15.151:6827/882674399","heartbeat_back_addr":"172.21.15.151:6831/882674399","heartbeat_front_addr":"172.21.15.151:6829/882674399","state":["exists","up"]},{"osd":7,"uuid":"93aa6c24-d48d-4878-93d8-2d304cecf27e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6827","nonce":889236441}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6829","nonce":889236441}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6832","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6833","nonce":889236441}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6831","nonce":889236441}]},"public_addr":"172.21.15.120:6827/889236441","cluster_addr":"172.21.15.120:6829/889236441","heartbeat_back_addr":"172.21.15.120:6833/889236441","heartbeat_front_addr":"172.21.15.120:6831/889236441","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-10T04:16:48.712732+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-10T04:16:53.137019+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-10T04:16:54.243319+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-10T04:16:58.926812+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-10T04:16:58.735907+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-10T04:17:07.062981+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-10T04:17:03.066102+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-10T04:17:11.685317+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.120:0/3699651774":"2024-09-11T04:14:33.313908+0000","172.21.15.120:6801/1818997177":"2024-09-11T04:14:33.313908+0000","172.21.15.120:6801/23864662":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/1165350081":"2024-09-11T04:13:07.714671+0000","172.21.15.120:6801/2793141550":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/2793141550":"2024-09-11T04:12:18.586985+0000","172.21.15.120:0/832175735":"2024-09-11T04:14:33.313908+0000","172.21.15.120:0/605007674":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/23864662":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/3666904403":"2024-09-11T04:12:18.586985+0000","172.21.15.120:0/924069797":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/1818997177":"2024-09-11T04:14:33.313908+0000","172.21.15.120:0/1034916674":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/2153673182":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/2932186428":"2024-09-11T04:14:33.313908+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-10T04:17:26.041 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:25 smithi120 bash[19947]: audit 2024-09-10T04:17:25.731353+0000 mon.smithi120 (mon.0) 687 : audit [DBG] from='client.? 172.21.15.120:0/4257657547' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:17:26.041 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:25 smithi120 bash[19947]: audit 2024-09-10T04:17:25.731353+0000 mon.smithi120 (mon.0) 687 : audit [DBG] from='client.? 172.21.15.120:0/4257657547' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:17:26.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:25 smithi151 bash[25273]: audit 2024-09-10T04:17:25.731353+0000 mon.smithi120 (mon.0) 687 : audit [DBG] from='client.? 172.21.15.120:0/4257657547' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:17:26.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:25 smithi151 bash[25273]: audit 2024-09-10T04:17:25.731353+0000 mon.smithi120 (mon.0) 687 : audit [DBG] from='client.? 172.21.15.120:0/4257657547' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:17:26.936 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-10T04:16:57.730799+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': '27', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-10T04:17:26.937 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-10T04:17:27.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:26 smithi151 bash[25273]: cluster 2024-09-10T04:17:25.362394+0000 mgr.smithi120.xfjtcc (mgr.14205) 143 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-10T04:17:27.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:26 smithi151 bash[25273]: cluster 2024-09-10T04:17:25.362394+0000 mgr.smithi120.xfjtcc (mgr.14205) 143 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-10T04:17:27.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:26 smithi120 bash[19947]: cluster 2024-09-10T04:17:25.362394+0000 mgr.smithi120.xfjtcc (mgr.14205) 143 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-10T04:17:27.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:26 smithi120 bash[19947]: cluster 2024-09-10T04:17:25.362394+0000 mgr.smithi120.xfjtcc (mgr.14205) 143 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-10T04:17:29.058 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:28 smithi151 bash[25273]: cluster 2024-09-10T04:17:27.362994+0000 mgr.smithi120.xfjtcc (mgr.14205) 144 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-10T04:17:29.058 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:28 smithi151 bash[25273]: cluster 2024-09-10T04:17:27.362994+0000 mgr.smithi120.xfjtcc (mgr.14205) 144 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-10T04:17:29.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:28 smithi120 bash[19947]: cluster 2024-09-10T04:17:27.362994+0000 mgr.smithi120.xfjtcc (mgr.14205) 144 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-10T04:17:29.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:28 smithi120 bash[19947]: cluster 2024-09-10T04:17:27.362994+0000 mgr.smithi120.xfjtcc (mgr.14205) 144 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-10T04:17:30.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: cluster 2024-09-10T04:17:29.363419+0000 mgr.smithi120.xfjtcc (mgr.14205) 145 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-10T04:17:30.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: cluster 2024-09-10T04:17:29.363419+0000 mgr.smithi120.xfjtcc (mgr.14205) 145 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-10T04:17:30.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: cephadm 2024-09-10T04:17:29.531038+0000 mgr.smithi120.xfjtcc (mgr.14205) 146 : cephadm [INF] Detected new or changed devices on smithi151 2024-09-10T04:17:30.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: cephadm 2024-09-10T04:17:29.531038+0000 mgr.smithi120.xfjtcc (mgr.14205) 146 : cephadm [INF] Detected new or changed devices on smithi151 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.538081+0000 mon.smithi120 (mon.0) 688 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.538081+0000 mon.smithi120 (mon.0) 688 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.543917+0000 mon.smithi120 (mon.0) 689 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.543917+0000 mon.smithi120 (mon.0) 689 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.545904+0000 mon.smithi120 (mon.0) 690 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.545904+0000 mon.smithi120 (mon.0) 690 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.546975+0000 mon.smithi120 (mon.0) 691 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.546975+0000 mon.smithi120 (mon.0) 691 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.547956+0000 mon.smithi120 (mon.0) 692 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.547956+0000 mon.smithi120 (mon.0) 692 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.548999+0000 mon.smithi120 (mon.0) 693 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.548999+0000 mon.smithi120 (mon.0) 693 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: cephadm 2024-09-10T04:17:29.549807+0000 mgr.smithi120.xfjtcc (mgr.14205) 147 : cephadm [INF] Adjusting osd_memory_target on smithi151 to 3772M 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: cephadm 2024-09-10T04:17:29.549807+0000 mgr.smithi120.xfjtcc (mgr.14205) 147 : cephadm [INF] Adjusting osd_memory_target on smithi151 to 3772M 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.553685+0000 mon.smithi120 (mon.0) 694 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:29.553685+0000 mon.smithi120 (mon.0) 694 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.356253+0000 mon.smithi120 (mon.0) 695 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.356253+0000 mon.smithi120 (mon.0) 695 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.366670+0000 mon.smithi120 (mon.0) 696 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.366670+0000 mon.smithi120 (mon.0) 696 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.369979+0000 mon.smithi120 (mon.0) 697 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.369979+0000 mon.smithi120 (mon.0) 697 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.371565+0000 mon.smithi120 (mon.0) 698 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.371565+0000 mon.smithi120 (mon.0) 698 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.372905+0000 mon.smithi120 (mon.0) 699 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.372905+0000 mon.smithi120 (mon.0) 699 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.374409+0000 mon.smithi120 (mon.0) 700 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.374409+0000 mon.smithi120 (mon.0) 700 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.381228+0000 mon.smithi120 (mon.0) 701 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.381228+0000 mon.smithi120 (mon.0) 701 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.385672+0000 mon.smithi120 (mon.0) 702 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.385672+0000 mon.smithi120 (mon.0) 702 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:30.988 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.386749+0000 mon.smithi120 (mon.0) 703 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.386749+0000 mon.smithi120 (mon.0) 703 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.393401+0000 mon.smithi120 (mon.0) 704 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.393401+0000 mon.smithi120 (mon.0) 704 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.396577+0000 mon.smithi120 (mon.0) 705 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.396577+0000 mon.smithi120 (mon.0) 705 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.402897+0000 mon.smithi120 (mon.0) 706 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.402897+0000 mon.smithi120 (mon.0) 706 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.404093+0000 mon.smithi120 (mon.0) 707 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.404093+0000 mon.smithi120 (mon.0) 707 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.412749+0000 mon.smithi120 (mon.0) 708 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.412749+0000 mon.smithi120 (mon.0) 708 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:17:30.989 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.414025+0000 mon.smithi120 (mon.0) 709 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:30.990 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:30 smithi151 bash[25273]: audit 2024-09-10T04:17:30.414025+0000 mon.smithi120 (mon.0) 709 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:31.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: cluster 2024-09-10T04:17:29.363419+0000 mgr.smithi120.xfjtcc (mgr.14205) 145 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-10T04:17:31.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: cluster 2024-09-10T04:17:29.363419+0000 mgr.smithi120.xfjtcc (mgr.14205) 145 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-10T04:17:31.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: cephadm 2024-09-10T04:17:29.531038+0000 mgr.smithi120.xfjtcc (mgr.14205) 146 : cephadm [INF] Detected new or changed devices on smithi151 2024-09-10T04:17:31.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: cephadm 2024-09-10T04:17:29.531038+0000 mgr.smithi120.xfjtcc (mgr.14205) 146 : cephadm [INF] Detected new or changed devices on smithi151 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.538081+0000 mon.smithi120 (mon.0) 688 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.538081+0000 mon.smithi120 (mon.0) 688 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.543917+0000 mon.smithi120 (mon.0) 689 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.543917+0000 mon.smithi120 (mon.0) 689 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.545904+0000 mon.smithi120 (mon.0) 690 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.545904+0000 mon.smithi120 (mon.0) 690 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.546975+0000 mon.smithi120 (mon.0) 691 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.546975+0000 mon.smithi120 (mon.0) 691 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.547956+0000 mon.smithi120 (mon.0) 692 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.547956+0000 mon.smithi120 (mon.0) 692 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.548999+0000 mon.smithi120 (mon.0) 693 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.548999+0000 mon.smithi120 (mon.0) 693 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: cephadm 2024-09-10T04:17:29.549807+0000 mgr.smithi120.xfjtcc (mgr.14205) 147 : cephadm [INF] Adjusting osd_memory_target on smithi151 to 3772M 2024-09-10T04:17:31.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: cephadm 2024-09-10T04:17:29.549807+0000 mgr.smithi120.xfjtcc (mgr.14205) 147 : cephadm [INF] Adjusting osd_memory_target on smithi151 to 3772M 2024-09-10T04:17:31.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.553685+0000 mon.smithi120 (mon.0) 694 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:29.553685+0000 mon.smithi120 (mon.0) 694 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.356253+0000 mon.smithi120 (mon.0) 695 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.356253+0000 mon.smithi120 (mon.0) 695 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.366670+0000 mon.smithi120 (mon.0) 696 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.366670+0000 mon.smithi120 (mon.0) 696 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.369979+0000 mon.smithi120 (mon.0) 697 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.369979+0000 mon.smithi120 (mon.0) 697 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.371565+0000 mon.smithi120 (mon.0) 698 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.371565+0000 mon.smithi120 (mon.0) 698 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.372905+0000 mon.smithi120 (mon.0) 699 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.372905+0000 mon.smithi120 (mon.0) 699 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.374409+0000 mon.smithi120 (mon.0) 700 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.374409+0000 mon.smithi120 (mon.0) 700 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-10T04:17:31.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.381228+0000 mon.smithi120 (mon.0) 701 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.381228+0000 mon.smithi120 (mon.0) 701 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.385672+0000 mon.smithi120 (mon.0) 702 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.385672+0000 mon.smithi120 (mon.0) 702 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.386749+0000 mon.smithi120 (mon.0) 703 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.386749+0000 mon.smithi120 (mon.0) 703 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.393401+0000 mon.smithi120 (mon.0) 704 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.393401+0000 mon.smithi120 (mon.0) 704 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.396577+0000 mon.smithi120 (mon.0) 705 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:17:31.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.396577+0000 mon.smithi120 (mon.0) 705 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:17:31.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.402897+0000 mon.smithi120 (mon.0) 706 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:17:31.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.402897+0000 mon.smithi120 (mon.0) 706 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:17:31.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.404093+0000 mon.smithi120 (mon.0) 707 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:31.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.404093+0000 mon.smithi120 (mon.0) 707 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:31.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.412749+0000 mon.smithi120 (mon.0) 708 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:17:31.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.412749+0000 mon.smithi120 (mon.0) 708 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-10T04:17:31.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.414025+0000 mon.smithi120 (mon.0) 709 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:31.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:30 smithi120 bash[19947]: audit 2024-09-10T04:17:30.414025+0000 mon.smithi120 (mon.0) 709 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:17:31.753 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:17:31.845 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:31 smithi120 bash[19947]: cephadm 2024-09-10T04:17:30.346152+0000 mgr.smithi120.xfjtcc (mgr.14205) 148 : cephadm [INF] Detected new or changed devices on smithi120 2024-09-10T04:17:31.845 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:31 smithi120 bash[19947]: cephadm 2024-09-10T04:17:30.346152+0000 mgr.smithi120.xfjtcc (mgr.14205) 148 : cephadm [INF] Detected new or changed devices on smithi120 2024-09-10T04:17:31.845 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:31 smithi120 bash[19947]: cephadm 2024-09-10T04:17:30.375350+0000 mgr.smithi120.xfjtcc (mgr.14205) 149 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3004M 2024-09-10T04:17:31.845 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:31 smithi120 bash[19947]: cephadm 2024-09-10T04:17:30.375350+0000 mgr.smithi120.xfjtcc (mgr.14205) 149 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3004M 2024-09-10T04:17:31.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:31 smithi151 bash[25273]: cephadm 2024-09-10T04:17:30.346152+0000 mgr.smithi120.xfjtcc (mgr.14205) 148 : cephadm [INF] Detected new or changed devices on smithi120 2024-09-10T04:17:31.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:31 smithi151 bash[25273]: cephadm 2024-09-10T04:17:30.346152+0000 mgr.smithi120.xfjtcc (mgr.14205) 148 : cephadm [INF] Detected new or changed devices on smithi120 2024-09-10T04:17:31.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:31 smithi151 bash[25273]: cephadm 2024-09-10T04:17:30.375350+0000 mgr.smithi120.xfjtcc (mgr.14205) 149 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3004M 2024-09-10T04:17:31.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:31 smithi151 bash[25273]: cephadm 2024-09-10T04:17:30.375350+0000 mgr.smithi120.xfjtcc (mgr.14205) 149 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3004M 2024-09-10T04:17:32.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:32 smithi120 bash[19947]: cluster 2024-09-10T04:17:31.364015+0000 mgr.smithi120.xfjtcc (mgr.14205) 150 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:32.832 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:32 smithi120 bash[19947]: cluster 2024-09-10T04:17:31.364015+0000 mgr.smithi120.xfjtcc (mgr.14205) 150 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:32.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:32 smithi151 bash[25273]: cluster 2024-09-10T04:17:31.364015+0000 mgr.smithi120.xfjtcc (mgr.14205) 150 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:32.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:32 smithi151 bash[25273]: cluster 2024-09-10T04:17:31.364015+0000 mgr.smithi120.xfjtcc (mgr.14205) 150 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:33.168 INFO:teuthology.orchestra.run.smithi120.stdout:pg_num: 1 2024-09-10T04:17:33.819 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:33 smithi120 bash[19947]: audit 2024-09-10T04:17:33.168027+0000 mon.smithi120 (mon.0) 710 : audit [DBG] from='client.? 172.21.15.120:0/1519965919' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-10T04:17:33.819 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:33 smithi120 bash[19947]: audit 2024-09-10T04:17:33.168027+0000 mon.smithi120 (mon.0) 710 : audit [DBG] from='client.? 172.21.15.120:0/1519965919' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-10T04:17:33.821 INFO:tasks.cephadm:Setting up client nodes... 2024-09-10T04:17:33.821 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-10T04:17:33.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:33 smithi151 bash[25273]: audit 2024-09-10T04:17:33.168027+0000 mon.smithi120 (mon.0) 710 : audit [DBG] from='client.? 172.21.15.120:0/1519965919' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-10T04:17:33.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:33 smithi151 bash[25273]: audit 2024-09-10T04:17:33.168027+0000 mon.smithi120 (mon.0) 710 : audit [DBG] from='client.? 172.21.15.120:0/1519965919' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-10T04:17:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:34 smithi151 bash[25273]: cluster 2024-09-10T04:17:33.364577+0000 mgr.smithi120.xfjtcc (mgr.14205) 151 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:34 smithi151 bash[25273]: cluster 2024-09-10T04:17:33.364577+0000 mgr.smithi120.xfjtcc (mgr.14205) 151 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:34 smithi151 bash[25273]: audit 2024-09-10T04:17:33.660422+0000 mon.smithi120 (mon.0) 711 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:34 smithi151 bash[25273]: audit 2024-09-10T04:17:33.660422+0000 mon.smithi120 (mon.0) 711 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:34 smithi120 bash[19947]: cluster 2024-09-10T04:17:33.364577+0000 mgr.smithi120.xfjtcc (mgr.14205) 151 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:34 smithi120 bash[19947]: cluster 2024-09-10T04:17:33.364577+0000 mgr.smithi120.xfjtcc (mgr.14205) 151 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:34 smithi120 bash[19947]: audit 2024-09-10T04:17:33.660422+0000 mon.smithi120 (mon.0) 711 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:34 smithi120 bash[19947]: audit 2024-09-10T04:17:33.660422+0000 mon.smithi120 (mon.0) 711 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:36.603 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:36 smithi120 bash[19947]: cluster 2024-09-10T04:17:35.365107+0000 mgr.smithi120.xfjtcc (mgr.14205) 152 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:36.603 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:36 smithi120 bash[19947]: cluster 2024-09-10T04:17:35.365107+0000 mgr.smithi120.xfjtcc (mgr.14205) 152 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:36.734 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:36 smithi151 bash[25273]: cluster 2024-09-10T04:17:35.365107+0000 mgr.smithi120.xfjtcc (mgr.14205) 152 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:36.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:36 smithi151 bash[25273]: cluster 2024-09-10T04:17:35.365107+0000 mgr.smithi120.xfjtcc (mgr.14205) 152 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:38.405 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:17:38.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:38 smithi151 bash[25273]: cluster 2024-09-10T04:17:37.365663+0000 mgr.smithi120.xfjtcc (mgr.14205) 153 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:38.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:38 smithi151 bash[25273]: cluster 2024-09-10T04:17:37.365663+0000 mgr.smithi120.xfjtcc (mgr.14205) 153 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:39.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:38 smithi120 bash[19947]: cluster 2024-09-10T04:17:37.365663+0000 mgr.smithi120.xfjtcc (mgr.14205) 153 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:39.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:38 smithi120 bash[19947]: cluster 2024-09-10T04:17:37.365663+0000 mgr.smithi120.xfjtcc (mgr.14205) 153 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:39.883 INFO:teuthology.orchestra.run.smithi120.stdout:[client.0] 2024-09-10T04:17:39.884 INFO:teuthology.orchestra.run.smithi120.stdout: key = AQBjyN9mRqxuNBAAeQZHjBCyuW5HFf7/M4eWOw== 2024-09-10T04:17:40.737 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:40 smithi120 bash[19947]: cluster 2024-09-10T04:17:39.366265+0000 mgr.smithi120.xfjtcc (mgr.14205) 154 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:40.737 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:40 smithi120 bash[19947]: cluster 2024-09-10T04:17:39.366265+0000 mgr.smithi120.xfjtcc (mgr.14205) 154 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:40.738 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:40 smithi120 bash[19947]: audit 2024-09-10T04:17:39.879458+0000 mon.smithi120 (mon.0) 712 : audit [INF] from='client.? 172.21.15.120:0/3552191705' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-10T04:17:40.738 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:40 smithi120 bash[19947]: audit 2024-09-10T04:17:39.879458+0000 mon.smithi120 (mon.0) 712 : audit [INF] from='client.? 172.21.15.120:0/3552191705' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-10T04:17:40.738 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:40 smithi120 bash[19947]: audit 2024-09-10T04:17:39.883669+0000 mon.smithi120 (mon.0) 713 : audit [INF] from='client.? 172.21.15.120:0/3552191705' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-10T04:17:40.738 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:40 smithi120 bash[19947]: audit 2024-09-10T04:17:39.883669+0000 mon.smithi120 (mon.0) 713 : audit [INF] from='client.? 172.21.15.120:0/3552191705' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-10T04:17:40.739 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:17:40.739 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-10T04:17:40.739 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-10T04:17:40.759 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-10T04:17:40.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:40 smithi151 bash[25273]: cluster 2024-09-10T04:17:39.366265+0000 mgr.smithi120.xfjtcc (mgr.14205) 154 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:40.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:40 smithi151 bash[25273]: cluster 2024-09-10T04:17:39.366265+0000 mgr.smithi120.xfjtcc (mgr.14205) 154 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:40.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:40 smithi151 bash[25273]: audit 2024-09-10T04:17:39.879458+0000 mon.smithi120 (mon.0) 712 : audit [INF] from='client.? 172.21.15.120:0/3552191705' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-10T04:17:40.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:40 smithi151 bash[25273]: audit 2024-09-10T04:17:39.879458+0000 mon.smithi120 (mon.0) 712 : audit [INF] from='client.? 172.21.15.120:0/3552191705' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-10T04:17:40.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:40 smithi151 bash[25273]: audit 2024-09-10T04:17:39.883669+0000 mon.smithi120 (mon.0) 713 : audit [INF] from='client.? 172.21.15.120:0/3552191705' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-10T04:17:40.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:40 smithi151 bash[25273]: audit 2024-09-10T04:17:39.883669+0000 mon.smithi120 (mon.0) 713 : audit [INF] from='client.? 172.21.15.120:0/3552191705' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-10T04:17:42.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:42 smithi151 bash[25273]: cluster 2024-09-10T04:17:41.366864+0000 mgr.smithi120.xfjtcc (mgr.14205) 155 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:42.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:42 smithi151 bash[25273]: cluster 2024-09-10T04:17:41.366864+0000 mgr.smithi120.xfjtcc (mgr.14205) 155 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:43.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:42 smithi120 bash[19947]: cluster 2024-09-10T04:17:41.366864+0000 mgr.smithi120.xfjtcc (mgr.14205) 155 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:43.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:42 smithi120 bash[19947]: cluster 2024-09-10T04:17:41.366864+0000 mgr.smithi120.xfjtcc (mgr.14205) 155 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:44.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:44 smithi151 bash[25273]: cluster 2024-09-10T04:17:43.367484+0000 mgr.smithi120.xfjtcc (mgr.14205) 156 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:44.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:44 smithi151 bash[25273]: cluster 2024-09-10T04:17:43.367484+0000 mgr.smithi120.xfjtcc (mgr.14205) 156 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:45.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:44 smithi120 bash[19947]: cluster 2024-09-10T04:17:43.367484+0000 mgr.smithi120.xfjtcc (mgr.14205) 156 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:45.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:44 smithi120 bash[19947]: cluster 2024-09-10T04:17:43.367484+0000 mgr.smithi120.xfjtcc (mgr.14205) 156 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:45.548 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi151/config 2024-09-10T04:17:46.859 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:46 smithi120 bash[19947]: cluster 2024-09-10T04:17:45.368085+0000 mgr.smithi120.xfjtcc (mgr.14205) 157 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:46.859 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:46 smithi120 bash[19947]: cluster 2024-09-10T04:17:45.368085+0000 mgr.smithi120.xfjtcc (mgr.14205) 157 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:46.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:46 smithi151 bash[25273]: cluster 2024-09-10T04:17:45.368085+0000 mgr.smithi120.xfjtcc (mgr.14205) 157 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:46.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:46 smithi151 bash[25273]: cluster 2024-09-10T04:17:45.368085+0000 mgr.smithi120.xfjtcc (mgr.14205) 157 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:47.658 INFO:teuthology.orchestra.run.smithi151.stdout:[client.1] 2024-09-10T04:17:47.658 INFO:teuthology.orchestra.run.smithi151.stdout: key = AQBryN9mHKGyJhAAsX1fsBQh1GZRHRFa88iC7w== 2024-09-10T04:17:48.677 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:48 smithi151 bash[25273]: cluster 2024-09-10T04:17:47.368714+0000 mgr.smithi120.xfjtcc (mgr.14205) 158 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:48.677 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:48 smithi151 bash[25273]: cluster 2024-09-10T04:17:47.368714+0000 mgr.smithi120.xfjtcc (mgr.14205) 158 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:48.677 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:48 smithi151 bash[25273]: audit 2024-09-10T04:17:47.648885+0000 mon.smithi151 (mon.1) 20 : audit [INF] from='client.? 172.21.15.151:0/159934737' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-10T04:17:48.677 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:48 smithi151 bash[25273]: audit 2024-09-10T04:17:47.648885+0000 mon.smithi151 (mon.1) 20 : audit [INF] from='client.? 172.21.15.151:0/159934737' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-10T04:17:48.677 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:48 smithi151 bash[25273]: audit 2024-09-10T04:17:47.648928+0000 mon.smithi120 (mon.0) 714 : 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-10T04:17:48.677 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:48 smithi151 bash[25273]: audit 2024-09-10T04:17:47.648928+0000 mon.smithi120 (mon.0) 714 : 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-10T04:17:48.677 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:48 smithi151 bash[25273]: audit 2024-09-10T04:17:47.652762+0000 mon.smithi120 (mon.0) 715 : 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-10T04:17:48.677 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:48 smithi151 bash[25273]: audit 2024-09-10T04:17:47.652762+0000 mon.smithi120 (mon.0) 715 : 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-10T04:17:48.678 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:17:48.678 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-10T04:17:48.678 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-10T04:17:48.701 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph config log 1 --format=json 2024-09-10T04:17:48.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:48 smithi120 bash[19947]: cluster 2024-09-10T04:17:47.368714+0000 mgr.smithi120.xfjtcc (mgr.14205) 158 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:48.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:48 smithi120 bash[19947]: cluster 2024-09-10T04:17:47.368714+0000 mgr.smithi120.xfjtcc (mgr.14205) 158 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:48.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:48 smithi120 bash[19947]: audit 2024-09-10T04:17:47.648885+0000 mon.smithi151 (mon.1) 20 : audit [INF] from='client.? 172.21.15.151:0/159934737' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-10T04:17:48.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:48 smithi120 bash[19947]: audit 2024-09-10T04:17:47.648885+0000 mon.smithi151 (mon.1) 20 : audit [INF] from='client.? 172.21.15.151:0/159934737' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-10T04:17:48.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:48 smithi120 bash[19947]: audit 2024-09-10T04:17:47.648928+0000 mon.smithi120 (mon.0) 714 : 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-10T04:17:48.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:48 smithi120 bash[19947]: audit 2024-09-10T04:17:47.648928+0000 mon.smithi120 (mon.0) 714 : 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-10T04:17:48.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:48 smithi120 bash[19947]: audit 2024-09-10T04:17:47.652762+0000 mon.smithi120 (mon.0) 715 : 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-10T04:17:48.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:48 smithi120 bash[19947]: audit 2024-09-10T04:17:47.652762+0000 mon.smithi120 (mon.0) 715 : 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-10T04:17:49.913 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:49 smithi151 bash[25273]: audit 2024-09-10T04:17:48.660594+0000 mon.smithi120 (mon.0) 716 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:49.913 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:49 smithi151 bash[25273]: audit 2024-09-10T04:17:48.660594+0000 mon.smithi120 (mon.0) 716 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:50.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:49 smithi120 bash[19947]: audit 2024-09-10T04:17:48.660594+0000 mon.smithi120 (mon.0) 716 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:50.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:49 smithi120 bash[19947]: audit 2024-09-10T04:17:48.660594+0000 mon.smithi120 (mon.0) 716 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:17:50.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:50 smithi151 bash[25273]: cluster 2024-09-10T04:17:49.369268+0000 mgr.smithi120.xfjtcc (mgr.14205) 159 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:50.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:50 smithi151 bash[25273]: cluster 2024-09-10T04:17:49.369268+0000 mgr.smithi120.xfjtcc (mgr.14205) 159 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:50 smithi120 bash[19947]: cluster 2024-09-10T04:17:49.369268+0000 mgr.smithi120.xfjtcc (mgr.14205) 159 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:51.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:50 smithi120 bash[19947]: cluster 2024-09-10T04:17:49.369268+0000 mgr.smithi120.xfjtcc (mgr.14205) 159 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:52.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:52 smithi120 bash[19947]: cluster 2024-09-10T04:17:51.369882+0000 mgr.smithi120.xfjtcc (mgr.14205) 160 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:52.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:52 smithi120 bash[19947]: cluster 2024-09-10T04:17:51.369882+0000 mgr.smithi120.xfjtcc (mgr.14205) 160 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:52 smithi151 bash[25273]: cluster 2024-09-10T04:17:51.369882+0000 mgr.smithi120.xfjtcc (mgr.14205) 160 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:52 smithi151 bash[25273]: cluster 2024-09-10T04:17:51.369882+0000 mgr.smithi120.xfjtcc (mgr.14205) 160 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:53.501 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:17:54.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:54 smithi151 bash[25273]: cluster 2024-09-10T04:17:53.370494+0000 mgr.smithi120.xfjtcc (mgr.14205) 161 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:54.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:54 smithi151 bash[25273]: cluster 2024-09-10T04:17:53.370494+0000 mgr.smithi120.xfjtcc (mgr.14205) 161 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:55.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:54 smithi120 bash[19947]: cluster 2024-09-10T04:17:53.370494+0000 mgr.smithi120.xfjtcc (mgr.14205) 161 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:55.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:54 smithi120 bash[19947]: cluster 2024-09-10T04:17:53.370494+0000 mgr.smithi120.xfjtcc (mgr.14205) 161 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:55.086 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:17:55.944 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:55 smithi120 bash[19947]: audit 2024-09-10T04:17:55.086389+0000 mon.smithi120 (mon.0) 717 : audit [DBG] from='client.? 172.21.15.120:0/88749417' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-10T04:17:55.944 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:55 smithi120 bash[19947]: audit 2024-09-10T04:17:55.086389+0000 mon.smithi120 (mon.0) 717 : audit [DBG] from='client.? 172.21.15.120:0/88749417' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-10T04:17:55.945 INFO:teuthology.orchestra.run.smithi120.stdout:[{"version":21,"timestamp":"2024-09-10T04:17:30.375900+0000","name":"","changes":[{"name":"osd/host:smithi120/osd_memory_target","new_value":"3150307532"}]}] 2024-09-10T04:17:55.945 INFO:tasks.ceph_manager:config epoch is 21 2024-09-10T04:17:55.946 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-10T04:17:55.946 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-10T04:17:55.946 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph mgr dump --format=json 2024-09-10T04:17:55.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:55 smithi151 bash[25273]: audit 2024-09-10T04:17:55.086389+0000 mon.smithi120 (mon.0) 717 : audit [DBG] from='client.? 172.21.15.120:0/88749417' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-10T04:17:55.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:55 smithi151 bash[25273]: audit 2024-09-10T04:17:55.086389+0000 mon.smithi120 (mon.0) 717 : audit [DBG] from='client.? 172.21.15.120:0/88749417' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-10T04:17:56.862 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:56 smithi151 bash[25273]: cluster 2024-09-10T04:17:55.371043+0000 mgr.smithi120.xfjtcc (mgr.14205) 162 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:56.862 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:56 smithi151 bash[25273]: cluster 2024-09-10T04:17:55.371043+0000 mgr.smithi120.xfjtcc (mgr.14205) 162 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:56.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:56 smithi120 bash[19947]: cluster 2024-09-10T04:17:55.371043+0000 mgr.smithi120.xfjtcc (mgr.14205) 162 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:56.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:56 smithi120 bash[19947]: cluster 2024-09-10T04:17:55.371043+0000 mgr.smithi120.xfjtcc (mgr.14205) 162 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:58.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:58 smithi151 bash[25273]: cluster 2024-09-10T04:17:57.371678+0000 mgr.smithi120.xfjtcc (mgr.14205) 163 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:58.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:17:58 smithi151 bash[25273]: cluster 2024-09-10T04:17:57.371678+0000 mgr.smithi120.xfjtcc (mgr.14205) 163 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:59.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:58 smithi120 bash[19947]: cluster 2024-09-10T04:17:57.371678+0000 mgr.smithi120.xfjtcc (mgr.14205) 163 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:17:59.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:17:58 smithi120 bash[19947]: cluster 2024-09-10T04:17:57.371678+0000 mgr.smithi120.xfjtcc (mgr.14205) 163 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:00.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:00 smithi151 bash[25273]: cluster 2024-09-10T04:17:59.372303+0000 mgr.smithi120.xfjtcc (mgr.14205) 164 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:00.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:00 smithi151 bash[25273]: cluster 2024-09-10T04:17:59.372303+0000 mgr.smithi120.xfjtcc (mgr.14205) 164 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:00.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:00 smithi151 bash[25273]: audit 2024-09-10T04:18:00.318219+0000 mon.smithi120 (mon.0) 718 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:00.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:00 smithi151 bash[25273]: audit 2024-09-10T04:18:00.318219+0000 mon.smithi120 (mon.0) 718 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:00.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:00 smithi151 bash[25273]: audit 2024-09-10T04:18:00.327018+0000 mon.smithi120 (mon.0) 719 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:00.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:00 smithi151 bash[25273]: audit 2024-09-10T04:18:00.327018+0000 mon.smithi120 (mon.0) 719 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:01.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:00 smithi120 bash[19947]: cluster 2024-09-10T04:17:59.372303+0000 mgr.smithi120.xfjtcc (mgr.14205) 164 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:01.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:00 smithi120 bash[19947]: cluster 2024-09-10T04:17:59.372303+0000 mgr.smithi120.xfjtcc (mgr.14205) 164 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:01.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:00 smithi120 bash[19947]: audit 2024-09-10T04:18:00.318219+0000 mon.smithi120 (mon.0) 718 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:01.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:00 smithi120 bash[19947]: audit 2024-09-10T04:18:00.318219+0000 mon.smithi120 (mon.0) 718 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:01.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:00 smithi120 bash[19947]: audit 2024-09-10T04:18:00.327018+0000 mon.smithi120 (mon.0) 719 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:01.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:00 smithi120 bash[19947]: audit 2024-09-10T04:18:00.327018+0000 mon.smithi120 (mon.0) 719 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:01.762 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:02.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:01 smithi120 bash[19947]: audit 2024-09-10T04:18:00.736605+0000 mon.smithi120 (mon.0) 720 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:02.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:01 smithi120 bash[19947]: audit 2024-09-10T04:18:00.736605+0000 mon.smithi120 (mon.0) 720 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:02.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:01 smithi120 bash[19947]: audit 2024-09-10T04:18:00.746648+0000 mon.smithi120 (mon.0) 721 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:02.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:01 smithi120 bash[19947]: audit 2024-09-10T04:18:00.746648+0000 mon.smithi120 (mon.0) 721 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:02.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:01 smithi151 bash[25273]: audit 2024-09-10T04:18:00.736605+0000 mon.smithi120 (mon.0) 720 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:02.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:01 smithi151 bash[25273]: audit 2024-09-10T04:18:00.736605+0000 mon.smithi120 (mon.0) 720 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:02.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:01 smithi151 bash[25273]: audit 2024-09-10T04:18:00.746648+0000 mon.smithi120 (mon.0) 721 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:02.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:01 smithi151 bash[25273]: audit 2024-09-10T04:18:00.746648+0000 mon.smithi120 (mon.0) 721 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:18:03.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:02 smithi120 bash[19947]: cluster 2024-09-10T04:18:01.372876+0000 mgr.smithi120.xfjtcc (mgr.14205) 165 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:03.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:02 smithi120 bash[19947]: cluster 2024-09-10T04:18:01.372876+0000 mgr.smithi120.xfjtcc (mgr.14205) 165 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:03.139 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:18:03.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:02 smithi151 bash[25273]: cluster 2024-09-10T04:18:01.372876+0000 mgr.smithi120.xfjtcc (mgr.14205) 165 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:03.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:02 smithi151 bash[25273]: cluster 2024-09-10T04:18:01.372876+0000 mgr.smithi120.xfjtcc (mgr.14205) 165 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:03.836 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":20,"flags":0,"active_gid":14205,"active_name":"smithi120.xfjtcc","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6800","nonce":1004210857},{"type":"v1","addr":"172.21.15.120:6801","nonce":1004210857}]},"active_addr":"172.21.15.120:6801/1004210857","active_change":"2024-09-10T04:14:33.314133+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":14224,"name":"smithi151.abmuzj","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:sclorg-nginx-126","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_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter 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":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","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":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"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":"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:sclorg-nginx-126","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_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter 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":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","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":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"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":"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.120:8443/","prometheus":"http://172.21.15.120: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.120:0","nonce":442949908}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.120:0","nonce":2063651112}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.120:0","nonce":1729083742}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.120:0","nonce":2525486068}]}]} 2024-09-10T04:18:03.843 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-10T04:18:03.843 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-10T04:18:03.843 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-10T04:18:04.031 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:03 smithi151 bash[25273]: audit 2024-09-10T04:18:03.129854+0000 mon.smithi120 (mon.0) 722 : audit [DBG] from='client.? 172.21.15.120:0/2599389039' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-10T04:18:04.032 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:03 smithi151 bash[25273]: audit 2024-09-10T04:18:03.129854+0000 mon.smithi120 (mon.0) 722 : audit [DBG] from='client.? 172.21.15.120:0/2599389039' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-10T04:18:04.032 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:03 smithi151 bash[25273]: audit 2024-09-10T04:18:03.661064+0000 mon.smithi120 (mon.0) 723 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:04.032 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:03 smithi151 bash[25273]: audit 2024-09-10T04:18:03.661064+0000 mon.smithi120 (mon.0) 723 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:03 smithi120 bash[19947]: audit 2024-09-10T04:18:03.129854+0000 mon.smithi120 (mon.0) 722 : audit [DBG] from='client.? 172.21.15.120:0/2599389039' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-10T04:18:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:03 smithi120 bash[19947]: audit 2024-09-10T04:18:03.129854+0000 mon.smithi120 (mon.0) 722 : audit [DBG] from='client.? 172.21.15.120:0/2599389039' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-10T04:18:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:03 smithi120 bash[19947]: audit 2024-09-10T04:18:03.661064+0000 mon.smithi120 (mon.0) 723 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:03 smithi120 bash[19947]: audit 2024-09-10T04:18:03.661064+0000 mon.smithi120 (mon.0) 723 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:05.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:04 smithi120 bash[19947]: cluster 2024-09-10T04:18:03.373495+0000 mgr.smithi120.xfjtcc (mgr.14205) 166 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:05.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:04 smithi120 bash[19947]: cluster 2024-09-10T04:18:03.373495+0000 mgr.smithi120.xfjtcc (mgr.14205) 166 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:05.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:04 smithi151 bash[25273]: cluster 2024-09-10T04:18:03.373495+0000 mgr.smithi120.xfjtcc (mgr.14205) 166 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:05.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:04 smithi151 bash[25273]: cluster 2024-09-10T04:18:03.373495+0000 mgr.smithi120.xfjtcc (mgr.14205) 166 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:06 smithi120 bash[19947]: cluster 2024-09-10T04:18:05.374163+0000 mgr.smithi120.xfjtcc (mgr.14205) 167 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:06 smithi120 bash[19947]: cluster 2024-09-10T04:18:05.374163+0000 mgr.smithi120.xfjtcc (mgr.14205) 167 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:07.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:06 smithi151 bash[25273]: cluster 2024-09-10T04:18:05.374163+0000 mgr.smithi120.xfjtcc (mgr.14205) 167 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:07.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:06 smithi151 bash[25273]: cluster 2024-09-10T04:18:05.374163+0000 mgr.smithi120.xfjtcc (mgr.14205) 167 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:08.665 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:08 smithi120 bash[19947]: cluster 2024-09-10T04:18:07.374882+0000 mgr.smithi120.xfjtcc (mgr.14205) 168 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:08 smithi120 bash[19947]: cluster 2024-09-10T04:18:07.374882+0000 mgr.smithi120.xfjtcc (mgr.14205) 168 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:09.032 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:08 smithi151 bash[25273]: cluster 2024-09-10T04:18:07.374882+0000 mgr.smithi120.xfjtcc (mgr.14205) 168 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:09.032 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:08 smithi151 bash[25273]: cluster 2024-09-10T04:18:07.374882+0000 mgr.smithi120.xfjtcc (mgr.14205) 168 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:10.125 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:18:10.128 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":40,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","created":"2024-09-10T04:11:51.218680+0000","modified":"2024-09-10T04:17:16.758911+0000","last_up_change":"2024-09-10T04:17:12.742999+0000","last_in_change":"2024-09-10T04:16:17.023597+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"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-10T04:16:57.730799+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":"27","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6800","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6801","nonce":3637569127}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6802","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6803","nonce":3637569127}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6806","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6807","nonce":3637569127}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6804","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6805","nonce":3637569127}]},"public_addr":"172.21.15.151:6801/3637569127","cluster_addr":"172.21.15.151:6803/3637569127","heartbeat_back_addr":"172.21.15.151:6807/3637569127","heartbeat_front_addr":"172.21.15.151:6805/3637569127","state":["exists","up"]},{"osd":1,"uuid":"ca435627-a127-409e-9d51-9bd1756bb312","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6803","nonce":2998593940}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6805","nonce":2998593940}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6809","nonce":2998593940}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6807","nonce":2998593940}]},"public_addr":"172.21.15.120:6803/2998593940","cluster_addr":"172.21.15.120:6805/2998593940","heartbeat_back_addr":"172.21.15.120:6809/2998593940","heartbeat_front_addr":"172.21.15.120:6807/2998593940","state":["exists","up"]},{"osd":2,"uuid":"2942c27c-50fe-461f-9219-6bfa9e807845","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6808","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6809","nonce":2227286150}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6810","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6811","nonce":2227286150}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6814","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6815","nonce":2227286150}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6812","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6813","nonce":2227286150}]},"public_addr":"172.21.15.151:6809/2227286150","cluster_addr":"172.21.15.151:6811/2227286150","heartbeat_back_addr":"172.21.15.151:6815/2227286150","heartbeat_front_addr":"172.21.15.151:6813/2227286150","state":["exists","up"]},{"osd":3,"uuid":"0166d245-c049-4007-aa85-f30248199406","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6811","nonce":3810642825}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6813","nonce":3810642825}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6817","nonce":3810642825}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6815","nonce":3810642825}]},"public_addr":"172.21.15.120:6811/3810642825","cluster_addr":"172.21.15.120:6813/3810642825","heartbeat_back_addr":"172.21.15.120:6817/3810642825","heartbeat_front_addr":"172.21.15.120:6815/3810642825","state":["exists","up"]},{"osd":4,"uuid":"cafbe21f-5369-4b64-9b70-4b2364c1f243","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6816","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6817","nonce":3349940384}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6818","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6819","nonce":3349940384}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6822","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6823","nonce":3349940384}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6820","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6821","nonce":3349940384}]},"public_addr":"172.21.15.151:6817/3349940384","cluster_addr":"172.21.15.151:6819/3349940384","heartbeat_back_addr":"172.21.15.151:6823/3349940384","heartbeat_front_addr":"172.21.15.151:6821/3349940384","state":["exists","up"]},{"osd":5,"uuid":"28533df4-185f-4636-9608-53d982463f52","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6819","nonce":834528602}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6821","nonce":834528602}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6825","nonce":834528602}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6823","nonce":834528602}]},"public_addr":"172.21.15.120:6819/834528602","cluster_addr":"172.21.15.120:6821/834528602","heartbeat_back_addr":"172.21.15.120:6825/834528602","heartbeat_front_addr":"172.21.15.120:6823/834528602","state":["exists","up"]},{"osd":6,"uuid":"81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6824","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6825","nonce":882674399}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6826","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6827","nonce":882674399}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6830","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6831","nonce":882674399}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6828","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6829","nonce":882674399}]},"public_addr":"172.21.15.151:6825/882674399","cluster_addr":"172.21.15.151:6827/882674399","heartbeat_back_addr":"172.21.15.151:6831/882674399","heartbeat_front_addr":"172.21.15.151:6829/882674399","state":["exists","up"]},{"osd":7,"uuid":"93aa6c24-d48d-4878-93d8-2d304cecf27e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6827","nonce":889236441}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6829","nonce":889236441}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6832","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6833","nonce":889236441}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6831","nonce":889236441}]},"public_addr":"172.21.15.120:6827/889236441","cluster_addr":"172.21.15.120:6829/889236441","heartbeat_back_addr":"172.21.15.120:6833/889236441","heartbeat_front_addr":"172.21.15.120:6831/889236441","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-10T04:16:48.712732+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-10T04:16:53.137019+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-10T04:16:54.243319+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-10T04:16:58.926812+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-10T04:16:58.735907+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-10T04:17:07.062981+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-10T04:17:03.066102+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-10T04:17:11.685317+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.120:0/3699651774":"2024-09-11T04:14:33.313908+0000","172.21.15.120:6801/1818997177":"2024-09-11T04:14:33.313908+0000","172.21.15.120:6801/23864662":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/1165350081":"2024-09-11T04:13:07.714671+0000","172.21.15.120:6801/2793141550":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/2793141550":"2024-09-11T04:12:18.586985+0000","172.21.15.120:0/832175735":"2024-09-11T04:14:33.313908+0000","172.21.15.120:0/605007674":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/23864662":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/3666904403":"2024-09-11T04:12:18.586985+0000","172.21.15.120:0/924069797":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/1818997177":"2024-09-11T04:14:33.313908+0000","172.21.15.120:0/1034916674":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/2153673182":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/2932186428":"2024-09-11T04:14:33.313908+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-10T04:18:10.752 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-10T04:18:10.752 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd dump --format=json 2024-09-10T04:18:11.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:10 smithi120 bash[19947]: cluster 2024-09-10T04:18:09.375604+0000 mgr.smithi120.xfjtcc (mgr.14205) 169 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:10 smithi120 bash[19947]: cluster 2024-09-10T04:18:09.375604+0000 mgr.smithi120.xfjtcc (mgr.14205) 169 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:10 smithi120 bash[19947]: audit 2024-09-10T04:18:10.123452+0000 mon.smithi120 (mon.0) 724 : audit [DBG] from='client.? 172.21.15.120:0/4131372221' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:18:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:10 smithi120 bash[19947]: audit 2024-09-10T04:18:10.123452+0000 mon.smithi120 (mon.0) 724 : audit [DBG] from='client.? 172.21.15.120:0/4131372221' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:18:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:10 smithi151 bash[25273]: cluster 2024-09-10T04:18:09.375604+0000 mgr.smithi120.xfjtcc (mgr.14205) 169 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:10 smithi151 bash[25273]: cluster 2024-09-10T04:18:09.375604+0000 mgr.smithi120.xfjtcc (mgr.14205) 169 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:10 smithi151 bash[25273]: audit 2024-09-10T04:18:10.123452+0000 mon.smithi120 (mon.0) 724 : audit [DBG] from='client.? 172.21.15.120:0/4131372221' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:18:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:10 smithi151 bash[25273]: audit 2024-09-10T04:18:10.123452+0000 mon.smithi120 (mon.0) 724 : audit [DBG] from='client.? 172.21.15.120:0/4131372221' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:18:13.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:12 smithi120 bash[19947]: cluster 2024-09-10T04:18:11.376263+0000 mgr.smithi120.xfjtcc (mgr.14205) 170 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:13.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:12 smithi120 bash[19947]: cluster 2024-09-10T04:18:11.376263+0000 mgr.smithi120.xfjtcc (mgr.14205) 170 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:13.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:12 smithi151 bash[25273]: cluster 2024-09-10T04:18:11.376263+0000 mgr.smithi120.xfjtcc (mgr.14205) 170 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:12 smithi151 bash[25273]: cluster 2024-09-10T04:18:11.376263+0000 mgr.smithi120.xfjtcc (mgr.14205) 170 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:15.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:14 smithi120 bash[19947]: cluster 2024-09-10T04:18:13.376896+0000 mgr.smithi120.xfjtcc (mgr.14205) 171 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:15.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:14 smithi120 bash[19947]: cluster 2024-09-10T04:18:13.376896+0000 mgr.smithi120.xfjtcc (mgr.14205) 171 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:14 smithi151 bash[25273]: cluster 2024-09-10T04:18:13.376896+0000 mgr.smithi120.xfjtcc (mgr.14205) 171 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:14 smithi151 bash[25273]: cluster 2024-09-10T04:18:13.376896+0000 mgr.smithi120.xfjtcc (mgr.14205) 171 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:15.569 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:16.939 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:18:16.940 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":40,"fsid":"97c7e8e6-6f2a-11ef-bcea-c7b262605968","created":"2024-09-10T04:11:51.218680+0000","modified":"2024-09-10T04:17:16.758911+0000","last_up_change":"2024-09-10T04:17:12.742999+0000","last_in_change":"2024-09-10T04:16:17.023597+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":15,"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-10T04:16:57.730799+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":"27","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"8b6cd280-d4fa-4a34-9866-1a26b1d4b2e0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6800","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6801","nonce":3637569127}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6802","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6803","nonce":3637569127}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6806","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6807","nonce":3637569127}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6804","nonce":3637569127},{"type":"v1","addr":"172.21.15.151:6805","nonce":3637569127}]},"public_addr":"172.21.15.151:6801/3637569127","cluster_addr":"172.21.15.151:6803/3637569127","heartbeat_back_addr":"172.21.15.151:6807/3637569127","heartbeat_front_addr":"172.21.15.151:6805/3637569127","state":["exists","up"]},{"osd":1,"uuid":"ca435627-a127-409e-9d51-9bd1756bb312","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":19,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6803","nonce":2998593940}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6805","nonce":2998593940}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6809","nonce":2998593940}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2998593940},{"type":"v1","addr":"172.21.15.120:6807","nonce":2998593940}]},"public_addr":"172.21.15.120:6803/2998593940","cluster_addr":"172.21.15.120:6805/2998593940","heartbeat_back_addr":"172.21.15.120:6809/2998593940","heartbeat_front_addr":"172.21.15.120:6807/2998593940","state":["exists","up"]},{"osd":2,"uuid":"2942c27c-50fe-461f-9219-6bfa9e807845","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6808","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6809","nonce":2227286150}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6810","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6811","nonce":2227286150}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6814","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6815","nonce":2227286150}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6812","nonce":2227286150},{"type":"v1","addr":"172.21.15.151:6813","nonce":2227286150}]},"public_addr":"172.21.15.151:6809/2227286150","cluster_addr":"172.21.15.151:6811/2227286150","heartbeat_back_addr":"172.21.15.151:6815/2227286150","heartbeat_front_addr":"172.21.15.151:6813/2227286150","state":["exists","up"]},{"osd":3,"uuid":"0166d245-c049-4007-aa85-f30248199406","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6811","nonce":3810642825}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6813","nonce":3810642825}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6817","nonce":3810642825}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":3810642825},{"type":"v1","addr":"172.21.15.120:6815","nonce":3810642825}]},"public_addr":"172.21.15.120:6811/3810642825","cluster_addr":"172.21.15.120:6813/3810642825","heartbeat_back_addr":"172.21.15.120:6817/3810642825","heartbeat_front_addr":"172.21.15.120:6815/3810642825","state":["exists","up"]},{"osd":4,"uuid":"cafbe21f-5369-4b64-9b70-4b2364c1f243","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6816","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6817","nonce":3349940384}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6818","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6819","nonce":3349940384}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6822","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6823","nonce":3349940384}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6820","nonce":3349940384},{"type":"v1","addr":"172.21.15.151:6821","nonce":3349940384}]},"public_addr":"172.21.15.151:6817/3349940384","cluster_addr":"172.21.15.151:6819/3349940384","heartbeat_back_addr":"172.21.15.151:6823/3349940384","heartbeat_front_addr":"172.21.15.151:6821/3349940384","state":["exists","up"]},{"osd":5,"uuid":"28533df4-185f-4636-9608-53d982463f52","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6819","nonce":834528602}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6821","nonce":834528602}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6825","nonce":834528602}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":834528602},{"type":"v1","addr":"172.21.15.120:6823","nonce":834528602}]},"public_addr":"172.21.15.120:6819/834528602","cluster_addr":"172.21.15.120:6821/834528602","heartbeat_back_addr":"172.21.15.120:6825/834528602","heartbeat_front_addr":"172.21.15.120:6823/834528602","state":["exists","up"]},{"osd":6,"uuid":"81bcbdc9-a7a8-4a6a-8a20-fe2f57c066a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6824","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6825","nonce":882674399}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6826","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6827","nonce":882674399}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6830","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6831","nonce":882674399}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6828","nonce":882674399},{"type":"v1","addr":"172.21.15.151:6829","nonce":882674399}]},"public_addr":"172.21.15.151:6825/882674399","cluster_addr":"172.21.15.151:6827/882674399","heartbeat_back_addr":"172.21.15.151:6831/882674399","heartbeat_front_addr":"172.21.15.151:6829/882674399","state":["exists","up"]},{"osd":7,"uuid":"93aa6c24-d48d-4878-93d8-2d304cecf27e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6827","nonce":889236441}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6829","nonce":889236441}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6832","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6833","nonce":889236441}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":889236441},{"type":"v1","addr":"172.21.15.120:6831","nonce":889236441}]},"public_addr":"172.21.15.120:6827/889236441","cluster_addr":"172.21.15.120:6829/889236441","heartbeat_back_addr":"172.21.15.120:6833/889236441","heartbeat_front_addr":"172.21.15.120:6831/889236441","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-10T04:16:48.712732+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-10T04:16:53.137019+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-10T04:16:54.243319+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-10T04:16:58.926812+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-10T04:16:58.735907+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-10T04:17:07.062981+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-10T04:17:03.066102+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-10T04:17:11.685317+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.120:0/3699651774":"2024-09-11T04:14:33.313908+0000","172.21.15.120:6801/1818997177":"2024-09-11T04:14:33.313908+0000","172.21.15.120:6801/23864662":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/1165350081":"2024-09-11T04:13:07.714671+0000","172.21.15.120:6801/2793141550":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/2793141550":"2024-09-11T04:12:18.586985+0000","172.21.15.120:0/832175735":"2024-09-11T04:14:33.313908+0000","172.21.15.120:0/605007674":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/23864662":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/3666904403":"2024-09-11T04:12:18.586985+0000","172.21.15.120:0/924069797":"2024-09-11T04:12:18.586985+0000","172.21.15.120:6800/1818997177":"2024-09-11T04:14:33.313908+0000","172.21.15.120:0/1034916674":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/2153673182":"2024-09-11T04:13:07.714671+0000","172.21.15.120:0/2932186428":"2024-09-11T04:14:33.313908+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-10T04:18:16.952 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:16 smithi120 bash[19947]: cluster 2024-09-10T04:18:15.377457+0000 mgr.smithi120.xfjtcc (mgr.14205) 172 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:16.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:16 smithi120 bash[19947]: cluster 2024-09-10T04:18:15.377457+0000 mgr.smithi120.xfjtcc (mgr.14205) 172 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:17.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:16 smithi151 bash[25273]: cluster 2024-09-10T04:18:15.377457+0000 mgr.smithi120.xfjtcc (mgr.14205) 172 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:17.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:16 smithi151 bash[25273]: cluster 2024-09-10T04:18:15.377457+0000 mgr.smithi120.xfjtcc (mgr.14205) 172 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:17.567 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-10T04:18:17.567 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-10T04:18:17.568 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-10T04:18:17.568 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-10T04:18:17.569 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-10T04:18:17.569 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-10T04:18:17.569 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph tell osd.6 flush_pg_stats 2024-09-10T04:18:17.570 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph tell osd.7 flush_pg_stats 2024-09-10T04:18:18.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:17 smithi120 bash[19947]: audit 2024-09-10T04:18:16.938765+0000 mon.smithi120 (mon.0) 725 : audit [DBG] from='client.? 172.21.15.120:0/638358788' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:18:18.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:17 smithi120 bash[19947]: audit 2024-09-10T04:18:16.938765+0000 mon.smithi120 (mon.0) 725 : audit [DBG] from='client.? 172.21.15.120:0/638358788' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:18:18.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:17 smithi151 bash[25273]: audit 2024-09-10T04:18:16.938765+0000 mon.smithi120 (mon.0) 725 : audit [DBG] from='client.? 172.21.15.120:0/638358788' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:18:18.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:17 smithi151 bash[25273]: audit 2024-09-10T04:18:16.938765+0000 mon.smithi120 (mon.0) 725 : audit [DBG] from='client.? 172.21.15.120:0/638358788' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-10T04:18:19.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:18 smithi151 bash[25273]: cluster 2024-09-10T04:18:17.378048+0000 mgr.smithi120.xfjtcc (mgr.14205) 173 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:19.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:18 smithi151 bash[25273]: cluster 2024-09-10T04:18:17.378048+0000 mgr.smithi120.xfjtcc (mgr.14205) 173 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:19.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:18 smithi151 bash[25273]: audit 2024-09-10T04:18:18.661552+0000 mon.smithi120 (mon.0) 726 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:19.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:18 smithi151 bash[25273]: audit 2024-09-10T04:18:18.661552+0000 mon.smithi120 (mon.0) 726 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:18 smithi120 bash[19947]: cluster 2024-09-10T04:18:17.378048+0000 mgr.smithi120.xfjtcc (mgr.14205) 173 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:18 smithi120 bash[19947]: cluster 2024-09-10T04:18:17.378048+0000 mgr.smithi120.xfjtcc (mgr.14205) 173 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:18 smithi120 bash[19947]: audit 2024-09-10T04:18:18.661552+0000 mon.smithi120 (mon.0) 726 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:19.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:18 smithi120 bash[19947]: audit 2024-09-10T04:18:18.661552+0000 mon.smithi120 (mon.0) 726 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:21.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:20 smithi151 bash[25273]: cluster 2024-09-10T04:18:19.378602+0000 mgr.smithi120.xfjtcc (mgr.14205) 174 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:21.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:20 smithi151 bash[25273]: cluster 2024-09-10T04:18:19.378602+0000 mgr.smithi120.xfjtcc (mgr.14205) 174 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:21.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:20 smithi120 bash[19947]: cluster 2024-09-10T04:18:19.378602+0000 mgr.smithi120.xfjtcc (mgr.14205) 174 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:21.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:20 smithi120 bash[19947]: cluster 2024-09-10T04:18:19.378602+0000 mgr.smithi120.xfjtcc (mgr.14205) 174 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:22.509 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:22.509 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:22.510 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:22.511 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:22.512 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:22.512 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:22.512 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:22.514 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:23.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:22 smithi120 bash[19947]: cluster 2024-09-10T04:18:21.379198+0000 mgr.smithi120.xfjtcc (mgr.14205) 175 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:23.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:22 smithi120 bash[19947]: cluster 2024-09-10T04:18:21.379198+0000 mgr.smithi120.xfjtcc (mgr.14205) 175 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:23.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:22 smithi151 bash[25273]: cluster 2024-09-10T04:18:21.379198+0000 mgr.smithi120.xfjtcc (mgr.14205) 175 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:23.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:22 smithi151 bash[25273]: cluster 2024-09-10T04:18:21.379198+0000 mgr.smithi120.xfjtcc (mgr.14205) 175 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:25.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:24 smithi120 bash[19947]: cluster 2024-09-10T04:18:23.379759+0000 mgr.smithi120.xfjtcc (mgr.14205) 176 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:25.000 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:24 smithi120 bash[19947]: cluster 2024-09-10T04:18:23.379759+0000 mgr.smithi120.xfjtcc (mgr.14205) 176 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:25.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:24 smithi151 bash[25273]: cluster 2024-09-10T04:18:23.379759+0000 mgr.smithi120.xfjtcc (mgr.14205) 176 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:25.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:24 smithi151 bash[25273]: cluster 2024-09-10T04:18:23.379759+0000 mgr.smithi120.xfjtcc (mgr.14205) 176 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:26.412 INFO:teuthology.orchestra.run.smithi120.stdout:154618822673 2024-09-10T04:18:26.413 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.7 2024-09-10T04:18:27.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:26 smithi151 bash[25273]: cluster 2024-09-10T04:18:25.380145+0000 mgr.smithi120.xfjtcc (mgr.14205) 177 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:27.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:26 smithi151 bash[25273]: cluster 2024-09-10T04:18:25.380145+0000 mgr.smithi120.xfjtcc (mgr.14205) 177 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:27.278 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:26 smithi120 bash[19947]: cluster 2024-09-10T04:18:25.380145+0000 mgr.smithi120.xfjtcc (mgr.14205) 177 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:27.278 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:26 smithi120 bash[19947]: cluster 2024-09-10T04:18:25.380145+0000 mgr.smithi120.xfjtcc (mgr.14205) 177 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:28.140 INFO:teuthology.orchestra.run.smithi120.stdout:81604378645 2024-09-10T04:18:28.141 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-10T04:18:28.163 INFO:teuthology.orchestra.run.smithi120.stdout:85899345941 2024-09-10T04:18:28.164 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-10T04:18:29.041 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:28 smithi120 bash[19947]: cluster 2024-09-10T04:18:27.380648+0000 mgr.smithi120.xfjtcc (mgr.14205) 178 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:29.042 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:28 smithi120 bash[19947]: cluster 2024-09-10T04:18:27.380648+0000 mgr.smithi120.xfjtcc (mgr.14205) 178 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:29.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:28 smithi151 bash[25273]: cluster 2024-09-10T04:18:27.380648+0000 mgr.smithi120.xfjtcc (mgr.14205) 178 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:29.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:28 smithi151 bash[25273]: cluster 2024-09-10T04:18:27.380648+0000 mgr.smithi120.xfjtcc (mgr.14205) 178 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:29.936 INFO:teuthology.orchestra.run.smithi120.stdout:68719476759 2024-09-10T04:18:29.936 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-10T04:18:30.173 INFO:teuthology.orchestra.run.smithi120.stdout:103079215124 2024-09-10T04:18:30.174 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-10T04:18:30.715 INFO:teuthology.orchestra.run.smithi120.stdout:124554051604 2024-09-10T04:18:30.716 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.6 2024-09-10T04:18:30.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:30 smithi120 bash[19947]: cluster 2024-09-10T04:18:29.381184+0000 mgr.smithi120.xfjtcc (mgr.14205) 179 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:30.999 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:30 smithi120 bash[19947]: cluster 2024-09-10T04:18:29.381184+0000 mgr.smithi120.xfjtcc (mgr.14205) 179 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:31.000 INFO:teuthology.orchestra.run.smithi120.stdout:103079215124 2024-09-10T04:18:31.000 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-10T04:18:31.029 INFO:teuthology.orchestra.run.smithi120.stdout:137438953491 2024-09-10T04:18:31.029 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-10T04:18:31.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:30 smithi151 bash[25273]: cluster 2024-09-10T04:18:29.381184+0000 mgr.smithi120.xfjtcc (mgr.14205) 179 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:31.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:30 smithi151 bash[25273]: cluster 2024-09-10T04:18:29.381184+0000 mgr.smithi120.xfjtcc (mgr.14205) 179 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:33.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:32 smithi151 bash[25273]: cluster 2024-09-10T04:18:31.381740+0000 mgr.smithi120.xfjtcc (mgr.14205) 180 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:33.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:32 smithi151 bash[25273]: cluster 2024-09-10T04:18:31.381740+0000 mgr.smithi120.xfjtcc (mgr.14205) 180 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:33.272 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:33.274 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:33.275 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:33.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:32 smithi120 bash[19947]: cluster 2024-09-10T04:18:31.381740+0000 mgr.smithi120.xfjtcc (mgr.14205) 180 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:33.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:32 smithi120 bash[19947]: cluster 2024-09-10T04:18:31.381740+0000 mgr.smithi120.xfjtcc (mgr.14205) 180 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:34.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:33 smithi120 bash[19947]: audit 2024-09-10T04:18:33.661819+0000 mon.smithi120 (mon.0) 727 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:34.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:33 smithi120 bash[19947]: audit 2024-09-10T04:18:33.661819+0000 mon.smithi120 (mon.0) 727 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:34.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:33 smithi151 bash[25273]: audit 2024-09-10T04:18:33.661819+0000 mon.smithi120 (mon.0) 727 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:34.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:33 smithi151 bash[25273]: audit 2024-09-10T04:18:33.661819+0000 mon.smithi120 (mon.0) 727 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:34.294 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:34.294 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:35.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:34 smithi151 bash[25273]: cluster 2024-09-10T04:18:33.382094+0000 mgr.smithi120.xfjtcc (mgr.14205) 181 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:35.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:34 smithi151 bash[25273]: cluster 2024-09-10T04:18:33.382094+0000 mgr.smithi120.xfjtcc (mgr.14205) 181 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:35.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:34 smithi120 bash[19947]: cluster 2024-09-10T04:18:33.382094+0000 mgr.smithi120.xfjtcc (mgr.14205) 181 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:35.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:34 smithi120 bash[19947]: cluster 2024-09-10T04:18:33.382094+0000 mgr.smithi120.xfjtcc (mgr.14205) 181 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:35.316 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:35.317 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:35.317 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:36.641 INFO:teuthology.orchestra.run.smithi120.stdout:85899345943 2024-09-10T04:18:37.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:36 smithi120 bash[19947]: cluster 2024-09-10T04:18:35.382518+0000 mgr.smithi120.xfjtcc (mgr.14205) 182 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:37.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:36 smithi120 bash[19947]: cluster 2024-09-10T04:18:35.382518+0000 mgr.smithi120.xfjtcc (mgr.14205) 182 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:37.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:36 smithi120 bash[19947]: audit 2024-09-10T04:18:36.641238+0000 mon.smithi120 (mon.0) 728 : audit [DBG] from='client.? 172.21.15.120:0/559454034' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-10T04:18:37.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:36 smithi120 bash[19947]: audit 2024-09-10T04:18:36.641238+0000 mon.smithi120 (mon.0) 728 : audit [DBG] from='client.? 172.21.15.120:0/559454034' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-10T04:18:37.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:36 smithi151 bash[25273]: cluster 2024-09-10T04:18:35.382518+0000 mgr.smithi120.xfjtcc (mgr.14205) 182 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:37.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:36 smithi151 bash[25273]: cluster 2024-09-10T04:18:35.382518+0000 mgr.smithi120.xfjtcc (mgr.14205) 182 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:37.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:36 smithi151 bash[25273]: audit 2024-09-10T04:18:36.641238+0000 mon.smithi120 (mon.0) 728 : audit [DBG] from='client.? 172.21.15.120:0/559454034' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-10T04:18:37.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:36 smithi151 bash[25273]: audit 2024-09-10T04:18:36.641238+0000 mon.smithi120 (mon.0) 728 : audit [DBG] from='client.? 172.21.15.120:0/559454034' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-10T04:18:37.392 INFO:teuthology.orchestra.run.smithi120.stdout:81604378647 2024-09-10T04:18:37.685 INFO:teuthology.orchestra.run.smithi120.stdout:68719476760 2024-09-10T04:18:37.982 INFO:teuthology.orchestra.run.smithi120.stdout:154618822675 2024-09-10T04:18:37.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:37 smithi120 bash[19947]: audit 2024-09-10T04:18:37.392722+0000 mon.smithi120 (mon.0) 729 : audit [DBG] from='client.? 172.21.15.120:0/716355918' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-10T04:18:37.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:37 smithi120 bash[19947]: audit 2024-09-10T04:18:37.392722+0000 mon.smithi120 (mon.0) 729 : audit [DBG] from='client.? 172.21.15.120:0/716355918' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-10T04:18:37.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:37 smithi120 bash[19947]: audit 2024-09-10T04:18:37.685782+0000 mon.smithi120 (mon.0) 730 : audit [DBG] from='client.? 172.21.15.120:0/2233289955' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-10T04:18:37.994 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:37 smithi120 bash[19947]: audit 2024-09-10T04:18:37.685782+0000 mon.smithi120 (mon.0) 730 : audit [DBG] from='client.? 172.21.15.120:0/2233289955' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-10T04:18:38.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:37 smithi151 bash[25273]: audit 2024-09-10T04:18:37.392722+0000 mon.smithi120 (mon.0) 729 : audit [DBG] from='client.? 172.21.15.120:0/716355918' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-10T04:18:38.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:37 smithi151 bash[25273]: audit 2024-09-10T04:18:37.392722+0000 mon.smithi120 (mon.0) 729 : audit [DBG] from='client.? 172.21.15.120:0/716355918' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-10T04:18:38.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:37 smithi151 bash[25273]: audit 2024-09-10T04:18:37.685782+0000 mon.smithi120 (mon.0) 730 : audit [DBG] from='client.? 172.21.15.120:0/2233289955' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-10T04:18:38.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:37 smithi151 bash[25273]: audit 2024-09-10T04:18:37.685782+0000 mon.smithi120 (mon.0) 730 : audit [DBG] from='client.? 172.21.15.120:0/2233289955' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-10T04:18:38.655 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345941 got 85899345943 for osd.2 2024-09-10T04:18:38.655 DEBUG:teuthology.parallel:result is None 2024-09-10T04:18:38.936 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:38 smithi120 bash[19947]: cluster 2024-09-10T04:18:37.382807+0000 mgr.smithi120.xfjtcc (mgr.14205) 183 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:38.936 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:38 smithi120 bash[19947]: cluster 2024-09-10T04:18:37.382807+0000 mgr.smithi120.xfjtcc (mgr.14205) 183 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:38.936 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:38 smithi120 bash[19947]: audit 2024-09-10T04:18:37.982350+0000 mon.smithi120 (mon.0) 731 : audit [DBG] from='client.? 172.21.15.120:0/2009375397' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-10T04:18:38.936 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:38 smithi120 bash[19947]: audit 2024-09-10T04:18:37.982350+0000 mon.smithi120 (mon.0) 731 : audit [DBG] from='client.? 172.21.15.120:0/2009375397' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-10T04:18:39.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:38 smithi151 bash[25273]: cluster 2024-09-10T04:18:37.382807+0000 mgr.smithi120.xfjtcc (mgr.14205) 183 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:39.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:38 smithi151 bash[25273]: cluster 2024-09-10T04:18:37.382807+0000 mgr.smithi120.xfjtcc (mgr.14205) 183 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:39.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:38 smithi151 bash[25273]: audit 2024-09-10T04:18:37.982350+0000 mon.smithi120 (mon.0) 731 : audit [DBG] from='client.? 172.21.15.120:0/2009375397' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-10T04:18:39.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:38 smithi151 bash[25273]: audit 2024-09-10T04:18:37.982350+0000 mon.smithi120 (mon.0) 731 : audit [DBG] from='client.? 172.21.15.120:0/2009375397' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-10T04:18:39.376 INFO:teuthology.orchestra.run.smithi120.stdout:137438953493 2024-09-10T04:18:39.522 INFO:teuthology.orchestra.run.smithi120.stdout:103079215126 2024-09-10T04:18:39.916 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:39 smithi120 bash[19947]: audit 2024-09-10T04:18:39.376992+0000 mon.smithi120 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.120:0/3328003246' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-10T04:18:39.916 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:39 smithi120 bash[19947]: audit 2024-09-10T04:18:39.376992+0000 mon.smithi120 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.120:0/3328003246' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-10T04:18:39.916 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:39 smithi120 bash[19947]: audit 2024-09-10T04:18:39.522542+0000 mon.smithi120 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.120:0/2738523746' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-10T04:18:39.916 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:39 smithi120 bash[19947]: audit 2024-09-10T04:18:39.522542+0000 mon.smithi120 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.120:0/2738523746' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-10T04:18:40.214 INFO:teuthology.orchestra.run.smithi120.stdout:124554051606 2024-09-10T04:18:40.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:39 smithi151 bash[25273]: audit 2024-09-10T04:18:39.376992+0000 mon.smithi120 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.120:0/3328003246' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-10T04:18:40.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:39 smithi151 bash[25273]: audit 2024-09-10T04:18:39.376992+0000 mon.smithi120 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.120:0/3328003246' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-10T04:18:40.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:39 smithi151 bash[25273]: audit 2024-09-10T04:18:39.522542+0000 mon.smithi120 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.120:0/2738523746' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-10T04:18:40.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:39 smithi151 bash[25273]: audit 2024-09-10T04:18:39.522542+0000 mon.smithi120 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.120:0/2738523746' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-10T04:18:40.743 INFO:tasks.cephadm.ceph_manager.ceph:need seq 81604378645 got 81604378647 for osd.1 2024-09-10T04:18:40.743 DEBUG:teuthology.parallel:result is None 2024-09-10T04:18:41.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:40 smithi120 bash[19947]: cluster 2024-09-10T04:18:39.383113+0000 mgr.smithi120.xfjtcc (mgr.14205) 184 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:41.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:40 smithi120 bash[19947]: cluster 2024-09-10T04:18:39.383113+0000 mgr.smithi120.xfjtcc (mgr.14205) 184 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:41.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:40 smithi120 bash[19947]: audit 2024-09-10T04:18:40.214589+0000 mon.smithi120 (mon.0) 734 : audit [DBG] from='client.? 172.21.15.120:0/2577534371' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-10T04:18:41.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:40 smithi120 bash[19947]: audit 2024-09-10T04:18:40.214589+0000 mon.smithi120 (mon.0) 734 : audit [DBG] from='client.? 172.21.15.120:0/2577534371' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-10T04:18:41.096 INFO:teuthology.orchestra.run.smithi120.stdout:103079215126 2024-09-10T04:18:41.174 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822673 got 154618822675 for osd.7 2024-09-10T04:18:41.174 DEBUG:teuthology.parallel:result is None 2024-09-10T04:18:41.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:40 smithi151 bash[25273]: cluster 2024-09-10T04:18:39.383113+0000 mgr.smithi120.xfjtcc (mgr.14205) 184 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:41.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:40 smithi151 bash[25273]: cluster 2024-09-10T04:18:39.383113+0000 mgr.smithi120.xfjtcc (mgr.14205) 184 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:41.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:40 smithi151 bash[25273]: audit 2024-09-10T04:18:40.214589+0000 mon.smithi120 (mon.0) 734 : audit [DBG] from='client.? 172.21.15.120:0/2577534371' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-10T04:18:41.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:40 smithi151 bash[25273]: audit 2024-09-10T04:18:40.214589+0000 mon.smithi120 (mon.0) 734 : audit [DBG] from='client.? 172.21.15.120:0/2577534371' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-10T04:18:41.400 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476759 got 68719476760 for osd.0 2024-09-10T04:18:41.400 DEBUG:teuthology.parallel:result is None 2024-09-10T04:18:41.582 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215124 got 103079215126 for osd.4 2024-09-10T04:18:41.583 DEBUG:teuthology.parallel:result is None 2024-09-10T04:18:42.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:41 smithi151 bash[25273]: audit 2024-09-10T04:18:41.096725+0000 mon.smithi120 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.120:0/3310471577' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-10T04:18:42.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:41 smithi151 bash[25273]: audit 2024-09-10T04:18:41.096725+0000 mon.smithi120 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.120:0/3310471577' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-10T04:18:42.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:41 smithi120 bash[19947]: audit 2024-09-10T04:18:41.096725+0000 mon.smithi120 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.120:0/3310471577' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-10T04:18:42.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:41 smithi120 bash[19947]: audit 2024-09-10T04:18:41.096725+0000 mon.smithi120 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.120:0/3310471577' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-10T04:18:42.622 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953491 got 137438953493 for osd.5 2024-09-10T04:18:42.622 DEBUG:teuthology.parallel:result is None 2024-09-10T04:18:42.652 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051604 got 124554051606 for osd.6 2024-09-10T04:18:42.653 DEBUG:teuthology.parallel:result is None 2024-09-10T04:18:42.653 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215124 got 103079215126 for osd.3 2024-09-10T04:18:42.654 DEBUG:teuthology.parallel:result is None 2024-09-10T04:18:42.654 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-10T04:18:42.654 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-10T04:18:43.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:42 smithi120 bash[19947]: cluster 2024-09-10T04:18:41.383581+0000 mgr.smithi120.xfjtcc (mgr.14205) 185 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:43.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:42 smithi120 bash[19947]: cluster 2024-09-10T04:18:41.383581+0000 mgr.smithi120.xfjtcc (mgr.14205) 185 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:43.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:42 smithi151 bash[25273]: cluster 2024-09-10T04:18:41.383581+0000 mgr.smithi120.xfjtcc (mgr.14205) 185 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:43.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:42 smithi151 bash[25273]: cluster 2024-09-10T04:18:41.383581+0000 mgr.smithi120.xfjtcc (mgr.14205) 185 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:45.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:44 smithi151 bash[25273]: cluster 2024-09-10T04:18:43.384246+0000 mgr.smithi120.xfjtcc (mgr.14205) 186 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:45.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:44 smithi151 bash[25273]: cluster 2024-09-10T04:18:43.384246+0000 mgr.smithi120.xfjtcc (mgr.14205) 186 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:45.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:44 smithi120 bash[19947]: cluster 2024-09-10T04:18:43.384246+0000 mgr.smithi120.xfjtcc (mgr.14205) 186 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:45.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:44 smithi120 bash[19947]: cluster 2024-09-10T04:18:43.384246+0000 mgr.smithi120.xfjtcc (mgr.14205) 186 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:47.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:46 smithi151 bash[25273]: cluster 2024-09-10T04:18:45.384907+0000 mgr.smithi120.xfjtcc (mgr.14205) 187 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:47.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:46 smithi151 bash[25273]: cluster 2024-09-10T04:18:45.384907+0000 mgr.smithi120.xfjtcc (mgr.14205) 187 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:47.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:46 smithi120 bash[19947]: cluster 2024-09-10T04:18:45.384907+0000 mgr.smithi120.xfjtcc (mgr.14205) 187 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:47.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:46 smithi120 bash[19947]: cluster 2024-09-10T04:18:45.384907+0000 mgr.smithi120.xfjtcc (mgr.14205) 187 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:47.526 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:49.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:48 smithi120 bash[19947]: cluster 2024-09-10T04:18:47.385514+0000 mgr.smithi120.xfjtcc (mgr.14205) 188 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:49.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:48 smithi120 bash[19947]: cluster 2024-09-10T04:18:47.385514+0000 mgr.smithi120.xfjtcc (mgr.14205) 188 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:49.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:48 smithi120 bash[19947]: audit 2024-09-10T04:18:48.662294+0000 mon.smithi120 (mon.0) 736 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:49.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:48 smithi120 bash[19947]: audit 2024-09-10T04:18:48.662294+0000 mon.smithi120 (mon.0) 736 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:49.039 INFO:teuthology.orchestra.run.smithi120.stderr:dumped all 2024-09-10T04:18:49.039 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:18:49.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:48 smithi151 bash[25273]: cluster 2024-09-10T04:18:47.385514+0000 mgr.smithi120.xfjtcc (mgr.14205) 188 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:48 smithi151 bash[25273]: cluster 2024-09-10T04:18:47.385514+0000 mgr.smithi120.xfjtcc (mgr.14205) 188 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:48 smithi151 bash[25273]: audit 2024-09-10T04:18:48.662294+0000 mon.smithi120 (mon.0) 736 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:48 smithi151 bash[25273]: audit 2024-09-10T04:18:48.662294+0000 mon.smithi120 (mon.0) 736 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:18:49.751 INFO:teuthology.orchestra.run.smithi120.stdout:{"pg_ready":true,"pg_map":{"version":155,"stamp":"2024-09-10T04:18:47.385233+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":116,"num_read_kb":100,"num_write":211,"num_write_kb":4238,"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":172,"ondisk_log_size":172,"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":241960,"kb_used_data":4908,"kb_used_omap":12,"kb_used_meta":236851,"kb_avail":749686488,"statfs":{"total":767926730752,"available":767678963712,"internally_reserved":0,"allocated":5025792,"data_stored":3079688,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12750,"internal_metadata":242535986},"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.002934"},"pg_stats":[{"pgid":"1.0","version":"27'172","reported_seq":238,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-10T04:17:16.776813+0000","last_change":"2024-09-10T04:17:16.775732+0000","last_active":"2024-09-10T04:17:16.776813+0000","last_peered":"2024-09-10T04:17:16.776813+0000","last_clean":"2024-09-10T04:17:16.776813+0000","last_became_active":"2024-09-10T04:17:16.774876+0000","last_became_peered":"2024-09-10T04:17:16.774876+0000","last_unstale":"2024-09-10T04:17:16.776813+0000","last_undegraded":"2024-09-10T04:17:16.776813+0000","last_fullsized":"2024-09-10T04:17:16.776813+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-10T04:16:58.014020+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-10T04:16:58.014020+0000","last_clean_scrub_stamp":"2024-09-10T04:16:58.014020+0000","objects_scrubbed":0,"log_size":172,"log_dups_size":0,"ondisk_log_size":172,"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-11T10:51:43.607506+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":116,"num_read_kb":100,"num_write":211,"num_write_kb":4238,"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":116,"num_read_kb":100,"num_write":211,"num_write_kb":4238,"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":2375680,"data_stored":2361472,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":172,"ondisk_log_size":172,"up":3,"acting":3,"num_store_stats":4}],"osd_stats":[{"osd":7,"up_from":36,"seq":154618822677,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28008,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713048,"statfs":{"total":95990841344,"available":95962161152,"internally_reserved":0,"allocated":999424,"data_stored":753941,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":32,"seq":137438953495,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27428,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713628,"statfs":{"total":95990841344,"available":95962755072,"internally_reserved":0,"allocated":405504,"data_stored":163573,"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":29,"seq":124554051608,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27432,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713624,"statfs":{"total":95990841344,"available":95962750976,"internally_reserved":0,"allocated":405504,"data_stored":163573,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":24,"seq":103079215128,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31592,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709464,"statfs":{"total":95990841344,"available":95958491136,"internally_reserved":0,"allocated":405504,"data_stored":163573,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":24,"seq":103079215128,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32168,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708888,"statfs":{"total":95990841344,"available":95957901312,"internally_reserved":0,"allocated":999424,"data_stored":753941,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":31914440},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":20,"seq":85899345946,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":405504,"data_stored":163573,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":19,"seq":81604378649,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":405504,"data_stored":163573,"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":68719476763,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32164,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708892,"statfs":{"total":95990841344,"available":95957905408,"internally_reserved":0,"allocated":999424,"data_stored":753941,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"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":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-10T04:18:49.752 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph pg dump --format=json 2024-09-10T04:18:50.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:49 smithi120 bash[19947]: audit 2024-09-10T04:18:49.039022+0000 mgr.smithi120.xfjtcc (mgr.14205) 189 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:18:50.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:49 smithi120 bash[19947]: audit 2024-09-10T04:18:49.039022+0000 mgr.smithi120.xfjtcc (mgr.14205) 189 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:18:50.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:49 smithi151 bash[25273]: audit 2024-09-10T04:18:49.039022+0000 mgr.smithi120.xfjtcc (mgr.14205) 189 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:18:50.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:49 smithi151 bash[25273]: audit 2024-09-10T04:18:49.039022+0000 mgr.smithi120.xfjtcc (mgr.14205) 189 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:18:51.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:50 smithi151 bash[25273]: cluster 2024-09-10T04:18:49.385886+0000 mgr.smithi120.xfjtcc (mgr.14205) 190 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:51.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:50 smithi151 bash[25273]: cluster 2024-09-10T04:18:49.385886+0000 mgr.smithi120.xfjtcc (mgr.14205) 190 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:51.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:50 smithi120 bash[19947]: cluster 2024-09-10T04:18:49.385886+0000 mgr.smithi120.xfjtcc (mgr.14205) 190 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:50 smithi120 bash[19947]: cluster 2024-09-10T04:18:49.385886+0000 mgr.smithi120.xfjtcc (mgr.14205) 190 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:53.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:52 smithi151 bash[25273]: cluster 2024-09-10T04:18:51.386493+0000 mgr.smithi120.xfjtcc (mgr.14205) 191 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:53.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:52 smithi151 bash[25273]: cluster 2024-09-10T04:18:51.386493+0000 mgr.smithi120.xfjtcc (mgr.14205) 191 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:53.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:52 smithi120 bash[19947]: cluster 2024-09-10T04:18:51.386493+0000 mgr.smithi120.xfjtcc (mgr.14205) 191 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:53.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:52 smithi120 bash[19947]: cluster 2024-09-10T04:18:51.386493+0000 mgr.smithi120.xfjtcc (mgr.14205) 191 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:54.557 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:18:55.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:54 smithi151 bash[25273]: cluster 2024-09-10T04:18:53.387097+0000 mgr.smithi120.xfjtcc (mgr.14205) 192 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:55.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:54 smithi151 bash[25273]: cluster 2024-09-10T04:18:53.387097+0000 mgr.smithi120.xfjtcc (mgr.14205) 192 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:55.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:54 smithi120 bash[19947]: cluster 2024-09-10T04:18:53.387097+0000 mgr.smithi120.xfjtcc (mgr.14205) 192 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:55.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:54 smithi120 bash[19947]: cluster 2024-09-10T04:18:53.387097+0000 mgr.smithi120.xfjtcc (mgr.14205) 192 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:56.013 INFO:teuthology.orchestra.run.smithi120.stderr:dumped all 2024-09-10T04:18:56.014 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:18:56.705 INFO:teuthology.orchestra.run.smithi120.stdout:{"pg_ready":true,"pg_map":{"version":159,"stamp":"2024-09-10T04:18:55.387417+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":116,"num_read_kb":100,"num_write":211,"num_write_kb":4238,"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":172,"ondisk_log_size":172,"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":241960,"kb_used_data":4908,"kb_used_omap":12,"kb_used_meta":236851,"kb_avail":749686488,"statfs":{"total":767926730752,"available":767678963712,"internally_reserved":0,"allocated":5025792,"data_stored":3079688,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12750,"internal_metadata":242535986},"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.003548"},"pg_stats":[{"pgid":"1.0","version":"27'172","reported_seq":238,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-10T04:17:16.776813+0000","last_change":"2024-09-10T04:17:16.775732+0000","last_active":"2024-09-10T04:17:16.776813+0000","last_peered":"2024-09-10T04:17:16.776813+0000","last_clean":"2024-09-10T04:17:16.776813+0000","last_became_active":"2024-09-10T04:17:16.774876+0000","last_became_peered":"2024-09-10T04:17:16.774876+0000","last_unstale":"2024-09-10T04:17:16.776813+0000","last_undegraded":"2024-09-10T04:17:16.776813+0000","last_fullsized":"2024-09-10T04:17:16.776813+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-10T04:16:58.014020+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-10T04:16:58.014020+0000","last_clean_scrub_stamp":"2024-09-10T04:16:58.014020+0000","objects_scrubbed":0,"log_size":172,"log_dups_size":0,"ondisk_log_size":172,"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-11T10:51:43.607506+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":116,"num_read_kb":100,"num_write":211,"num_write_kb":4238,"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":116,"num_read_kb":100,"num_write":211,"num_write_kb":4238,"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":2375680,"data_stored":2361472,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":172,"ondisk_log_size":172,"up":3,"acting":3,"num_store_stats":4}],"osd_stats":[{"osd":7,"up_from":36,"seq":154618822679,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28008,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713048,"statfs":{"total":95990841344,"available":95962161152,"internally_reserved":0,"allocated":999424,"data_stored":753941,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27654602},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":32,"seq":137438953497,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27428,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713628,"statfs":{"total":95990841344,"available":95962755072,"internally_reserved":0,"allocated":405504,"data_stored":163573,"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":29,"seq":124554051609,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27432,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713624,"statfs":{"total":95990841344,"available":95962750976,"internally_reserved":0,"allocated":405504,"data_stored":163573,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":24,"seq":103079215130,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31592,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709464,"statfs":{"total":95990841344,"available":95958491136,"internally_reserved":0,"allocated":405504,"data_stored":163573,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,2,3,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":24,"seq":103079215130,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32168,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708888,"statfs":{"total":95990841344,"available":95957901312,"internally_reserved":0,"allocated":999424,"data_stored":753941,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":31914440},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":20,"seq":85899345947,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":405504,"data_stored":163573,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":19,"seq":81604378651,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":396,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":405504,"data_stored":163573,"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":32164,"kb_used_data":976,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708892,"statfs":{"total":95990841344,"available":95957905408,"internally_reserved":0,"allocated":999424,"data_stored":753941,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"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":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-10T04:18:56.705 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-10T04:18:56.706 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-10T04:18:56.706 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-10T04:18:56.706 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph health --format=json 2024-09-10T04:18:57.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:56 smithi120 bash[19947]: cluster 2024-09-10T04:18:55.387701+0000 mgr.smithi120.xfjtcc (mgr.14205) 193 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:57.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:56 smithi120 bash[19947]: cluster 2024-09-10T04:18:55.387701+0000 mgr.smithi120.xfjtcc (mgr.14205) 193 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:57.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:56 smithi120 bash[19947]: audit 2024-09-10T04:18:56.013016+0000 mgr.smithi120.xfjtcc (mgr.14205) 194 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:18:57.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:56 smithi120 bash[19947]: audit 2024-09-10T04:18:56.013016+0000 mgr.smithi120.xfjtcc (mgr.14205) 194 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:18:57.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:56 smithi151 bash[25273]: cluster 2024-09-10T04:18:55.387701+0000 mgr.smithi120.xfjtcc (mgr.14205) 193 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:57.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:56 smithi151 bash[25273]: cluster 2024-09-10T04:18:55.387701+0000 mgr.smithi120.xfjtcc (mgr.14205) 193 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:57.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:56 smithi151 bash[25273]: audit 2024-09-10T04:18:56.013016+0000 mgr.smithi120.xfjtcc (mgr.14205) 194 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:18:57.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:56 smithi151 bash[25273]: audit 2024-09-10T04:18:56.013016+0000 mgr.smithi120.xfjtcc (mgr.14205) 194 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:18:59.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:58 smithi151 bash[25273]: cluster 2024-09-10T04:18:57.388394+0000 mgr.smithi120.xfjtcc (mgr.14205) 195 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:59.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:18:58 smithi151 bash[25273]: cluster 2024-09-10T04:18:57.388394+0000 mgr.smithi120.xfjtcc (mgr.14205) 195 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:59.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:58 smithi120 bash[19947]: cluster 2024-09-10T04:18:57.388394+0000 mgr.smithi120.xfjtcc (mgr.14205) 195 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:18:59.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:18:58 smithi120 bash[19947]: cluster 2024-09-10T04:18:57.388394+0000 mgr.smithi120.xfjtcc (mgr.14205) 195 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:01.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:00 smithi151 bash[25273]: cluster 2024-09-10T04:18:59.389117+0000 mgr.smithi120.xfjtcc (mgr.14205) 196 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:01.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:00 smithi151 bash[25273]: cluster 2024-09-10T04:18:59.389117+0000 mgr.smithi120.xfjtcc (mgr.14205) 196 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:00 smithi120 bash[19947]: cluster 2024-09-10T04:18:59.389117+0000 mgr.smithi120.xfjtcc (mgr.14205) 196 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:00 smithi120 bash[19947]: cluster 2024-09-10T04:18:59.389117+0000 mgr.smithi120.xfjtcc (mgr.14205) 196 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:01.525 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:02.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:01 smithi151 bash[25273]: audit 2024-09-10T04:19:01.096375+0000 mon.smithi120 (mon.0) 737 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:19:02.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:01 smithi151 bash[25273]: audit 2024-09-10T04:19:01.096375+0000 mon.smithi120 (mon.0) 737 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:19:02.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:01 smithi120 bash[19947]: audit 2024-09-10T04:19:01.096375+0000 mon.smithi120 (mon.0) 737 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:19:02.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:01 smithi120 bash[19947]: audit 2024-09-10T04:19:01.096375+0000 mon.smithi120 (mon.0) 737 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:19:03.002 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:19:03.003 INFO:teuthology.orchestra.run.smithi120.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-10T04:19:03.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:02 smithi151 bash[25273]: cluster 2024-09-10T04:19:01.389793+0000 mgr.smithi120.xfjtcc (mgr.14205) 197 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:03.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:02 smithi151 bash[25273]: cluster 2024-09-10T04:19:01.389793+0000 mgr.smithi120.xfjtcc (mgr.14205) 197 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:03.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:02 smithi120 bash[19947]: cluster 2024-09-10T04:19:01.389793+0000 mgr.smithi120.xfjtcc (mgr.14205) 197 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:03.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:02 smithi120 bash[19947]: cluster 2024-09-10T04:19:01.389793+0000 mgr.smithi120.xfjtcc (mgr.14205) 197 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:03.703 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-10T04:19:03.703 INFO:tasks.cephadm:Setup complete, yielding 2024-09-10T04:19:03.703 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-10T04:19:03.719 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:19:03.719 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch status' 2024-09-10T04:19:04.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:03 smithi120 bash[19947]: audit 2024-09-10T04:19:03.003080+0000 mon.smithi120 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.120:0/2520364460' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-10T04:19:04.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:03 smithi120 bash[19947]: audit 2024-09-10T04:19:03.003080+0000 mon.smithi120 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.120:0/2520364460' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-10T04:19:04.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:03 smithi120 bash[19947]: audit 2024-09-10T04:19:03.663022+0000 mon.smithi120 (mon.0) 739 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:03 smithi120 bash[19947]: audit 2024-09-10T04:19:03.663022+0000 mon.smithi120 (mon.0) 739 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:04.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:03 smithi151 bash[25273]: audit 2024-09-10T04:19:03.003080+0000 mon.smithi120 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.120:0/2520364460' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-10T04:19:04.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:03 smithi151 bash[25273]: audit 2024-09-10T04:19:03.003080+0000 mon.smithi120 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.120:0/2520364460' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-10T04:19:04.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:03 smithi151 bash[25273]: audit 2024-09-10T04:19:03.663022+0000 mon.smithi120 (mon.0) 739 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:03 smithi151 bash[25273]: audit 2024-09-10T04:19:03.663022+0000 mon.smithi120 (mon.0) 739 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:05.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:04 smithi151 bash[25273]: cluster 2024-09-10T04:19:03.390516+0000 mgr.smithi120.xfjtcc (mgr.14205) 198 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:05.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:04 smithi151 bash[25273]: cluster 2024-09-10T04:19:03.390516+0000 mgr.smithi120.xfjtcc (mgr.14205) 198 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:05.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:04 smithi120 bash[19947]: cluster 2024-09-10T04:19:03.390516+0000 mgr.smithi120.xfjtcc (mgr.14205) 198 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:05.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:04 smithi120 bash[19947]: cluster 2024-09-10T04:19:03.390516+0000 mgr.smithi120.xfjtcc (mgr.14205) 198 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:07.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:06 smithi151 bash[25273]: cluster 2024-09-10T04:19:05.391122+0000 mgr.smithi120.xfjtcc (mgr.14205) 199 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:07.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:06 smithi151 bash[25273]: cluster 2024-09-10T04:19:05.391122+0000 mgr.smithi120.xfjtcc (mgr.14205) 199 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:07.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:06 smithi151 bash[25273]: audit 2024-09-10T04:19:06.656862+0000 mon.smithi120 (mon.0) 740 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:07.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:06 smithi151 bash[25273]: audit 2024-09-10T04:19:06.656862+0000 mon.smithi120 (mon.0) 740 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:07.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:06 smithi151 bash[25273]: audit 2024-09-10T04:19:06.660837+0000 mon.smithi120 (mon.0) 741 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:07.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:06 smithi151 bash[25273]: audit 2024-09-10T04:19:06.660837+0000 mon.smithi120 (mon.0) 741 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:07.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:06 smithi120 bash[19947]: cluster 2024-09-10T04:19:05.391122+0000 mgr.smithi120.xfjtcc (mgr.14205) 199 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:07.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:06 smithi120 bash[19947]: cluster 2024-09-10T04:19:05.391122+0000 mgr.smithi120.xfjtcc (mgr.14205) 199 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:07.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:06 smithi120 bash[19947]: audit 2024-09-10T04:19:06.656862+0000 mon.smithi120 (mon.0) 740 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:07.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:06 smithi120 bash[19947]: audit 2024-09-10T04:19:06.656862+0000 mon.smithi120 (mon.0) 740 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:07.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:06 smithi120 bash[19947]: audit 2024-09-10T04:19:06.660837+0000 mon.smithi120 (mon.0) 741 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:07.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:06 smithi120 bash[19947]: audit 2024-09-10T04:19:06.660837+0000 mon.smithi120 (mon.0) 741 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.270 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:08.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.013017+0000 mon.smithi120 (mon.0) 742 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.013017+0000 mon.smithi120 (mon.0) 742 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.019014+0000 mon.smithi120 (mon.0) 743 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.019014+0000 mon.smithi120 (mon.0) 743 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.630272+0000 mon.smithi120 (mon.0) 744 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:19:08.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.630272+0000 mon.smithi120 (mon.0) 744 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:19:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.632033+0000 mon.smithi120 (mon.0) 745 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:19:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.632033+0000 mon.smithi120 (mon.0) 745 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:19:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.641717+0000 mon.smithi120 (mon.0) 746 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.641717+0000 mon.smithi120 (mon.0) 746 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.648387+0000 mon.smithi120 (mon.0) 747 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:19:08.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:08 smithi120 bash[19947]: audit 2024-09-10T04:19:07.648387+0000 mon.smithi120 (mon.0) 747 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.013017+0000 mon.smithi120 (mon.0) 742 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.013017+0000 mon.smithi120 (mon.0) 742 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.019014+0000 mon.smithi120 (mon.0) 743 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.019014+0000 mon.smithi120 (mon.0) 743 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.630272+0000 mon.smithi120 (mon.0) 744 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.630272+0000 mon.smithi120 (mon.0) 744 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.632033+0000 mon.smithi120 (mon.0) 745 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.632033+0000 mon.smithi120 (mon.0) 745 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:19:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.641717+0000 mon.smithi120 (mon.0) 746 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.641717+0000 mon.smithi120 (mon.0) 746 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:08.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.648387+0000 mon.smithi120 (mon.0) 747 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:19:08.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:08 smithi151 bash[25273]: audit 2024-09-10T04:19:07.648387+0000 mon.smithi120 (mon.0) 747 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:19:09.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:09 smithi120 bash[19947]: cluster 2024-09-10T04:19:07.391766+0000 mgr.smithi120.xfjtcc (mgr.14205) 200 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:09.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:09 smithi120 bash[19947]: cluster 2024-09-10T04:19:07.391766+0000 mgr.smithi120.xfjtcc (mgr.14205) 200 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:09.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:09 smithi151 bash[25273]: cluster 2024-09-10T04:19:07.391766+0000 mgr.smithi120.xfjtcc (mgr.14205) 200 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:09 smithi151 bash[25273]: cluster 2024-09-10T04:19:07.391766+0000 mgr.smithi120.xfjtcc (mgr.14205) 200 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:09.715 INFO:teuthology.orchestra.run.smithi120.stdout:Backend: cephadm 2024-09-10T04:19:09.715 INFO:teuthology.orchestra.run.smithi120.stdout:Available: Yes 2024-09-10T04:19:09.715 INFO:teuthology.orchestra.run.smithi120.stdout:Paused: No 2024-09-10T04:19:10.406 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-10T04:19:11.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:11 smithi120 bash[19947]: cluster 2024-09-10T04:19:09.392420+0000 mgr.smithi120.xfjtcc (mgr.14205) 201 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:11 smithi120 bash[19947]: cluster 2024-09-10T04:19:09.392420+0000 mgr.smithi120.xfjtcc (mgr.14205) 201 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:11 smithi120 bash[19947]: audit 2024-09-10T04:19:09.715031+0000 mgr.smithi120.xfjtcc (mgr.14205) 202 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:11.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:11 smithi120 bash[19947]: audit 2024-09-10T04:19:09.715031+0000 mgr.smithi120.xfjtcc (mgr.14205) 202 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:11.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:11 smithi151 bash[25273]: cluster 2024-09-10T04:19:09.392420+0000 mgr.smithi120.xfjtcc (mgr.14205) 201 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:11 smithi151 bash[25273]: cluster 2024-09-10T04:19:09.392420+0000 mgr.smithi120.xfjtcc (mgr.14205) 201 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:11 smithi151 bash[25273]: audit 2024-09-10T04:19:09.715031+0000 mgr.smithi120.xfjtcc (mgr.14205) 202 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:11 smithi151 bash[25273]: audit 2024-09-10T04:19:09.715031+0000 mgr.smithi120.xfjtcc (mgr.14205) 202 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:13.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:13 smithi151 bash[25273]: cluster 2024-09-10T04:19:11.393015+0000 mgr.smithi120.xfjtcc (mgr.14205) 203 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:13.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:13 smithi151 bash[25273]: cluster 2024-09-10T04:19:11.393015+0000 mgr.smithi120.xfjtcc (mgr.14205) 203 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:13.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:13 smithi120 bash[19947]: cluster 2024-09-10T04:19:11.393015+0000 mgr.smithi120.xfjtcc (mgr.14205) 203 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:13.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:13 smithi120 bash[19947]: cluster 2024-09-10T04:19:11.393015+0000 mgr.smithi120.xfjtcc (mgr.14205) 203 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:15.220 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:15.330 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:15 smithi120 bash[19947]: cluster 2024-09-10T04:19:13.393588+0000 mgr.smithi120.xfjtcc (mgr.14205) 204 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:15.330 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:15 smithi120 bash[19947]: cluster 2024-09-10T04:19:13.393588+0000 mgr.smithi120.xfjtcc (mgr.14205) 204 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:15.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:15 smithi151 bash[25273]: cluster 2024-09-10T04:19:13.393588+0000 mgr.smithi120.xfjtcc (mgr.14205) 204 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:15.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:15 smithi151 bash[25273]: cluster 2024-09-10T04:19:13.393588+0000 mgr.smithi120.xfjtcc (mgr.14205) 204 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:16.640 INFO:teuthology.orchestra.run.smithi120.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-10T04:19:16.640 INFO:teuthology.orchestra.run.smithi120.stdout:alertmanager.smithi120 smithi120 *:9093,9094 running (3m) 9s ago 5m 14.3M - 0.27.0 11f11916f8cd 9822382bb473 2024-09-10T04:19:16.640 INFO:teuthology.orchestra.run.smithi120.stdout:ceph-exporter.smithi120 smithi120 running (5m) 9s ago 5m 8832k - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b b6303aa513dd 2024-09-10T04:19:16.640 INFO:teuthology.orchestra.run.smithi120.stdout:ceph-exporter.smithi151 smithi151 running (4m) 9s ago 4m 6043k - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 3c4fe4a80a24 2024-09-10T04:19:16.640 INFO:teuthology.orchestra.run.smithi120.stdout:crash.smithi120 smithi120 running (5m) 9s ago 5m 7247k - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 052d2fd226f2 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:crash.smithi151 smithi151 running (4m) 9s ago 4m 7235k - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b e266eb1536c7 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:grafana.smithi120 smithi120 *:3000 running (3m) 9s ago 5m 67.1M - 10.4.0 c8b91775d855 8582b26fc925 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:mgr.smithi120.xfjtcc smithi120 *:9283,8765,8443 running (7m) 9s ago 7m 502M - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 6eda15d20cea 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:mgr.smithi151.abmuzj smithi151 *:8443,9283,8765 running (4m) 9s ago 4m 440M - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 8b5a8c464284 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:mon.smithi120 smithi120 running (7m) 9s ago 7m 49.1M 2048M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 0dab74703f06 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:mon.smithi151 smithi151 running (4m) 9s ago 4m 41.7M 2048M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b f551b185215f 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter.smithi120 smithi120 *:9100 running (5m) 9s ago 5m 8099k - 1.7.0 72c9c2088986 8b478f27968b 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter.smithi151 smithi151 *:9100 running (4m) 9s ago 4m 8932k - 1.7.0 72c9c2088986 b3a99ab3480b 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:osd.0 smithi151 running (2m) 9s ago 2m 46.3M 3772M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 58b527192e9c 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:osd.1 smithi120 running (2m) 9s ago 2m 48.4M 3004M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 88f1659c6e93 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:osd.2 smithi151 running (2m) 9s ago 2m 42.0M 3772M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b d91cab3535ad 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:osd.3 smithi120 running (2m) 9s ago 2m 44.9M 3004M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b a141a0635213 2024-09-10T04:19:16.641 INFO:teuthology.orchestra.run.smithi120.stdout:osd.4 smithi151 running (2m) 9s ago 2m 42.2M 3772M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 11b1b269913a 2024-09-10T04:19:16.642 INFO:teuthology.orchestra.run.smithi120.stdout:osd.5 smithi120 running (2m) 9s ago 2m 35.3M 3004M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b c98e099e39fa 2024-09-10T04:19:16.642 INFO:teuthology.orchestra.run.smithi120.stdout:osd.6 smithi151 running (2m) 9s ago 2m 34.9M 3772M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b a003afd3e095 2024-09-10T04:19:16.642 INFO:teuthology.orchestra.run.smithi120.stdout:osd.7 smithi120 running (2m) 9s ago 2m 46.6M 3004M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 8612e2e19d32 2024-09-10T04:19:16.642 INFO:teuthology.orchestra.run.smithi120.stdout:prometheus.smithi120 smithi120 *:9095 running (3m) 9s ago 4m 43.9M - 2.51.0 1d3b7f56885b 63bd4ea3150b 2024-09-10T04:19:17.258 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-10T04:19:17.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:17 smithi151 bash[25273]: cluster 2024-09-10T04:19:15.394127+0000 mgr.smithi120.xfjtcc (mgr.14205) 205 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:17.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:17 smithi151 bash[25273]: cluster 2024-09-10T04:19:15.394127+0000 mgr.smithi120.xfjtcc (mgr.14205) 205 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:17.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:17 smithi120 bash[19947]: cluster 2024-09-10T04:19:15.394127+0000 mgr.smithi120.xfjtcc (mgr.14205) 205 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:17.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:17 smithi120 bash[19947]: cluster 2024-09-10T04:19:15.394127+0000 mgr.smithi120.xfjtcc (mgr.14205) 205 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:18.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:18 smithi151 bash[25273]: audit 2024-09-10T04:19:16.627741+0000 mgr.smithi120.xfjtcc (mgr.14205) 206 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:18.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:18 smithi151 bash[25273]: audit 2024-09-10T04:19:16.627741+0000 mgr.smithi120.xfjtcc (mgr.14205) 206 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:18.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:18 smithi120 bash[19947]: audit 2024-09-10T04:19:16.627741+0000 mgr.smithi120.xfjtcc (mgr.14205) 206 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:18.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:18 smithi120 bash[19947]: audit 2024-09-10T04:19:16.627741+0000 mgr.smithi120.xfjtcc (mgr.14205) 206 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:19.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:19 smithi151 bash[25273]: cluster 2024-09-10T04:19:17.394537+0000 mgr.smithi120.xfjtcc (mgr.14205) 207 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:19.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:19 smithi151 bash[25273]: cluster 2024-09-10T04:19:17.394537+0000 mgr.smithi120.xfjtcc (mgr.14205) 207 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:19.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:19 smithi151 bash[25273]: audit 2024-09-10T04:19:18.663063+0000 mon.smithi120 (mon.0) 748 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:19.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:19 smithi151 bash[25273]: audit 2024-09-10T04:19:18.663063+0000 mon.smithi120 (mon.0) 748 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:19.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:19 smithi120 bash[19947]: cluster 2024-09-10T04:19:17.394537+0000 mgr.smithi120.xfjtcc (mgr.14205) 207 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:19.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:19 smithi120 bash[19947]: cluster 2024-09-10T04:19:17.394537+0000 mgr.smithi120.xfjtcc (mgr.14205) 207 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:19.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:19 smithi120 bash[19947]: audit 2024-09-10T04:19:18.663063+0000 mon.smithi120 (mon.0) 748 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:19.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:19 smithi120 bash[19947]: audit 2024-09-10T04:19:18.663063+0000 mon.smithi120 (mon.0) 748 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:21.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:21 smithi151 bash[25273]: cluster 2024-09-10T04:19:19.395082+0000 mgr.smithi120.xfjtcc (mgr.14205) 208 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:21.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:21 smithi151 bash[25273]: cluster 2024-09-10T04:19:19.395082+0000 mgr.smithi120.xfjtcc (mgr.14205) 208 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:21 smithi120 bash[19947]: cluster 2024-09-10T04:19:19.395082+0000 mgr.smithi120.xfjtcc (mgr.14205) 208 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:21.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:21 smithi120 bash[19947]: cluster 2024-09-10T04:19:19.395082+0000 mgr.smithi120.xfjtcc (mgr.14205) 208 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:22.070 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:23.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:23 smithi151 bash[25273]: cluster 2024-09-10T04:19:21.395657+0000 mgr.smithi120.xfjtcc (mgr.14205) 209 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:23.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:23 smithi151 bash[25273]: cluster 2024-09-10T04:19:21.395657+0000 mgr.smithi120.xfjtcc (mgr.14205) 209 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:23.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:23 smithi120 bash[19947]: cluster 2024-09-10T04:19:21.395657+0000 mgr.smithi120.xfjtcc (mgr.14205) 209 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:23.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:23 smithi120 bash[19947]: cluster 2024-09-10T04:19:21.395657+0000 mgr.smithi120.xfjtcc (mgr.14205) 209 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:23.626 INFO:teuthology.orchestra.run.smithi120.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-10T04:19:23.626 INFO:teuthology.orchestra.run.smithi120.stdout:alertmanager ?:9093,9094 1/1 16s ago 6m count:1 2024-09-10T04:19:23.626 INFO:teuthology.orchestra.run.smithi120.stdout:ceph-exporter 2/2 16s ago 6m * 2024-09-10T04:19:23.626 INFO:teuthology.orchestra.run.smithi120.stdout:crash 2/2 16s ago 6m * 2024-09-10T04:19:23.627 INFO:teuthology.orchestra.run.smithi120.stdout:grafana ?:3000 1/1 16s ago 6m count:1 2024-09-10T04:19:23.627 INFO:teuthology.orchestra.run.smithi120.stdout:mgr 2/2 16s ago 6m count:2 2024-09-10T04:19:23.627 INFO:teuthology.orchestra.run.smithi120.stdout:mon 2/2 16s ago 5m smithi120:172.21.15.120=smithi120;smithi151:172.21.15.151=smithi151;count:2 2024-09-10T04:19:23.627 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter ?:9100 2/2 16s ago 6m * 2024-09-10T04:19:23.627 INFO:teuthology.orchestra.run.smithi120.stdout:osd.all-available-devices 8 16s ago 3m * 2024-09-10T04:19:23.627 INFO:teuthology.orchestra.run.smithi120.stdout:prometheus ?:9095 1/1 16s ago 6m count:1 2024-09-10T04:19:24.254 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-10T04:19:25.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:25 smithi151 bash[25273]: cluster 2024-09-10T04:19:23.396050+0000 mgr.smithi120.xfjtcc (mgr.14205) 210 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:25.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:25 smithi151 bash[25273]: cluster 2024-09-10T04:19:23.396050+0000 mgr.smithi120.xfjtcc (mgr.14205) 210 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:25.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:25 smithi151 bash[25273]: audit 2024-09-10T04:19:23.612308+0000 mgr.smithi120.xfjtcc (mgr.14205) 211 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:25.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:25 smithi151 bash[25273]: audit 2024-09-10T04:19:23.612308+0000 mgr.smithi120.xfjtcc (mgr.14205) 211 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:25.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:25 smithi120 bash[19947]: cluster 2024-09-10T04:19:23.396050+0000 mgr.smithi120.xfjtcc (mgr.14205) 210 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:25.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:25 smithi120 bash[19947]: cluster 2024-09-10T04:19:23.396050+0000 mgr.smithi120.xfjtcc (mgr.14205) 210 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:25.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:25 smithi120 bash[19947]: audit 2024-09-10T04:19:23.612308+0000 mgr.smithi120.xfjtcc (mgr.14205) 211 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:25.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:25 smithi120 bash[19947]: audit 2024-09-10T04:19:23.612308+0000 mgr.smithi120.xfjtcc (mgr.14205) 211 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:27.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:27 smithi151 bash[25273]: cluster 2024-09-10T04:19:25.396560+0000 mgr.smithi120.xfjtcc (mgr.14205) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:27.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:27 smithi151 bash[25273]: cluster 2024-09-10T04:19:25.396560+0000 mgr.smithi120.xfjtcc (mgr.14205) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:27.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:27 smithi120 bash[19947]: cluster 2024-09-10T04:19:25.396560+0000 mgr.smithi120.xfjtcc (mgr.14205) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:27.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:27 smithi120 bash[19947]: cluster 2024-09-10T04:19:25.396560+0000 mgr.smithi120.xfjtcc (mgr.14205) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:29.076 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:29.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:29 smithi151 bash[25273]: cluster 2024-09-10T04:19:27.397174+0000 mgr.smithi120.xfjtcc (mgr.14205) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:29.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:29 smithi151 bash[25273]: cluster 2024-09-10T04:19:27.397174+0000 mgr.smithi120.xfjtcc (mgr.14205) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:29.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:29 smithi120 bash[19947]: cluster 2024-09-10T04:19:27.397174+0000 mgr.smithi120.xfjtcc (mgr.14205) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:29.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:29 smithi120 bash[19947]: cluster 2024-09-10T04:19:27.397174+0000 mgr.smithi120.xfjtcc (mgr.14205) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:30.503 INFO:teuthology.orchestra.run.smithi120.stdout:HOST ADDR LABELS STATUS 2024-09-10T04:19:30.503 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 172.21.15.120 2024-09-10T04:19:30.504 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 172.21.15.151 2024-09-10T04:19:30.504 INFO:teuthology.orchestra.run.smithi120.stdout:2 hosts in cluster 2024-09-10T04:19:31.188 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-10T04:19:31.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:31 smithi151 bash[25273]: cluster 2024-09-10T04:19:29.397771+0000 mgr.smithi120.xfjtcc (mgr.14205) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:31.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:31 smithi151 bash[25273]: cluster 2024-09-10T04:19:29.397771+0000 mgr.smithi120.xfjtcc (mgr.14205) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:31.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:31 smithi120 bash[19947]: cluster 2024-09-10T04:19:29.397771+0000 mgr.smithi120.xfjtcc (mgr.14205) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:31.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:31 smithi120 bash[19947]: cluster 2024-09-10T04:19:29.397771+0000 mgr.smithi120.xfjtcc (mgr.14205) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:32.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:32 smithi151 bash[25273]: audit 2024-09-10T04:19:30.502768+0000 mgr.smithi120.xfjtcc (mgr.14205) 215 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:32.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:32 smithi151 bash[25273]: audit 2024-09-10T04:19:30.502768+0000 mgr.smithi120.xfjtcc (mgr.14205) 215 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:32.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:32 smithi120 bash[19947]: audit 2024-09-10T04:19:30.502768+0000 mgr.smithi120.xfjtcc (mgr.14205) 215 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:32.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:32 smithi120 bash[19947]: audit 2024-09-10T04:19:30.502768+0000 mgr.smithi120.xfjtcc (mgr.14205) 215 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:33.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:33 smithi151 bash[25273]: cluster 2024-09-10T04:19:31.398120+0000 mgr.smithi120.xfjtcc (mgr.14205) 216 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:33.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:33 smithi151 bash[25273]: cluster 2024-09-10T04:19:31.398120+0000 mgr.smithi120.xfjtcc (mgr.14205) 216 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:33.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:33 smithi120 bash[19947]: cluster 2024-09-10T04:19:31.398120+0000 mgr.smithi120.xfjtcc (mgr.14205) 216 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:33.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:33 smithi120 bash[19947]: cluster 2024-09-10T04:19:31.398120+0000 mgr.smithi120.xfjtcc (mgr.14205) 216 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:34.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:34 smithi151 bash[25273]: audit 2024-09-10T04:19:33.663527+0000 mon.smithi120 (mon.0) 749 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:34.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:34 smithi151 bash[25273]: audit 2024-09-10T04:19:33.663527+0000 mon.smithi120 (mon.0) 749 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:34.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:34 smithi120 bash[19947]: audit 2024-09-10T04:19:33.663527+0000 mon.smithi120 (mon.0) 749 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:34.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:34 smithi120 bash[19947]: audit 2024-09-10T04:19:33.663527+0000 mon.smithi120 (mon.0) 749 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:35.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:35 smithi151 bash[25273]: cluster 2024-09-10T04:19:33.398662+0000 mgr.smithi120.xfjtcc (mgr.14205) 217 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:35.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:35 smithi151 bash[25273]: cluster 2024-09-10T04:19:33.398662+0000 mgr.smithi120.xfjtcc (mgr.14205) 217 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:35.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:35 smithi120 bash[19947]: cluster 2024-09-10T04:19:33.398662+0000 mgr.smithi120.xfjtcc (mgr.14205) 217 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:35.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:35 smithi120 bash[19947]: cluster 2024-09-10T04:19:33.398662+0000 mgr.smithi120.xfjtcc (mgr.14205) 217 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:36.017 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:37.390 INFO:teuthology.orchestra.run.smithi120.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-10T04:19:37.390 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400XV400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-10T04:19:37.390 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme1n1 ssd Linux_c97f2b817277ea7591b8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:37.391 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme2n1 ssd Linux_0a3755113558249d0b7a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:37.391 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme3n1 ssd Linux_3d66f4bf1349f73f3726 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:37.391 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme4n1 ssd Linux_9c6d6df1f745e55473d2 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:37.391 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300JJ400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-10T04:19:37.391 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme1n1 ssd Linux_d878e9a532523eef89e8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:37.391 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme2n1 ssd Linux_7ed5e1b21ec5ab56ee88 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:37.391 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme3n1 ssd Linux_2062593e4d0942f0b17a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:37.391 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme4n1 ssd Linux_ee0a5ab323846e5e4542 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:37.402 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:37 smithi120 bash[19947]: cluster 2024-09-10T04:19:35.399234+0000 mgr.smithi120.xfjtcc (mgr.14205) 218 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:37.403 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:37 smithi120 bash[19947]: cluster 2024-09-10T04:19:35.399234+0000 mgr.smithi120.xfjtcc (mgr.14205) 218 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:37.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:37 smithi151 bash[25273]: cluster 2024-09-10T04:19:35.399234+0000 mgr.smithi120.xfjtcc (mgr.14205) 218 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:37.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:37 smithi151 bash[25273]: cluster 2024-09-10T04:19:35.399234+0000 mgr.smithi120.xfjtcc (mgr.14205) 218 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:38.006 INFO:teuthology.run_tasks:Running task vip... 2024-09-10T04:19:38.018 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-10T04:19:38.018 INFO:tasks.vip:peername 172.21.15.120 2024-09-10T04:19:38.021 INFO:tasks.vip:172.21.15.120 in 172.21.0.0/20, pos 3959 2024-09-10T04:19:38.025 INFO:tasks.vip:smithi120.front.sepia.ceph.com static 10.0.15.120, vnet 10.0.0.0/16 2024-09-10T04:19:38.025 INFO:tasks.vip:VIPs are [IPv4Address('10.0.31.120')] 2024-09-10T04:19:38.026 DEBUG:teuthology.orchestra.run.smithi120:> sudo ip route ls 2024-09-10T04:19:38.039 INFO:teuthology.orchestra.run.smithi120.stdout:default via 172.21.15.254 dev enp3s0f1 2024-09-10T04:19:38.039 INFO:teuthology.orchestra.run.smithi120.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.120 metric 100 2024-09-10T04:19:38.039 INFO:teuthology.orchestra.run.smithi120.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.120 metric 100 2024-09-10T04:19:38.039 INFO:teuthology.orchestra.run.smithi120.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-10T04:19:38.039 INFO:teuthology.orchestra.run.smithi120.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.120 metric 100 2024-09-10T04:19:38.039 INFO:teuthology.orchestra.run.smithi120.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.120 metric 100 2024-09-10T04:19:38.039 INFO:teuthology.orchestra.run.smithi120.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.120 metric 100 2024-09-10T04:19:38.039 INFO:teuthology.orchestra.run.smithi120.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.120 metric 100 2024-09-10T04:19:38.040 INFO:tasks.vip:Configuring 10.0.15.120 on smithi120.front.sepia.ceph.com iface enp3s0f1... 2024-09-10T04:19:38.040 DEBUG:teuthology.orchestra.run.smithi120:> sudo ip addr add 10.0.15.120/16 dev enp3s0f1 2024-09-10T04:19:38.096 INFO:tasks.vip:peername 172.21.15.151 2024-09-10T04:19:38.099 INFO:tasks.vip:172.21.15.151 in 172.21.0.0/20, pos 3990 2024-09-10T04:19:38.158 INFO:tasks.vip:smithi151.front.sepia.ceph.com static 10.0.15.151, vnet 10.0.0.0/16 2024-09-10T04:19:38.158 DEBUG:teuthology.orchestra.run.smithi151:> sudo ip route ls 2024-09-10T04:19:38.172 INFO:teuthology.orchestra.run.smithi151.stdout:default via 172.21.15.254 dev enp3s0f1 2024-09-10T04:19:38.172 INFO:teuthology.orchestra.run.smithi151.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.151 metric 100 2024-09-10T04:19:38.172 INFO:teuthology.orchestra.run.smithi151.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.151 metric 100 2024-09-10T04:19:38.173 INFO:teuthology.orchestra.run.smithi151.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-10T04:19:38.173 INFO:teuthology.orchestra.run.smithi151.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.151 metric 100 2024-09-10T04:19:38.173 INFO:teuthology.orchestra.run.smithi151.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.151 metric 100 2024-09-10T04:19:38.173 INFO:teuthology.orchestra.run.smithi151.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.151 metric 100 2024-09-10T04:19:38.173 INFO:teuthology.orchestra.run.smithi151.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.151 metric 100 2024-09-10T04:19:38.174 INFO:tasks.vip:Configuring 10.0.15.151 on smithi151.front.sepia.ceph.com iface enp3s0f1... 2024-09-10T04:19:38.174 DEBUG:teuthology.orchestra.run.smithi151:> sudo ip addr add 10.0.15.151/16 dev enp3s0f1 2024-09-10T04:19:38.229 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-10T04:19:38.238 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:19:38.238 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch device ls --refresh' 2024-09-10T04:19:39.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:39 smithi151 bash[25273]: audit 2024-09-10T04:19:37.388007+0000 mgr.smithi120.xfjtcc (mgr.14205) 219 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:39.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:39 smithi151 bash[25273]: audit 2024-09-10T04:19:37.388007+0000 mgr.smithi120.xfjtcc (mgr.14205) 219 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:39.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:39 smithi151 bash[25273]: cluster 2024-09-10T04:19:37.399644+0000 mgr.smithi120.xfjtcc (mgr.14205) 220 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:39.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:39 smithi151 bash[25273]: cluster 2024-09-10T04:19:37.399644+0000 mgr.smithi120.xfjtcc (mgr.14205) 220 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:39.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:39 smithi120 bash[19947]: audit 2024-09-10T04:19:37.388007+0000 mgr.smithi120.xfjtcc (mgr.14205) 219 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:39.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:39 smithi120 bash[19947]: audit 2024-09-10T04:19:37.388007+0000 mgr.smithi120.xfjtcc (mgr.14205) 219 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:39.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:39 smithi120 bash[19947]: cluster 2024-09-10T04:19:37.399644+0000 mgr.smithi120.xfjtcc (mgr.14205) 220 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:39.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:39 smithi120 bash[19947]: cluster 2024-09-10T04:19:37.399644+0000 mgr.smithi120.xfjtcc (mgr.14205) 220 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:41.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:41 smithi151 bash[25273]: cluster 2024-09-10T04:19:39.400206+0000 mgr.smithi120.xfjtcc (mgr.14205) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:41.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:41 smithi151 bash[25273]: cluster 2024-09-10T04:19:39.400206+0000 mgr.smithi120.xfjtcc (mgr.14205) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:41.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:41 smithi120 bash[19947]: cluster 2024-09-10T04:19:39.400206+0000 mgr.smithi120.xfjtcc (mgr.14205) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:41.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:41 smithi120 bash[19947]: cluster 2024-09-10T04:19:39.400206+0000 mgr.smithi120.xfjtcc (mgr.14205) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:43.066 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:43.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:43 smithi151 bash[25273]: cluster 2024-09-10T04:19:41.400755+0000 mgr.smithi120.xfjtcc (mgr.14205) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:43.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:43 smithi151 bash[25273]: cluster 2024-09-10T04:19:41.400755+0000 mgr.smithi120.xfjtcc (mgr.14205) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:43.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:43 smithi120 bash[19947]: cluster 2024-09-10T04:19:41.400755+0000 mgr.smithi120.xfjtcc (mgr.14205) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:43.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:43 smithi120 bash[19947]: cluster 2024-09-10T04:19:41.400755+0000 mgr.smithi120.xfjtcc (mgr.14205) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:44.474 INFO:teuthology.orchestra.run.smithi120.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400XV400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme1n1 ssd Linux_c97f2b817277ea7591b8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme2n1 ssd Linux_0a3755113558249d0b7a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme3n1 ssd Linux_3d66f4bf1349f73f3726 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme4n1 ssd Linux_9c6d6df1f745e55473d2 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300JJ400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme1n1 ssd Linux_d878e9a532523eef89e8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme2n1 ssd Linux_7ed5e1b21ec5ab56ee88 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme3n1 ssd Linux_2062593e4d0942f0b17a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:44.476 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme4n1 ssd Linux_ee0a5ab323846e5e4542 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:19:45.147 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-10T04:19:45.157 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:19:45.157 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-10T04:19:45.168 INFO:teuthology.orchestra.run.smithi120.stderr:+ systemctl stop nfs-server 2024-09-10T04:19:45.277 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi151.front.sepia.ceph.com 2024-09-10T04:19:45.278 DEBUG:teuthology.orchestra.run.smithi151:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-10T04:19:45.292 INFO:teuthology.orchestra.run.smithi151.stderr:+ systemctl stop nfs-server 2024-09-10T04:19:45.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:45 smithi151 bash[25273]: cluster 2024-09-10T04:19:43.401328+0000 mgr.smithi120.xfjtcc (mgr.14205) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:45.394 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:45 smithi151 bash[25273]: cluster 2024-09-10T04:19:43.401328+0000 mgr.smithi120.xfjtcc (mgr.14205) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:45.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:45 smithi151 bash[25273]: audit 2024-09-10T04:19:44.475493+0000 mon.smithi120 (mon.0) 750 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:19:45.395 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:45 smithi151 bash[25273]: audit 2024-09-10T04:19:44.475493+0000 mon.smithi120 (mon.0) 750 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:19:45.405 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-10T04:19:45.416 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:19:45.416 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-10T04:19:45.427 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:45 smithi120 bash[19947]: cluster 2024-09-10T04:19:43.401328+0000 mgr.smithi120.xfjtcc (mgr.14205) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:45.427 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:45 smithi120 bash[19947]: cluster 2024-09-10T04:19:43.401328+0000 mgr.smithi120.xfjtcc (mgr.14205) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:45.427 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:45 smithi120 bash[19947]: audit 2024-09-10T04:19:44.475493+0000 mon.smithi120 (mon.0) 750 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:19:45.428 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:45 smithi120 bash[19947]: audit 2024-09-10T04:19:44.475493+0000 mon.smithi120 (mon.0) 750 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:19:46.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:46 smithi151 bash[25273]: audit 2024-09-10T04:19:44.466192+0000 mgr.smithi120.xfjtcc (mgr.14205) 224 : audit [DBG] from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:46.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:46 smithi151 bash[25273]: audit 2024-09-10T04:19:44.466192+0000 mgr.smithi120.xfjtcc (mgr.14205) 224 : audit [DBG] from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:46.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:46 smithi120 bash[19947]: audit 2024-09-10T04:19:44.466192+0000 mgr.smithi120.xfjtcc (mgr.14205) 224 : audit [DBG] from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:46.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:46 smithi120 bash[19947]: audit 2024-09-10T04:19:44.466192+0000 mgr.smithi120.xfjtcc (mgr.14205) 224 : audit [DBG] from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:47.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:47 smithi151 bash[25273]: cluster 2024-09-10T04:19:45.401930+0000 mgr.smithi120.xfjtcc (mgr.14205) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:47.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:47 smithi151 bash[25273]: cluster 2024-09-10T04:19:45.401930+0000 mgr.smithi120.xfjtcc (mgr.14205) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:47.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:47 smithi120 bash[19947]: cluster 2024-09-10T04:19:45.401930+0000 mgr.smithi120.xfjtcc (mgr.14205) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:47.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:47 smithi120 bash[19947]: cluster 2024-09-10T04:19:45.401930+0000 mgr.smithi120.xfjtcc (mgr.14205) 225 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:49.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:49 smithi151 bash[25273]: cluster 2024-09-10T04:19:47.402503+0000 mgr.smithi120.xfjtcc (mgr.14205) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:49.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:49 smithi151 bash[25273]: cluster 2024-09-10T04:19:47.402503+0000 mgr.smithi120.xfjtcc (mgr.14205) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:49.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:49 smithi151 bash[25273]: audit 2024-09-10T04:19:48.663893+0000 mon.smithi120 (mon.0) 751 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:49.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:49 smithi151 bash[25273]: audit 2024-09-10T04:19:48.663893+0000 mon.smithi120 (mon.0) 751 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:49.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:49 smithi120 bash[19947]: cluster 2024-09-10T04:19:47.402503+0000 mgr.smithi120.xfjtcc (mgr.14205) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:49.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:49 smithi120 bash[19947]: cluster 2024-09-10T04:19:47.402503+0000 mgr.smithi120.xfjtcc (mgr.14205) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:49.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:49 smithi120 bash[19947]: audit 2024-09-10T04:19:48.663893+0000 mon.smithi120 (mon.0) 751 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:49.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:49 smithi120 bash[19947]: audit 2024-09-10T04:19:48.663893+0000 mon.smithi120 (mon.0) 751 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:19:49.570 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:51.076 INFO:teuthology.orchestra.run.smithi120.stdout:Scheduled rgw.foorgw update... 2024-09-10T04:19:51.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: cluster 2024-09-10T04:19:49.403181+0000 mgr.smithi120.xfjtcc (mgr.14205) 227 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: cluster 2024-09-10T04:19:49.403181+0000 mgr.smithi120.xfjtcc (mgr.14205) 227 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.023109+0000 mon.smithi120 (mon.0) 752 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.023109+0000 mon.smithi120 (mon.0) 752 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.027786+0000 mon.smithi120 (mon.0) 753 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.027786+0000 mon.smithi120 (mon.0) 753 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.427011+0000 mon.smithi120 (mon.0) 754 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.427011+0000 mon.smithi120 (mon.0) 754 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.432186+0000 mon.smithi120 (mon.0) 755 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.432186+0000 mon.smithi120 (mon.0) 755 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.488696+0000 mon.smithi120 (mon.0) 756 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.488696+0000 mon.smithi120 (mon.0) 756 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.496916+0000 mon.smithi120 (mon.0) 757 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.496916+0000 mon.smithi120 (mon.0) 757 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.914523+0000 mon.smithi120 (mon.0) 758 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.914523+0000 mon.smithi120 (mon.0) 758 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.921023+0000 mon.smithi120 (mon.0) 759 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.283 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:51 smithi120 bash[19947]: audit 2024-09-10T04:19:50.921023+0000 mon.smithi120 (mon.0) 759 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: cluster 2024-09-10T04:19:49.403181+0000 mgr.smithi120.xfjtcc (mgr.14205) 227 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:51.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: cluster 2024-09-10T04:19:49.403181+0000 mgr.smithi120.xfjtcc (mgr.14205) 227 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:51.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.023109+0000 mon.smithi120 (mon.0) 752 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.023109+0000 mon.smithi120 (mon.0) 752 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.027786+0000 mon.smithi120 (mon.0) 753 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.027786+0000 mon.smithi120 (mon.0) 753 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.427011+0000 mon.smithi120 (mon.0) 754 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.427011+0000 mon.smithi120 (mon.0) 754 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.432186+0000 mon.smithi120 (mon.0) 755 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.432186+0000 mon.smithi120 (mon.0) 755 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.488696+0000 mon.smithi120 (mon.0) 756 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.488696+0000 mon.smithi120 (mon.0) 756 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.496916+0000 mon.smithi120 (mon.0) 757 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.496916+0000 mon.smithi120 (mon.0) 757 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.914523+0000 mon.smithi120 (mon.0) 758 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.914523+0000 mon.smithi120 (mon.0) 758 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.921023+0000 mon.smithi120 (mon.0) 759 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:51 smithi151 bash[25273]: audit 2024-09-10T04:19:50.921023+0000 mon.smithi120 (mon.0) 759 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:51.728 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.120/16' 2024-09-10T04:19:52.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:52 smithi151 bash[25273]: audit 2024-09-10T04:19:51.068734+0000 mgr.smithi120.xfjtcc (mgr.14205) 228 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:52.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:52 smithi151 bash[25273]: audit 2024-09-10T04:19:51.068734+0000 mgr.smithi120.xfjtcc (mgr.14205) 228 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:52.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:52 smithi151 bash[25273]: cephadm 2024-09-10T04:19:51.071770+0000 mgr.smithi120.xfjtcc (mgr.14205) 229 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-10T04:19:52.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:52 smithi151 bash[25273]: cephadm 2024-09-10T04:19:51.071770+0000 mgr.smithi120.xfjtcc (mgr.14205) 229 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-10T04:19:52.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:52 smithi151 bash[25273]: audit 2024-09-10T04:19:51.076650+0000 mon.smithi120 (mon.0) 760 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:52.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:52 smithi151 bash[25273]: audit 2024-09-10T04:19:51.076650+0000 mon.smithi120 (mon.0) 760 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:52.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:52 smithi120 bash[19947]: audit 2024-09-10T04:19:51.068734+0000 mgr.smithi120.xfjtcc (mgr.14205) 228 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:52.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:52 smithi120 bash[19947]: audit 2024-09-10T04:19:51.068734+0000 mgr.smithi120.xfjtcc (mgr.14205) 228 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:52.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:52 smithi120 bash[19947]: cephadm 2024-09-10T04:19:51.071770+0000 mgr.smithi120.xfjtcc (mgr.14205) 229 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-10T04:19:52.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:52 smithi120 bash[19947]: cephadm 2024-09-10T04:19:51.071770+0000 mgr.smithi120.xfjtcc (mgr.14205) 229 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-10T04:19:52.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:52 smithi120 bash[19947]: audit 2024-09-10T04:19:51.076650+0000 mon.smithi120 (mon.0) 760 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:52.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:52 smithi120 bash[19947]: audit 2024-09-10T04:19:51.076650+0000 mon.smithi120 (mon.0) 760 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:19:53.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:53 smithi151 bash[25273]: cluster 2024-09-10T04:19:51.403531+0000 mgr.smithi120.xfjtcc (mgr.14205) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:53.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:53 smithi151 bash[25273]: cluster 2024-09-10T04:19:51.403531+0000 mgr.smithi120.xfjtcc (mgr.14205) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:53.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:53 smithi120 bash[19947]: cluster 2024-09-10T04:19:51.403531+0000 mgr.smithi120.xfjtcc (mgr.14205) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:53.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:53 smithi120 bash[19947]: cluster 2024-09-10T04:19:51.403531+0000 mgr.smithi120.xfjtcc (mgr.14205) 230 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:55.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:55 smithi151 bash[25273]: cluster 2024-09-10T04:19:53.404077+0000 mgr.smithi120.xfjtcc (mgr.14205) 231 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:55.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:55 smithi151 bash[25273]: cluster 2024-09-10T04:19:53.404077+0000 mgr.smithi120.xfjtcc (mgr.14205) 231 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:55.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:55 smithi120 bash[19947]: cluster 2024-09-10T04:19:53.404077+0000 mgr.smithi120.xfjtcc (mgr.14205) 231 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:55.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:55 smithi120 bash[19947]: cluster 2024-09-10T04:19:53.404077+0000 mgr.smithi120.xfjtcc (mgr.14205) 231 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:55.987 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:19:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:57 smithi151 bash[25273]: cluster 2024-09-10T04:19:55.404630+0000 mgr.smithi120.xfjtcc (mgr.14205) 232 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:57 smithi151 bash[25273]: cluster 2024-09-10T04:19:55.404630+0000 mgr.smithi120.xfjtcc (mgr.14205) 232 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:57.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:57 smithi120 bash[19947]: cluster 2024-09-10T04:19:55.404630+0000 mgr.smithi120.xfjtcc (mgr.14205) 232 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:57.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:57 smithi120 bash[19947]: cluster 2024-09-10T04:19:55.404630+0000 mgr.smithi120.xfjtcc (mgr.14205) 232 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:58.406 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:58 smithi151 bash[25273]: audit 2024-09-10T04:19:58.083741+0000 mon.smithi120 (mon.0) 761 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-10T04:19:58.406 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:58 smithi151 bash[25273]: audit 2024-09-10T04:19:58.083741+0000 mon.smithi120 (mon.0) 761 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-10T04:19:58.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:58 smithi120 bash[19947]: audit 2024-09-10T04:19:58.083741+0000 mon.smithi120 (mon.0) 761 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-10T04:19:58.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:58 smithi120 bash[19947]: audit 2024-09-10T04:19:58.083741+0000 mon.smithi120 (mon.0) 761 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-10T04:19:59.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: cluster 2024-09-10T04:19:57.405228+0000 mgr.smithi120.xfjtcc (mgr.14205) 233 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:59.472 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: cluster 2024-09-10T04:19:57.405228+0000 mgr.smithi120.xfjtcc (mgr.14205) 233 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:59.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: audit 2024-09-10T04:19:58.080888+0000 mgr.smithi120.xfjtcc (mgr.14205) 234 : audit [DBG] from='client.14524 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.120/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:59.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: audit 2024-09-10T04:19:58.080888+0000 mgr.smithi120.xfjtcc (mgr.14205) 234 : audit [DBG] from='client.14524 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.120/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:59.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: audit 2024-09-10T04:19:58.103300+0000 mon.smithi120 (mon.0) 762 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-10T04:19:59.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: audit 2024-09-10T04:19:58.103300+0000 mon.smithi120 (mon.0) 762 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-10T04:19:59.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: cluster 2024-09-10T04:19:58.108350+0000 mon.smithi120 (mon.0) 763 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-10T04:19:59.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: cluster 2024-09-10T04:19:58.108350+0000 mon.smithi120 (mon.0) 763 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-10T04:19:59.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: audit 2024-09-10T04:19:58.109509+0000 mon.smithi120 (mon.0) 764 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-10T04:19:59.473 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:19:59 smithi120 bash[19947]: audit 2024-09-10T04:19:58.109509+0000 mon.smithi120 (mon.0) 764 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: cluster 2024-09-10T04:19:57.405228+0000 mgr.smithi120.xfjtcc (mgr.14205) 233 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: cluster 2024-09-10T04:19:57.405228+0000 mgr.smithi120.xfjtcc (mgr.14205) 233 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: audit 2024-09-10T04:19:58.080888+0000 mgr.smithi120.xfjtcc (mgr.14205) 234 : audit [DBG] from='client.14524 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.120/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: audit 2024-09-10T04:19:58.080888+0000 mgr.smithi120.xfjtcc (mgr.14205) 234 : audit [DBG] from='client.14524 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.120/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: audit 2024-09-10T04:19:58.103300+0000 mon.smithi120 (mon.0) 762 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: audit 2024-09-10T04:19:58.103300+0000 mon.smithi120 (mon.0) 762 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: cluster 2024-09-10T04:19:58.108350+0000 mon.smithi120 (mon.0) 763 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: cluster 2024-09-10T04:19:58.108350+0000 mon.smithi120 (mon.0) 763 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-10T04:19:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: audit 2024-09-10T04:19:58.109509+0000 mon.smithi120 (mon.0) 764 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-10T04:19:59.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:19:59 smithi151 bash[25273]: audit 2024-09-10T04:19:58.109509+0000 mon.smithi120 (mon.0) 764 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-10T04:20:00.105 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-10T04:20:00.114 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:20:00.114 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-10T04:20:00.126 INFO:teuthology.orchestra.run.smithi120.stderr:+ dnf install -y python3-boto3 2024-09-10T04:20:00.126 INFO:teuthology.orchestra.run.smithi120.stderr:bash: line 1: dnf: command not found 2024-09-10T04:20:00.126 INFO:teuthology.orchestra.run.smithi120.stderr:+ apt install -y python3-boto3 2024-09-10T04:20:00.129 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-09-10T04:20:00.129 INFO:teuthology.orchestra.run.smithi120.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-09-10T04:20:00.130 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-09-10T04:20:00.178 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-09-10T04:20:00.376 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: audit 2024-09-10T04:19:59.106212+0000 mon.smithi120 (mon.0) 765 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: audit 2024-09-10T04:19:59.106212+0000 mon.smithi120 (mon.0) 765 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: cluster 2024-09-10T04:19:59.115118+0000 mon.smithi120 (mon.0) 766 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: cluster 2024-09-10T04:19:59.115118+0000 mon.smithi120 (mon.0) 766 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: audit 2024-09-10T04:19:59.161623+0000 mon.smithi120 (mon.0) 767 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: audit 2024-09-10T04:19:59.161623+0000 mon.smithi120 (mon.0) 767 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: audit 2024-09-10T04:19:59.167168+0000 mon.smithi120 (mon.0) 768 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: audit 2024-09-10T04:19:59.167168+0000 mon.smithi120 (mon.0) 768 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: cluster 2024-09-10T04:20:00.000172+0000 mon.smithi120 (mon.0) 769 : cluster [INF] overall HEALTH_OK 2024-09-10T04:20:00.377 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:00 smithi151 bash[25273]: cluster 2024-09-10T04:20:00.000172+0000 mon.smithi120 (mon.0) 769 : cluster [INF] overall HEALTH_OK 2024-09-10T04:20:00.414 INFO:teuthology.orchestra.run.smithi120.stdout:Building dependency tree... 2024-09-10T04:20:00.415 INFO:teuthology.orchestra.run.smithi120.stdout:Reading state information... 2024-09-10T04:20:00.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: audit 2024-09-10T04:19:59.106212+0000 mon.smithi120 (mon.0) 765 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-10T04:20:00.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: audit 2024-09-10T04:19:59.106212+0000 mon.smithi120 (mon.0) 765 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-10T04:20:00.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: cluster 2024-09-10T04:19:59.115118+0000 mon.smithi120 (mon.0) 766 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-10T04:20:00.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: cluster 2024-09-10T04:19:59.115118+0000 mon.smithi120 (mon.0) 766 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-10T04:20:00.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: audit 2024-09-10T04:19:59.161623+0000 mon.smithi120 (mon.0) 767 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:00.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: audit 2024-09-10T04:19:59.161623+0000 mon.smithi120 (mon.0) 767 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: audit 2024-09-10T04:19:59.167168+0000 mon.smithi120 (mon.0) 768 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: audit 2024-09-10T04:19:59.167168+0000 mon.smithi120 (mon.0) 768 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: cluster 2024-09-10T04:20:00.000172+0000 mon.smithi120 (mon.0) 769 : cluster [INF] overall HEALTH_OK 2024-09-10T04:20:00.532 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:00 smithi120 bash[19947]: cluster 2024-09-10T04:20:00.000172+0000 mon.smithi120 (mon.0) 769 : cluster [INF] overall HEALTH_OK 2024-09-10T04:20:00.631 INFO:teuthology.orchestra.run.smithi120.stdout:The following packages were automatically installed and are no longer required: 2024-09-10T04:20:00.631 INFO:teuthology.orchestra.run.smithi120.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-10T04:20:00.631 INFO:teuthology.orchestra.run.smithi120.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-10T04:20:00.632 INFO:teuthology.orchestra.run.smithi120.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-10T04:20:00.632 INFO:teuthology.orchestra.run.smithi120.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-10T04:20:00.632 INFO:teuthology.orchestra.run.smithi120.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-10T04:20:00.632 INFO:teuthology.orchestra.run.smithi120.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-10T04:20:00.634 INFO:teuthology.orchestra.run.smithi120.stdout:The following additional packages will be installed: 2024-09-10T04:20:00.634 INFO:teuthology.orchestra.run.smithi120.stdout: python3-botocore python3-certifi python3-idna python3-jmespath 2024-09-10T04:20:00.634 INFO:teuthology.orchestra.run.smithi120.stdout: python3-requests python3-s3transfer python3-urllib3 2024-09-10T04:20:00.636 INFO:teuthology.orchestra.run.smithi120.stdout:Suggested packages: 2024-09-10T04:20:00.636 INFO:teuthology.orchestra.run.smithi120.stdout: python3-openssl python3-socks python-requests-doc 2024-09-10T04:20:00.665 INFO:teuthology.orchestra.run.smithi120.stdout:The following NEW packages will be installed: 2024-09-10T04:20:00.665 INFO:teuthology.orchestra.run.smithi120.stdout: python3-boto3 python3-botocore python3-certifi python3-idna python3-jmespath 2024-09-10T04:20:00.665 INFO:teuthology.orchestra.run.smithi120.stdout: python3-requests python3-s3transfer python3-urllib3 2024-09-10T04:20:00.845 INFO:teuthology.orchestra.run.smithi120.stdout:0 upgraded, 8 newly installed, 0 to remove and 331 not upgraded. 2024-09-10T04:20:00.845 INFO:teuthology.orchestra.run.smithi120.stdout:Need to get 4,999 kB of archives. 2024-09-10T04:20:00.845 INFO:teuthology.orchestra.run.smithi120.stdout:After this operation, 66.9 MB of additional disk space will be used. 2024-09-10T04:20:00.845 INFO:teuthology.orchestra.run.smithi120.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jmespath all 0.10.0-1 [21.7 kB] 2024-09-10T04:20:01.016 INFO:teuthology.orchestra.run.smithi120.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-10T04:20:01.190 INFO:teuthology.orchestra.run.smithi120.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-10T04:20:01.290 INFO:teuthology.orchestra.run.smithi120.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-10T04:20:01.310 INFO:teuthology.orchestra.run.smithi120.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-10T04:20:01.326 INFO:teuthology.orchestra.run.smithi120.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-botocore all 1.23.34+repack-1 [4,508 kB] 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cephadm 2024-09-10T04:19:59.157722+0000 mgr.smithi120.xfjtcc (mgr.14205) 235 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cephadm 2024-09-10T04:19:59.157722+0000 mgr.smithi120.xfjtcc (mgr.14205) 235 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cephadm 2024-09-10T04:19:59.163817+0000 mgr.smithi120.xfjtcc (mgr.14205) 236 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cephadm 2024-09-10T04:19:59.163817+0000 mgr.smithi120.xfjtcc (mgr.14205) 236 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cluster 2024-09-10T04:19:59.405839+0000 mgr.smithi120.xfjtcc (mgr.14205) 237 : cluster [DBG] pgmap v193: 33 pgs: 4 creating+peering, 1 active+clean, 28 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cluster 2024-09-10T04:19:59.405839+0000 mgr.smithi120.xfjtcc (mgr.14205) 237 : cluster [DBG] pgmap v193: 33 pgs: 4 creating+peering, 1 active+clean, 28 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cluster 2024-09-10T04:20:00.125174+0000 mon.smithi120 (mon.0) 770 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cluster 2024-09-10T04:20:00.125174+0000 mon.smithi120 (mon.0) 770 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cluster 2024-09-10T04:20:00.180156+0000 mon.smithi120 (mon.0) 771 : cluster [DBG] mgrmap e21: smithi120.xfjtcc(active, since 5m), standbys: smithi151.abmuzj 2024-09-10T04:20:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:01 smithi151 bash[25273]: cluster 2024-09-10T04:20:00.180156+0000 mon.smithi120 (mon.0) 771 : cluster [DBG] mgrmap e21: smithi120.xfjtcc(active, since 5m), standbys: smithi151.abmuzj 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cephadm 2024-09-10T04:19:59.157722+0000 mgr.smithi120.xfjtcc (mgr.14205) 235 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cephadm 2024-09-10T04:19:59.157722+0000 mgr.smithi120.xfjtcc (mgr.14205) 235 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cephadm 2024-09-10T04:19:59.163817+0000 mgr.smithi120.xfjtcc (mgr.14205) 236 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cephadm 2024-09-10T04:19:59.163817+0000 mgr.smithi120.xfjtcc (mgr.14205) 236 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cluster 2024-09-10T04:19:59.405839+0000 mgr.smithi120.xfjtcc (mgr.14205) 237 : cluster [DBG] pgmap v193: 33 pgs: 4 creating+peering, 1 active+clean, 28 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cluster 2024-09-10T04:19:59.405839+0000 mgr.smithi120.xfjtcc (mgr.14205) 237 : cluster [DBG] pgmap v193: 33 pgs: 4 creating+peering, 1 active+clean, 28 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cluster 2024-09-10T04:20:00.125174+0000 mon.smithi120 (mon.0) 770 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cluster 2024-09-10T04:20:00.125174+0000 mon.smithi120 (mon.0) 770 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cluster 2024-09-10T04:20:00.180156+0000 mon.smithi120 (mon.0) 771 : cluster [DBG] mgrmap e21: smithi120.xfjtcc(active, since 5m), standbys: smithi151.abmuzj 2024-09-10T04:20:01.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:01 smithi120 bash[19947]: cluster 2024-09-10T04:20:00.180156+0000 mon.smithi120 (mon.0) 771 : cluster [DBG] mgrmap e21: smithi120.xfjtcc(active, since 5m), standbys: smithi151.abmuzj 2024-09-10T04:20:01.630 INFO:teuthology.orchestra.run.smithi120.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-s3transfer all 0.5.0-1 [51.5 kB] 2024-09-10T04:20:01.631 INFO:teuthology.orchestra.run.smithi120.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-boto3 all 1.20.34+dfsg-1 [68.0 kB] 2024-09-10T04:20:01.929 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: unable to initialize frontend: Dialog 2024-09-10T04:20:01.930 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-09-10T04:20:01.930 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: falling back to frontend: Readline 2024-09-10T04:20:01.941 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: unable to initialize frontend: Readline 2024-09-10T04:20:01.941 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: (This frontend requires a controlling tty.) 2024-09-10T04:20:01.941 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: falling back to frontend: Teletype 2024-09-10T04:20:01.944 INFO:teuthology.orchestra.run.smithi120.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-09-10T04:20:01.981 INFO:teuthology.orchestra.run.smithi120.stdout:Fetched 4,999 kB in 1s (5,211 kB/s) 2024-09-10T04:20:02.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:02 smithi151 bash[25273]: audit 2024-09-10T04:20:01.149654+0000 mon.smithi120 (mon.0) 772 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:02.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:02 smithi151 bash[25273]: audit 2024-09-10T04:20:01.149654+0000 mon.smithi120 (mon.0) 772 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:02.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:02 smithi151 bash[25273]: audit 2024-09-10T04:20:01.155713+0000 mon.smithi120 (mon.0) 773 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:02.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:02 smithi151 bash[25273]: audit 2024-09-10T04:20:01.155713+0000 mon.smithi120 (mon.0) 773 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:02.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:02 smithi151 bash[25273]: cluster 2024-09-10T04:20:01.406335+0000 mgr.smithi120.xfjtcc (mgr.14205) 238 : cluster [DBG] pgmap v195: 33 pgs: 4 creating+peering, 22 active+clean, 7 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:02.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:02 smithi151 bash[25273]: cluster 2024-09-10T04:20:01.406335+0000 mgr.smithi120.xfjtcc (mgr.14205) 238 : cluster [DBG] pgmap v195: 33 pgs: 4 creating+peering, 22 active+clean, 7 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:02.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:02 smithi120 bash[19947]: audit 2024-09-10T04:20:01.149654+0000 mon.smithi120 (mon.0) 772 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:02.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:02 smithi120 bash[19947]: audit 2024-09-10T04:20:01.149654+0000 mon.smithi120 (mon.0) 772 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:02.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:02 smithi120 bash[19947]: audit 2024-09-10T04:20:01.155713+0000 mon.smithi120 (mon.0) 773 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:02.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:02 smithi120 bash[19947]: audit 2024-09-10T04:20:01.155713+0000 mon.smithi120 (mon.0) 773 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:02.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:02 smithi120 bash[19947]: cluster 2024-09-10T04:20:01.406335+0000 mgr.smithi120.xfjtcc (mgr.14205) 238 : cluster [DBG] pgmap v195: 33 pgs: 4 creating+peering, 22 active+clean, 7 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:02.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:02 smithi120 bash[19947]: cluster 2024-09-10T04:20:01.406335+0000 mgr.smithi120.xfjtcc (mgr.14205) 238 : cluster [DBG] pgmap v195: 33 pgs: 4 creating+peering, 22 active+clean, 7 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:02.614 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-jmespath. 2024-09-10T04:20:02.722 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 ... 165988 files and directories currently installed.) 2024-09-10T04:20:02.727 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../0-python3-jmespath_0.10.0-1_all.deb ... 2024-09-10T04:20:02.780 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-jmespath (0.10.0-1) ... 2024-09-10T04:20:03.050 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-urllib3. 2024-09-10T04:20:03.077 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../1-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-10T04:20:03.117 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-10T04:20:03.446 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-certifi. 2024-09-10T04:20:03.472 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../2-python3-certifi_2020.6.20-1_all.deb ... 2024-09-10T04:20:03.512 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-10T04:20:03.841 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-idna. 2024-09-10T04:20:03.868 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../3-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-10T04:20:03.907 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-10T04:20:03.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.696681+0000 mon.smithi120 (mon.0) 774 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:03.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.696681+0000 mon.smithi120 (mon.0) 774 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.706446+0000 mon.smithi120 (mon.0) 775 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.706446+0000 mon.smithi120 (mon.0) 775 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.708855+0000 mon.smithi120 (mon.0) 776 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.708855+0000 mon.smithi120 (mon.0) 776 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.709967+0000 mon.smithi120 (mon.0) 777 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.709967+0000 mon.smithi120 (mon.0) 777 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.718502+0000 mon.smithi120 (mon.0) 778 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.718502+0000 mon.smithi120 (mon.0) 778 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.722666+0000 mon.smithi120 (mon.0) 779 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:20:03.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.722666+0000 mon.smithi120 (mon.0) 779 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.737906+0000 mon.smithi120 (mon.0) 780 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi151.ceqvga", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.737906+0000 mon.smithi120 (mon.0) 780 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi151.ceqvga", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.740923+0000 mon.smithi120 (mon.0) 781 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi151.ceqvga", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.740923+0000 mon.smithi120 (mon.0) 781 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi151.ceqvga", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.750992+0000 mon.smithi120 (mon.0) 782 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.750992+0000 mon.smithi120 (mon.0) 782 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.754540+0000 mon.smithi120 (mon.0) 783 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:02.754540+0000 mon.smithi120 (mon.0) 783 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: cephadm 2024-09-10T04:20:02.755990+0000 mgr.smithi120.xfjtcc (mgr.14205) 239 : cephadm [INF] Deploying daemon rgw.foorgw.smithi151.ceqvga on smithi151 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: cephadm 2024-09-10T04:20:02.755990+0000 mgr.smithi120.xfjtcc (mgr.14205) 239 : cephadm [INF] Deploying daemon rgw.foorgw.smithi151.ceqvga on smithi151 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:03.664422+0000 mon.smithi120 (mon.0) 784 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:03.987 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:03 smithi151 bash[25273]: audit 2024-09-10T04:20:03.664422+0000 mon.smithi120 (mon.0) 784 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:04.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.696681+0000 mon.smithi120 (mon.0) 774 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.696681+0000 mon.smithi120 (mon.0) 774 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.706446+0000 mon.smithi120 (mon.0) 775 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.706446+0000 mon.smithi120 (mon.0) 775 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.708855+0000 mon.smithi120 (mon.0) 776 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.708855+0000 mon.smithi120 (mon.0) 776 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.709967+0000 mon.smithi120 (mon.0) 777 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.709967+0000 mon.smithi120 (mon.0) 777 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.718502+0000 mon.smithi120 (mon.0) 778 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.718502+0000 mon.smithi120 (mon.0) 778 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.722666+0000 mon.smithi120 (mon.0) 779 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:20:04.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.722666+0000 mon.smithi120 (mon.0) 779 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.737906+0000 mon.smithi120 (mon.0) 780 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi151.ceqvga", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.737906+0000 mon.smithi120 (mon.0) 780 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi151.ceqvga", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.740923+0000 mon.smithi120 (mon.0) 781 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi151.ceqvga", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.740923+0000 mon.smithi120 (mon.0) 781 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi151.ceqvga", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.750992+0000 mon.smithi120 (mon.0) 782 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.750992+0000 mon.smithi120 (mon.0) 782 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.754540+0000 mon.smithi120 (mon.0) 783 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:02.754540+0000 mon.smithi120 (mon.0) 783 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: cephadm 2024-09-10T04:20:02.755990+0000 mgr.smithi120.xfjtcc (mgr.14205) 239 : cephadm [INF] Deploying daemon rgw.foorgw.smithi151.ceqvga on smithi151 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: cephadm 2024-09-10T04:20:02.755990+0000 mgr.smithi120.xfjtcc (mgr.14205) 239 : cephadm [INF] Deploying daemon rgw.foorgw.smithi151.ceqvga on smithi151 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:03.664422+0000 mon.smithi120 (mon.0) 784 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:04.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:03 smithi120 bash[19947]: audit 2024-09-10T04:20:03.664422+0000 mon.smithi120 (mon.0) 784 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:04.202 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-requests. 2024-09-10T04:20:04.229 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../4-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-10T04:20:04.277 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-10T04:20:04.589 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-botocore. 2024-09-10T04:20:04.604 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../5-python3-botocore_1.23.34+repack-1_all.deb ... 2024-09-10T04:20:04.647 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-botocore (1.23.34+repack-1) ... 2024-09-10T04:20:04.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:04 smithi151 bash[25273]: cluster 2024-09-10T04:20:03.407004+0000 mgr.smithi120.xfjtcc (mgr.14205) 240 : cluster [DBG] pgmap v196: 33 pgs: 33 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:04.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:04 smithi151 bash[25273]: cluster 2024-09-10T04:20:03.407004+0000 mgr.smithi120.xfjtcc (mgr.14205) 240 : cluster [DBG] pgmap v196: 33 pgs: 33 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:05.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:04 smithi120 bash[19947]: cluster 2024-09-10T04:20:03.407004+0000 mgr.smithi120.xfjtcc (mgr.14205) 240 : cluster [DBG] pgmap v196: 33 pgs: 33 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:05.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:04 smithi120 bash[19947]: cluster 2024-09-10T04:20:03.407004+0000 mgr.smithi120.xfjtcc (mgr.14205) 240 : cluster [DBG] pgmap v196: 33 pgs: 33 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:05.441 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:05 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:05.734 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:05 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:06.012 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-s3transfer. 2024-09-10T04:20:06.038 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../6-python3-s3transfer_0.5.0-1_all.deb ... 2024-09-10T04:20:06.078 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-s3transfer (0.5.0-1) ... 2024-09-10T04:20:06.609 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-boto3. 2024-09-10T04:20:06.636 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../7-python3-boto3_1.20.34+dfsg-1_all.deb ... 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: cluster 2024-09-10T04:20:05.407669+0000 mgr.smithi120.xfjtcc (mgr.14205) 241 : cluster [DBG] pgmap v197: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: cluster 2024-09-10T04:20:05.407669+0000 mgr.smithi120.xfjtcc (mgr.14205) 241 : cluster [DBG] pgmap v197: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.724536+0000 mon.smithi120 (mon.0) 785 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.724536+0000 mon.smithi120 (mon.0) 785 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.731686+0000 mon.smithi120 (mon.0) 786 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.731686+0000 mon.smithi120 (mon.0) 786 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.736930+0000 mon.smithi120 (mon.0) 787 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.736930+0000 mon.smithi120 (mon.0) 787 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:06.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.738193+0000 mon.smithi120 (mon.0) 788 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.clyuzb", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.738193+0000 mon.smithi120 (mon.0) 788 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.clyuzb", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.740557+0000 mon.smithi120 (mon.0) 789 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.clyuzb", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.740557+0000 mon.smithi120 (mon.0) 789 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.clyuzb", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.745931+0000 mon.smithi120 (mon.0) 790 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.745931+0000 mon.smithi120 (mon.0) 790 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.748173+0000 mon.smithi120 (mon.0) 791 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: audit 2024-09-10T04:20:05.748173+0000 mon.smithi120 (mon.0) 791 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: cephadm 2024-09-10T04:20:05.750170+0000 mgr.smithi120.xfjtcc (mgr.14205) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi120.clyuzb on smithi120 2024-09-10T04:20:06.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:06 smithi151 bash[25273]: cephadm 2024-09-10T04:20:05.750170+0000 mgr.smithi120.xfjtcc (mgr.14205) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi120.clyuzb on smithi120 2024-09-10T04:20:07.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: cluster 2024-09-10T04:20:05.407669+0000 mgr.smithi120.xfjtcc (mgr.14205) 241 : cluster [DBG] pgmap v197: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: cluster 2024-09-10T04:20:05.407669+0000 mgr.smithi120.xfjtcc (mgr.14205) 241 : cluster [DBG] pgmap v197: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.724536+0000 mon.smithi120 (mon.0) 785 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.724536+0000 mon.smithi120 (mon.0) 785 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.731686+0000 mon.smithi120 (mon.0) 786 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.731686+0000 mon.smithi120 (mon.0) 786 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.736930+0000 mon.smithi120 (mon.0) 787 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.736930+0000 mon.smithi120 (mon.0) 787 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.738193+0000 mon.smithi120 (mon.0) 788 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.clyuzb", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.738193+0000 mon.smithi120 (mon.0) 788 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.clyuzb", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.740557+0000 mon.smithi120 (mon.0) 789 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.clyuzb", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.740557+0000 mon.smithi120 (mon.0) 789 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.clyuzb", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.745931+0000 mon.smithi120 (mon.0) 790 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:07.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.745931+0000 mon.smithi120 (mon.0) 790 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.748173+0000 mon.smithi120 (mon.0) 791 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: audit 2024-09-10T04:20:05.748173+0000 mon.smithi120 (mon.0) 791 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: cephadm 2024-09-10T04:20:05.750170+0000 mgr.smithi120.xfjtcc (mgr.14205) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi120.clyuzb on smithi120 2024-09-10T04:20:07.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:06 smithi120 bash[19947]: cephadm 2024-09-10T04:20:05.750170+0000 mgr.smithi120.xfjtcc (mgr.14205) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi120.clyuzb on smithi120 2024-09-10T04:20:07.118 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-boto3 (1.20.34+dfsg-1) ... 2024-09-10T04:20:08.155 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-10T04:20:08.447 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-jmespath (0.10.0-1) ... 2024-09-10T04:20:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:08 smithi120 bash[19947]: cluster 2024-09-10T04:20:07.408353+0000 mgr.smithi120.xfjtcc (mgr.14205) 243 : cluster [DBG] pgmap v198: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:08 smithi120 bash[19947]: cluster 2024-09-10T04:20:07.408353+0000 mgr.smithi120.xfjtcc (mgr.14205) 243 : cluster [DBG] pgmap v198: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:08 smithi120 bash[19947]: cluster 2024-09-10T04:20:07.739029+0000 mon.smithi120 (mon.0) 792 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-10T04:20:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:08 smithi120 bash[19947]: cluster 2024-09-10T04:20:07.739029+0000 mon.smithi120 (mon.0) 792 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-10T04:20:09.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:08 smithi120 bash[19947]: audit 2024-09-10T04:20:07.742939+0000 mon.smithi151 (mon.1) 21 : audit [INF] from='client.? 172.21.15.151:0/172296476' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-10T04:20:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:08 smithi120 bash[19947]: audit 2024-09-10T04:20:07.742939+0000 mon.smithi151 (mon.1) 21 : audit [INF] from='client.? 172.21.15.151:0/172296476' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-10T04:20:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:08 smithi120 bash[19947]: audit 2024-09-10T04:20:07.744819+0000 mon.smithi120 (mon.0) 793 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-10T04:20:09.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:08 smithi120 bash[19947]: audit 2024-09-10T04:20:07.744819+0000 mon.smithi120 (mon.0) 793 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-10T04:20:09.039 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:08 smithi151 bash[25273]: cluster 2024-09-10T04:20:07.408353+0000 mgr.smithi120.xfjtcc (mgr.14205) 243 : cluster [DBG] pgmap v198: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:09.039 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:08 smithi151 bash[25273]: cluster 2024-09-10T04:20:07.408353+0000 mgr.smithi120.xfjtcc (mgr.14205) 243 : cluster [DBG] pgmap v198: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:20:09.039 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:08 smithi151 bash[25273]: cluster 2024-09-10T04:20:07.739029+0000 mon.smithi120 (mon.0) 792 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-10T04:20:09.039 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:08 smithi151 bash[25273]: cluster 2024-09-10T04:20:07.739029+0000 mon.smithi120 (mon.0) 792 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-10T04:20:09.039 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:08 smithi151 bash[25273]: audit 2024-09-10T04:20:07.742939+0000 mon.smithi151 (mon.1) 21 : audit [INF] from='client.? 172.21.15.151:0/172296476' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-10T04:20:09.040 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:08 smithi151 bash[25273]: audit 2024-09-10T04:20:07.742939+0000 mon.smithi151 (mon.1) 21 : audit [INF] from='client.? 172.21.15.151:0/172296476' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-10T04:20:09.040 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:08 smithi151 bash[25273]: audit 2024-09-10T04:20:07.744819+0000 mon.smithi120 (mon.0) 793 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-10T04:20:09.040 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:08 smithi151 bash[25273]: audit 2024-09-10T04:20:07.744819+0000 mon.smithi120 (mon.0) 793 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-10T04:20:09.267 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-10T04:20:09.681 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-10T04:20:09.765 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:09 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:09.958 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-10T04:20:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:09 smithi120 bash[19947]: audit 2024-09-10T04:20:08.737103+0000 mon.smithi120 (mon.0) 794 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-10T04:20:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:09 smithi120 bash[19947]: audit 2024-09-10T04:20:08.737103+0000 mon.smithi120 (mon.0) 794 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-10T04:20:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:09 smithi120 bash[19947]: cluster 2024-09-10T04:20:08.744599+0000 mon.smithi120 (mon.0) 795 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-10T04:20:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:09 smithi120 bash[19947]: cluster 2024-09-10T04:20:08.744599+0000 mon.smithi120 (mon.0) 795 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-10T04:20:10.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:09 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:10.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:09 smithi151 bash[25273]: audit 2024-09-10T04:20:08.737103+0000 mon.smithi120 (mon.0) 794 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-10T04:20:10.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:09 smithi151 bash[25273]: audit 2024-09-10T04:20:08.737103+0000 mon.smithi120 (mon.0) 794 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-10T04:20:10.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:09 smithi151 bash[25273]: cluster 2024-09-10T04:20:08.744599+0000 mon.smithi120 (mon.0) 795 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-10T04:20:10.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:09 smithi151 bash[25273]: cluster 2024-09-10T04:20:08.744599+0000 mon.smithi120 (mon.0) 795 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-10T04:20:10.745 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-botocore (1.23.34+repack-1) ... 2024-09-10T04:20:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cluster 2024-09-10T04:20:09.408993+0000 mgr.smithi120.xfjtcc (mgr.14205) 244 : cluster [DBG] pgmap v201: 65 pgs: 4 creating+peering, 28 unknown, 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:20:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cluster 2024-09-10T04:20:09.408993+0000 mgr.smithi120.xfjtcc (mgr.14205) 244 : cluster [DBG] pgmap v201: 65 pgs: 4 creating+peering, 28 unknown, 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:20:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cluster 2024-09-10T04:20:09.769835+0000 mon.smithi120 (mon.0) 796 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-10T04:20:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cluster 2024-09-10T04:20:09.769835+0000 mon.smithi120 (mon.0) 796 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-10T04:20:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:09.782589+0000 mon.smithi151 (mon.1) 22 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-10T04:20:11.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:09.782589+0000 mon.smithi151 (mon.1) 22 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:09.786553+0000 mon.smithi120 (mon.0) 797 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:09.786553+0000 mon.smithi120 (mon.0) 797 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.075686+0000 mon.smithi120 (mon.0) 798 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.075686+0000 mon.smithi120 (mon.0) 798 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.082832+0000 mon.smithi120 (mon.0) 799 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.082832+0000 mon.smithi120 (mon.0) 799 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.089259+0000 mon.smithi120 (mon.0) 800 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.089259+0000 mon.smithi120 (mon.0) 800 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.090095+0000 mgr.smithi120.xfjtcc (mgr.14205) 245 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.090095+0000 mgr.smithi120.xfjtcc (mgr.14205) 245 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.094733+0000 mon.smithi120 (mon.0) 801 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.094733+0000 mon.smithi120 (mon.0) 801 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.099231+0000 mon.smithi120 (mon.0) 802 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.099231+0000 mon.smithi120 (mon.0) 802 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.104626+0000 mon.smithi120 (mon.0) 803 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.104626+0000 mon.smithi120 (mon.0) 803 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.105182+0000 mgr.smithi120.xfjtcc (mgr.14205) 246 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.esovlx 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.105182+0000 mgr.smithi120.xfjtcc (mgr.14205) 246 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.esovlx 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.105424+0000 mon.smithi120 (mon.0) 804 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.105424+0000 mon.smithi120 (mon.0) 804 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.107194+0000 mon.smithi120 (mon.0) 805 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.107194+0000 mon.smithi120 (mon.0) 805 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.109389+0000 mgr.smithi120.xfjtcc (mgr.14205) 247 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.109389+0000 mgr.smithi120.xfjtcc (mgr.14205) 247 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.109664+0000 mon.smithi120 (mon.0) 806 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.109664+0000 mon.smithi120 (mon.0) 806 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-10T04:20:11.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.111675+0000 mon.smithi120 (mon.0) 807 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.111675+0000 mon.smithi120 (mon.0) 807 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.114675+0000 mon.smithi120 (mon.0) 808 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.114675+0000 mon.smithi120 (mon.0) 808 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.160726+0000 mon.smithi120 (mon.0) 809 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.160726+0000 mon.smithi120 (mon.0) 809 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.162640+0000 mon.smithi120 (mon.0) 810 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.162640+0000 mon.smithi120 (mon.0) 810 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.220221+0000 mon.smithi120 (mon.0) 811 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.220221+0000 mon.smithi120 (mon.0) 811 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.222239+0000 mon.smithi120 (mon.0) 812 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.222239+0000 mon.smithi120 (mon.0) 812 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.229409+0000 mon.smithi120 (mon.0) 813 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:11.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:10 smithi120 bash[19947]: audit 2024-09-10T04:20:10.229409+0000 mon.smithi120 (mon.0) 813 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cluster 2024-09-10T04:20:09.408993+0000 mgr.smithi120.xfjtcc (mgr.14205) 244 : cluster [DBG] pgmap v201: 65 pgs: 4 creating+peering, 28 unknown, 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:20:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cluster 2024-09-10T04:20:09.408993+0000 mgr.smithi120.xfjtcc (mgr.14205) 244 : cluster [DBG] pgmap v201: 65 pgs: 4 creating+peering, 28 unknown, 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:20:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cluster 2024-09-10T04:20:09.769835+0000 mon.smithi120 (mon.0) 796 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-10T04:20:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cluster 2024-09-10T04:20:09.769835+0000 mon.smithi120 (mon.0) 796 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-10T04:20:11.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:09.782589+0000 mon.smithi151 (mon.1) 22 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:09.782589+0000 mon.smithi151 (mon.1) 22 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:09.786553+0000 mon.smithi120 (mon.0) 797 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:09.786553+0000 mon.smithi120 (mon.0) 797 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.075686+0000 mon.smithi120 (mon.0) 798 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.075686+0000 mon.smithi120 (mon.0) 798 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.082832+0000 mon.smithi120 (mon.0) 799 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.082832+0000 mon.smithi120 (mon.0) 799 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.089259+0000 mon.smithi120 (mon.0) 800 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.089259+0000 mon.smithi120 (mon.0) 800 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.090095+0000 mgr.smithi120.xfjtcc (mgr.14205) 245 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.090095+0000 mgr.smithi120.xfjtcc (mgr.14205) 245 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-10T04:20:11.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.094733+0000 mon.smithi120 (mon.0) 801 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.094733+0000 mon.smithi120 (mon.0) 801 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.099231+0000 mon.smithi120 (mon.0) 802 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.099231+0000 mon.smithi120 (mon.0) 802 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.104626+0000 mon.smithi120 (mon.0) 803 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.104626+0000 mon.smithi120 (mon.0) 803 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:11.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.105182+0000 mgr.smithi120.xfjtcc (mgr.14205) 246 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.esovlx 2024-09-10T04:20:11.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.105182+0000 mgr.smithi120.xfjtcc (mgr.14205) 246 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.esovlx 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.105424+0000 mon.smithi120 (mon.0) 804 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.105424+0000 mon.smithi120 (mon.0) 804 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.107194+0000 mon.smithi120 (mon.0) 805 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.107194+0000 mon.smithi120 (mon.0) 805 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.109389+0000 mgr.smithi120.xfjtcc (mgr.14205) 247 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.109389+0000 mgr.smithi120.xfjtcc (mgr.14205) 247 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.109664+0000 mon.smithi120 (mon.0) 806 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.109664+0000 mon.smithi120 (mon.0) 806 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.111675+0000 mon.smithi120 (mon.0) 807 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.111675+0000 mon.smithi120 (mon.0) 807 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.114675+0000 mon.smithi120 (mon.0) 808 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:11.238 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.114675+0000 mon.smithi120 (mon.0) 808 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.160726+0000 mon.smithi120 (mon.0) 809 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.160726+0000 mon.smithi120 (mon.0) 809 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.162640+0000 mon.smithi120 (mon.0) 810 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.162640+0000 mon.smithi120 (mon.0) 810 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.220221+0000 mon.smithi120 (mon.0) 811 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.220221+0000 mon.smithi120 (mon.0) 811 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.222239+0000 mon.smithi120 (mon.0) 812 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.222239+0000 mon.smithi120 (mon.0) 812 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.229409+0000 mon.smithi120 (mon.0) 813 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:11.239 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:10 smithi151 bash[25273]: audit 2024-09-10T04:20:10.229409+0000 mon.smithi120 (mon.0) 813 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:20:11.477 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-s3transfer (0.5.0-1) ... 2024-09-10T04:20:12.116 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-boto3 (1.20.34+dfsg-1) ... 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.219728+0000 mgr.smithi120.xfjtcc (mgr.14205) 248 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.219728+0000 mgr.smithi120.xfjtcc (mgr.14205) 248 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.219835+0000 mgr.smithi120.xfjtcc (mgr.14205) 249 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.esovlx-rgw 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.219835+0000 mgr.smithi120.xfjtcc (mgr.14205) 249 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.esovlx-rgw 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.224535+0000 mgr.smithi120.xfjtcc (mgr.14205) 250 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi120.esovlx's ganesha conf is defaulting to empty 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.224535+0000 mgr.smithi120.xfjtcc (mgr.14205) 250 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi120.esovlx's ganesha conf is defaulting to empty 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.230530+0000 mgr.smithi120.xfjtcc (mgr.14205) 251 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi120.esovlx on smithi120 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cephadm 2024-09-10T04:20:10.230530+0000 mgr.smithi120.xfjtcc (mgr.14205) 251 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi120.esovlx on smithi120 2024-09-10T04:20:12.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: audit 2024-09-10T04:20:10.765764+0000 mon.smithi120 (mon.0) 814 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-10T04:20:12.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: audit 2024-09-10T04:20:10.765764+0000 mon.smithi120 (mon.0) 814 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-10T04:20:12.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cluster 2024-09-10T04:20:10.768545+0000 mon.smithi120 (mon.0) 815 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-10T04:20:12.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:11 smithi151 bash[25273]: cluster 2024-09-10T04:20:10.768545+0000 mon.smithi120 (mon.0) 815 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-10T04:20:12.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.219728+0000 mgr.smithi120.xfjtcc (mgr.14205) 248 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-10T04:20:12.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.219728+0000 mgr.smithi120.xfjtcc (mgr.14205) 248 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-10T04:20:12.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.219835+0000 mgr.smithi120.xfjtcc (mgr.14205) 249 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.esovlx-rgw 2024-09-10T04:20:12.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.219835+0000 mgr.smithi120.xfjtcc (mgr.14205) 249 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.esovlx-rgw 2024-09-10T04:20:12.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.224535+0000 mgr.smithi120.xfjtcc (mgr.14205) 250 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi120.esovlx's ganesha conf is defaulting to empty 2024-09-10T04:20:12.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.224535+0000 mgr.smithi120.xfjtcc (mgr.14205) 250 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi120.esovlx's ganesha conf is defaulting to empty 2024-09-10T04:20:12.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.230530+0000 mgr.smithi120.xfjtcc (mgr.14205) 251 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi120.esovlx on smithi120 2024-09-10T04:20:12.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cephadm 2024-09-10T04:20:10.230530+0000 mgr.smithi120.xfjtcc (mgr.14205) 251 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi120.esovlx on smithi120 2024-09-10T04:20:12.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: audit 2024-09-10T04:20:10.765764+0000 mon.smithi120 (mon.0) 814 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-10T04:20:12.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: audit 2024-09-10T04:20:10.765764+0000 mon.smithi120 (mon.0) 814 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-10T04:20:12.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cluster 2024-09-10T04:20:10.768545+0000 mon.smithi120 (mon.0) 815 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-10T04:20:12.244 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:11 smithi120 bash[19947]: cluster 2024-09-10T04:20:10.768545+0000 mon.smithi120 (mon.0) 815 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-10T04:20:12.776 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-09-10T04:20:12.829 INFO:teuthology.orchestra.run.smithi120.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: cluster 2024-09-10T04:20:11.409816+0000 mgr.smithi120.xfjtcc (mgr.14205) 252 : cluster [DBG] pgmap v204: 97 pgs: 16 creating+peering, 23 unknown, 58 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: cluster 2024-09-10T04:20:11.409816+0000 mgr.smithi120.xfjtcc (mgr.14205) 252 : cluster [DBG] pgmap v204: 97 pgs: 16 creating+peering, 23 unknown, 58 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: cluster 2024-09-10T04:20:11.795247+0000 mon.smithi120 (mon.0) 816 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: cluster 2024-09-10T04:20:11.795247+0000 mon.smithi120 (mon.0) 816 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: audit 2024-09-10T04:20:11.800625+0000 mon.smithi151 (mon.1) 23 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: audit 2024-09-10T04:20:11.800625+0000 mon.smithi151 (mon.1) 23 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: audit 2024-09-10T04:20:11.803591+0000 mon.smithi120 (mon.0) 817 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: audit 2024-09-10T04:20:11.803591+0000 mon.smithi120 (mon.0) 817 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: audit 2024-09-10T04:20:12.538451+0000 mon.smithi120 (mon.0) 818 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:13.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:12 smithi120 bash[19947]: audit 2024-09-10T04:20:12.538451+0000 mon.smithi120 (mon.0) 818 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: cluster 2024-09-10T04:20:11.409816+0000 mgr.smithi120.xfjtcc (mgr.14205) 252 : cluster [DBG] pgmap v204: 97 pgs: 16 creating+peering, 23 unknown, 58 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s 2024-09-10T04:20:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: cluster 2024-09-10T04:20:11.409816+0000 mgr.smithi120.xfjtcc (mgr.14205) 252 : cluster [DBG] pgmap v204: 97 pgs: 16 creating+peering, 23 unknown, 58 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s 2024-09-10T04:20:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: cluster 2024-09-10T04:20:11.795247+0000 mon.smithi120 (mon.0) 816 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-10T04:20:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: cluster 2024-09-10T04:20:11.795247+0000 mon.smithi120 (mon.0) 816 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-10T04:20:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: audit 2024-09-10T04:20:11.800625+0000 mon.smithi151 (mon.1) 23 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-10T04:20:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: audit 2024-09-10T04:20:11.800625+0000 mon.smithi151 (mon.1) 23 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-10T04:20:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: audit 2024-09-10T04:20:11.803591+0000 mon.smithi120 (mon.0) 817 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-10T04:20:13.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: audit 2024-09-10T04:20:11.803591+0000 mon.smithi120 (mon.0) 817 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-10T04:20:13.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: audit 2024-09-10T04:20:12.538451+0000 mon.smithi120 (mon.0) 818 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:13.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:12 smithi151 bash[25273]: audit 2024-09-10T04:20:12.538451+0000 mon.smithi120 (mon.0) 818 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:14.174 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:13 smithi120 bash[19947]: audit 2024-09-10T04:20:12.788696+0000 mon.smithi120 (mon.0) 819 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-10T04:20:14.174 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:13 smithi120 bash[19947]: audit 2024-09-10T04:20:12.788696+0000 mon.smithi120 (mon.0) 819 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-10T04:20:14.175 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:13 smithi120 bash[19947]: cluster 2024-09-10T04:20:12.792257+0000 mon.smithi120 (mon.0) 820 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-10T04:20:14.175 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:13 smithi120 bash[19947]: cluster 2024-09-10T04:20:12.792257+0000 mon.smithi120 (mon.0) 820 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-10T04:20:14.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:13 smithi151 bash[25273]: audit 2024-09-10T04:20:12.788696+0000 mon.smithi120 (mon.0) 819 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-10T04:20:14.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:13 smithi151 bash[25273]: audit 2024-09-10T04:20:12.788696+0000 mon.smithi120 (mon.0) 819 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-10T04:20:14.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:13 smithi151 bash[25273]: cluster 2024-09-10T04:20:12.792257+0000 mon.smithi120 (mon.0) 820 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-10T04:20:14.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:13 smithi151 bash[25273]: cluster 2024-09-10T04:20:12.792257+0000 mon.smithi120 (mon.0) 820 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-10T04:20:14.451 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:14.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:15.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: cluster 2024-09-10T04:20:13.410680+0000 mgr.smithi120.xfjtcc (mgr.14205) 253 : cluster [DBG] pgmap v207: 129 pgs: 12 creating+peering, 34 unknown, 83 active+clean; 578 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.5 KiB/s wr, 5 op/s 2024-09-10T04:20:15.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: cluster 2024-09-10T04:20:13.410680+0000 mgr.smithi120.xfjtcc (mgr.14205) 253 : cluster [DBG] pgmap v207: 129 pgs: 12 creating+peering, 34 unknown, 83 active+clean; 578 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.5 KiB/s wr, 5 op/s 2024-09-10T04:20:15.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: cluster 2024-09-10T04:20:13.801468+0000 mon.smithi120 (mon.0) 821 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-10T04:20:15.200 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: cluster 2024-09-10T04:20:13.801468+0000 mon.smithi120 (mon.0) 821 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:13.806143+0000 mon.smithi151 (mon.1) 24 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:13.806143+0000 mon.smithi151 (mon.1) 24 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:13.807624+0000 mon.smithi120 (mon.0) 822 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:13.807624+0000 mon.smithi120 (mon.0) 822 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:13.821263+0000 mon.smithi120 (mon.0) 823 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:13.821263+0000 mon.smithi120 (mon.0) 823 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.643407+0000 mon.smithi120 (mon.0) 824 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.643407+0000 mon.smithi120 (mon.0) 824 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.650370+0000 mon.smithi120 (mon.0) 825 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.650370+0000 mon.smithi120 (mon.0) 825 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.201 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.655996+0000 mon.smithi120 (mon.0) 826 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.655996+0000 mon.smithi120 (mon.0) 826 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.688478+0000 mon.smithi120 (mon.0) 827 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.688478+0000 mon.smithi120 (mon.0) 827 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.696888+0000 mon.smithi120 (mon.0) 828 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.696888+0000 mon.smithi120 (mon.0) 828 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.796859+0000 mon.smithi120 (mon.0) 829 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.796859+0000 mon.smithi120 (mon.0) 829 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.797006+0000 mon.smithi120 (mon.0) 830 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.797006+0000 mon.smithi120 (mon.0) 830 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: cluster 2024-09-10T04:20:14.803553+0000 mon.smithi120 (mon.0) 831 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: cluster 2024-09-10T04:20:14.803553+0000 mon.smithi120 (mon.0) 831 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.805551+0000 mon.smithi151 (mon.1) 25 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.805551+0000 mon.smithi151 (mon.1) 25 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:15.202 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.806924+0000 mon.smithi120 (mon.0) 832 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:15.203 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:14 smithi120 bash[19947]: audit 2024-09-10T04:20:14.806924+0000 mon.smithi120 (mon.0) 832 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: cluster 2024-09-10T04:20:13.410680+0000 mgr.smithi120.xfjtcc (mgr.14205) 253 : cluster [DBG] pgmap v207: 129 pgs: 12 creating+peering, 34 unknown, 83 active+clean; 578 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.5 KiB/s wr, 5 op/s 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: cluster 2024-09-10T04:20:13.410680+0000 mgr.smithi120.xfjtcc (mgr.14205) 253 : cluster [DBG] pgmap v207: 129 pgs: 12 creating+peering, 34 unknown, 83 active+clean; 578 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.5 KiB/s wr, 5 op/s 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: cluster 2024-09-10T04:20:13.801468+0000 mon.smithi120 (mon.0) 821 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: cluster 2024-09-10T04:20:13.801468+0000 mon.smithi120 (mon.0) 821 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:13.806143+0000 mon.smithi151 (mon.1) 24 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:13.806143+0000 mon.smithi151 (mon.1) 24 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:13.807624+0000 mon.smithi120 (mon.0) 822 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:13.807624+0000 mon.smithi120 (mon.0) 822 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:13.821263+0000 mon.smithi120 (mon.0) 823 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:13.821263+0000 mon.smithi120 (mon.0) 823 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.643407+0000 mon.smithi120 (mon.0) 824 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.643407+0000 mon.smithi120 (mon.0) 824 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.650370+0000 mon.smithi120 (mon.0) 825 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.650370+0000 mon.smithi120 (mon.0) 825 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.655996+0000 mon.smithi120 (mon.0) 826 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.655996+0000 mon.smithi120 (mon.0) 826 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.688478+0000 mon.smithi120 (mon.0) 827 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.688478+0000 mon.smithi120 (mon.0) 827 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.696888+0000 mon.smithi120 (mon.0) 828 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.696888+0000 mon.smithi120 (mon.0) 828 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.796859+0000 mon.smithi120 (mon.0) 829 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.796859+0000 mon.smithi120 (mon.0) 829 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.797006+0000 mon.smithi120 (mon.0) 830 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.797006+0000 mon.smithi120 (mon.0) 830 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: cluster 2024-09-10T04:20:14.803553+0000 mon.smithi120 (mon.0) 831 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: cluster 2024-09-10T04:20:14.803553+0000 mon.smithi120 (mon.0) 831 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.805551+0000 mon.smithi151 (mon.1) 25 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.805551+0000 mon.smithi151 (mon.1) 25 : audit [INF] from='client.? 172.21.15.151:0/3804152309' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.806924+0000 mon.smithi120 (mon.0) 832 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:15.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:14 smithi151 bash[25273]: audit 2024-09-10T04:20:14.806924+0000 mon.smithi120 (mon.0) 832 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:16.097 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: cephadm 2024-09-10T04:20:14.710576+0000 mgr.smithi120.xfjtcc (mgr.14205) 254 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi120.fkccou on smithi120 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: cephadm 2024-09-10T04:20:14.710576+0000 mgr.smithi120.xfjtcc (mgr.14205) 254 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi120.fkccou on smithi120 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: audit 2024-09-10T04:20:14.813900+0000 mon.smithi120 (mon.0) 833 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: audit 2024-09-10T04:20:14.813900+0000 mon.smithi120 (mon.0) 833 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: audit 2024-09-10T04:20:15.799513+0000 mon.smithi120 (mon.0) 834 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: audit 2024-09-10T04:20:15.799513+0000 mon.smithi120 (mon.0) 834 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: audit 2024-09-10T04:20:15.799667+0000 mon.smithi120 (mon.0) 835 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: audit 2024-09-10T04:20:15.799667+0000 mon.smithi120 (mon.0) 835 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: cluster 2024-09-10T04:20:15.806601+0000 mon.smithi120 (mon.0) 836 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-10T04:20:16.098 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:15 smithi120 bash[19947]: cluster 2024-09-10T04:20:15.806601+0000 mon.smithi120 (mon.0) 836 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-10T04:20:16.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: cephadm 2024-09-10T04:20:14.710576+0000 mgr.smithi120.xfjtcc (mgr.14205) 254 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi120.fkccou on smithi120 2024-09-10T04:20:16.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: cephadm 2024-09-10T04:20:14.710576+0000 mgr.smithi120.xfjtcc (mgr.14205) 254 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi120.fkccou on smithi120 2024-09-10T04:20:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: audit 2024-09-10T04:20:14.813900+0000 mon.smithi120 (mon.0) 833 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: audit 2024-09-10T04:20:14.813900+0000 mon.smithi120 (mon.0) 833 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: audit 2024-09-10T04:20:15.799513+0000 mon.smithi120 (mon.0) 834 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: audit 2024-09-10T04:20:15.799513+0000 mon.smithi120 (mon.0) 834 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi151.ceqvga' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: audit 2024-09-10T04:20:15.799667+0000 mon.smithi120 (mon.0) 835 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: audit 2024-09-10T04:20:15.799667+0000 mon.smithi120 (mon.0) 835 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: cluster 2024-09-10T04:20:15.806601+0000 mon.smithi120 (mon.0) 836 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-10T04:20:16.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:15 smithi151 bash[25273]: cluster 2024-09-10T04:20:15.806601+0000 mon.smithi120 (mon.0) 836 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-10T04:20:17.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:16 smithi151 bash[25273]: cluster 2024-09-10T04:20:15.411836+0000 mgr.smithi120.xfjtcc (mgr.14205) 255 : cluster [DBG] pgmap v210: 161 pgs: 2 creating+peering, 29 unknown, 130 active+clean; 578 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 2.0 KiB/s wr, 7 op/s 2024-09-10T04:20:17.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:16 smithi151 bash[25273]: cluster 2024-09-10T04:20:15.411836+0000 mgr.smithi120.xfjtcc (mgr.14205) 255 : cluster [DBG] pgmap v210: 161 pgs: 2 creating+peering, 29 unknown, 130 active+clean; 578 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 2.0 KiB/s wr, 7 op/s 2024-09-10T04:20:17.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:16 smithi120 bash[19947]: cluster 2024-09-10T04:20:15.411836+0000 mgr.smithi120.xfjtcc (mgr.14205) 255 : cluster [DBG] pgmap v210: 161 pgs: 2 creating+peering, 29 unknown, 130 active+clean; 578 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 2.0 KiB/s wr, 7 op/s 2024-09-10T04:20:17.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:16 smithi120 bash[19947]: cluster 2024-09-10T04:20:15.411836+0000 mgr.smithi120.xfjtcc (mgr.14205) 255 : cluster [DBG] pgmap v210: 161 pgs: 2 creating+peering, 29 unknown, 130 active+clean; 578 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 2.0 KiB/s wr, 7 op/s 2024-09-10T04:20:18.631 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:20:18.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:18 smithi151 bash[25273]: cluster 2024-09-10T04:20:17.412953+0000 mgr.smithi120.xfjtcc (mgr.14205) 256 : cluster [DBG] pgmap v212: 161 pgs: 2 creating+peering, 5 unknown, 154 active+clean; 580 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 5.0 KiB/s wr, 226 op/s 2024-09-10T04:20:18.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:18 smithi151 bash[25273]: cluster 2024-09-10T04:20:17.412953+0000 mgr.smithi120.xfjtcc (mgr.14205) 256 : cluster [DBG] pgmap v212: 161 pgs: 2 creating+peering, 5 unknown, 154 active+clean; 580 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 5.0 KiB/s wr, 226 op/s 2024-09-10T04:20:18.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:18 smithi151 bash[25273]: audit 2024-09-10T04:20:17.549027+0000 mon.smithi120 (mon.0) 837 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:18.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:18 smithi151 bash[25273]: audit 2024-09-10T04:20:17.549027+0000 mon.smithi120 (mon.0) 837 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:19.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:18 smithi120 bash[19947]: cluster 2024-09-10T04:20:17.412953+0000 mgr.smithi120.xfjtcc (mgr.14205) 256 : cluster [DBG] pgmap v212: 161 pgs: 2 creating+peering, 5 unknown, 154 active+clean; 580 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 5.0 KiB/s wr, 226 op/s 2024-09-10T04:20:19.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:18 smithi120 bash[19947]: cluster 2024-09-10T04:20:17.412953+0000 mgr.smithi120.xfjtcc (mgr.14205) 256 : cluster [DBG] pgmap v212: 161 pgs: 2 creating+peering, 5 unknown, 154 active+clean; 580 KiB data, 241 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 5.0 KiB/s wr, 226 op/s 2024-09-10T04:20:19.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:18 smithi120 bash[19947]: audit 2024-09-10T04:20:17.549027+0000 mon.smithi120 (mon.0) 837 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:19.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:18 smithi120 bash[19947]: audit 2024-09-10T04:20:17.549027+0000 mon.smithi120 (mon.0) 837 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:19.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:19 smithi151 bash[25273]: audit 2024-09-10T04:20:18.664992+0000 mon.smithi120 (mon.0) 838 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:19.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:19 smithi151 bash[25273]: audit 2024-09-10T04:20:18.664992+0000 mon.smithi120 (mon.0) 838 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:20.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:19 smithi120 bash[19947]: audit 2024-09-10T04:20:18.664992+0000 mon.smithi120 (mon.0) 838 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:20.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:19 smithi120 bash[19947]: audit 2024-09-10T04:20:18.664992+0000 mon.smithi120 (mon.0) 838 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:20.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:20 smithi151 bash[25273]: cluster 2024-09-10T04:20:19.413765+0000 mgr.smithi120.xfjtcc (mgr.14205) 257 : cluster [DBG] pgmap v213: 161 pgs: 2 creating+peering, 159 active+clean; 580 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 92 KiB/s rd, 3.5 KiB/s wr, 179 op/s 2024-09-10T04:20:20.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:20 smithi151 bash[25273]: cluster 2024-09-10T04:20:19.413765+0000 mgr.smithi120.xfjtcc (mgr.14205) 257 : cluster [DBG] pgmap v213: 161 pgs: 2 creating+peering, 159 active+clean; 580 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 92 KiB/s rd, 3.5 KiB/s wr, 179 op/s 2024-09-10T04:20:21.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:20 smithi120 bash[19947]: cluster 2024-09-10T04:20:19.413765+0000 mgr.smithi120.xfjtcc (mgr.14205) 257 : cluster [DBG] pgmap v213: 161 pgs: 2 creating+peering, 159 active+clean; 580 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 92 KiB/s rd, 3.5 KiB/s wr, 179 op/s 2024-09-10T04:20:21.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:20 smithi120 bash[19947]: cluster 2024-09-10T04:20:19.413765+0000 mgr.smithi120.xfjtcc (mgr.14205) 257 : cluster [DBG] pgmap v213: 161 pgs: 2 creating+peering, 159 active+clean; 580 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 92 KiB/s rd, 3.5 KiB/s wr, 179 op/s 2024-09-10T04:20:22.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:22 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:22.589 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:22 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:22.589 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:22 smithi120 bash[19947]: cluster 2024-09-10T04:20:21.415179+0000 mgr.smithi120.xfjtcc (mgr.14205) 258 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 175 KiB/s rd, 5.5 KiB/s wr, 337 op/s 2024-09-10T04:20:22.589 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:22 smithi120 bash[19947]: cluster 2024-09-10T04:20:21.415179+0000 mgr.smithi120.xfjtcc (mgr.14205) 258 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 175 KiB/s rd, 5.5 KiB/s wr, 337 op/s 2024-09-10T04:20:22.731 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:20:22.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:22 smithi151 bash[25273]: cluster 2024-09-10T04:20:21.415179+0000 mgr.smithi120.xfjtcc (mgr.14205) 258 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 175 KiB/s rd, 5.5 KiB/s wr, 337 op/s 2024-09-10T04:20:22.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:22 smithi151 bash[25273]: cluster 2024-09-10T04:20:21.415179+0000 mgr.smithi120.xfjtcc (mgr.14205) 258 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 175 KiB/s rd, 5.5 KiB/s wr, 337 op/s 2024-09-10T04:20:23.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:23 smithi151 bash[25273]: audit 2024-09-10T04:20:22.640245+0000 mon.smithi120 (mon.0) 839 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:23.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:23 smithi151 bash[25273]: audit 2024-09-10T04:20:22.640245+0000 mon.smithi120 (mon.0) 839 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:23.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:23 smithi151 bash[25273]: audit 2024-09-10T04:20:22.645622+0000 mon.smithi120 (mon.0) 840 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:23.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:23 smithi151 bash[25273]: audit 2024-09-10T04:20:22.645622+0000 mon.smithi120 (mon.0) 840 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:23.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:23 smithi151 bash[25273]: audit 2024-09-10T04:20:22.650247+0000 mon.smithi120 (mon.0) 841 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:23.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:23 smithi151 bash[25273]: audit 2024-09-10T04:20:22.650247+0000 mon.smithi120 (mon.0) 841 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:23.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:23 smithi151 bash[25273]: cephadm 2024-09-10T04:20:22.652432+0000 mgr.smithi120.xfjtcc (mgr.14205) 259 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi151.ujklvz on smithi151 2024-09-10T04:20:23.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:23 smithi151 bash[25273]: cephadm 2024-09-10T04:20:22.652432+0000 mgr.smithi120.xfjtcc (mgr.14205) 259 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi151.ujklvz on smithi151 2024-09-10T04:20:24.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:23 smithi120 bash[19947]: audit 2024-09-10T04:20:22.640245+0000 mon.smithi120 (mon.0) 839 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:24.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:23 smithi120 bash[19947]: audit 2024-09-10T04:20:22.640245+0000 mon.smithi120 (mon.0) 839 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:24.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:23 smithi120 bash[19947]: audit 2024-09-10T04:20:22.645622+0000 mon.smithi120 (mon.0) 840 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:24.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:23 smithi120 bash[19947]: audit 2024-09-10T04:20:22.645622+0000 mon.smithi120 (mon.0) 840 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:24.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:23 smithi120 bash[19947]: audit 2024-09-10T04:20:22.650247+0000 mon.smithi120 (mon.0) 841 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:24.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:23 smithi120 bash[19947]: audit 2024-09-10T04:20:22.650247+0000 mon.smithi120 (mon.0) 841 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:24.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:23 smithi120 bash[19947]: cephadm 2024-09-10T04:20:22.652432+0000 mgr.smithi120.xfjtcc (mgr.14205) 259 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi151.ujklvz on smithi151 2024-09-10T04:20:24.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:23 smithi120 bash[19947]: cephadm 2024-09-10T04:20:22.652432+0000 mgr.smithi120.xfjtcc (mgr.14205) 259 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi151.ujklvz on smithi151 2024-09-10T04:20:24.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:24 smithi151 bash[25273]: cluster 2024-09-10T04:20:23.416350+0000 mgr.smithi120.xfjtcc (mgr.14205) 260 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 157 KiB/s rd, 4.9 KiB/s wr, 301 op/s 2024-09-10T04:20:24.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:24 smithi151 bash[25273]: cluster 2024-09-10T04:20:23.416350+0000 mgr.smithi120.xfjtcc (mgr.14205) 260 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 157 KiB/s rd, 4.9 KiB/s wr, 301 op/s 2024-09-10T04:20:25.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:24 smithi120 bash[19947]: cluster 2024-09-10T04:20:23.416350+0000 mgr.smithi120.xfjtcc (mgr.14205) 260 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 157 KiB/s rd, 4.9 KiB/s wr, 301 op/s 2024-09-10T04:20:25.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:24 smithi120 bash[19947]: cluster 2024-09-10T04:20:23.416350+0000 mgr.smithi120.xfjtcc (mgr.14205) 260 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 157 KiB/s rd, 4.9 KiB/s wr, 301 op/s 2024-09-10T04:20:26.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:26 smithi151 bash[25273]: cluster 2024-09-10T04:20:25.417636+0000 mgr.smithi120.xfjtcc (mgr.14205) 261 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 135 KiB/s rd, 3.9 KiB/s wr, 258 op/s 2024-09-10T04:20:26.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:26 smithi151 bash[25273]: cluster 2024-09-10T04:20:25.417636+0000 mgr.smithi120.xfjtcc (mgr.14205) 261 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 135 KiB/s rd, 3.9 KiB/s wr, 258 op/s 2024-09-10T04:20:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:26 smithi120 bash[19947]: cluster 2024-09-10T04:20:25.417636+0000 mgr.smithi120.xfjtcc (mgr.14205) 261 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 135 KiB/s rd, 3.9 KiB/s wr, 258 op/s 2024-09-10T04:20:27.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:26 smithi120 bash[19947]: cluster 2024-09-10T04:20:25.417636+0000 mgr.smithi120.xfjtcc (mgr.14205) 261 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 135 KiB/s rd, 3.9 KiB/s wr, 258 op/s 2024-09-10T04:20:27.880 INFO:teuthology.orchestra.run.smithi120.stderr:Using ceph image with id 'd6d839bc8a4b' and tag '3a5e3f16720f432aea965c40a8f6eb480095ec6c' created on 2024-09-10 02:17:05 +0000 UTC 2024-09-10T04:20:27.880 INFO:teuthology.orchestra.run.smithi120.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:2db6858ffc169715474ea237dd8b2beae440a5514686b8202506e12cb7dc1fca 2024-09-10T04:20:28.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:28 smithi151 bash[25273]: cluster 2024-09-10T04:20:27.418852+0000 mgr.smithi120.xfjtcc (mgr.14205) 262 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 3.4 KiB/s wr, 222 op/s 2024-09-10T04:20:28.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:28 smithi151 bash[25273]: cluster 2024-09-10T04:20:27.418852+0000 mgr.smithi120.xfjtcc (mgr.14205) 262 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 3.4 KiB/s wr, 222 op/s 2024-09-10T04:20:28.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:28 smithi151 bash[25273]: audit 2024-09-10T04:20:27.560942+0000 mon.smithi120 (mon.0) 842 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:28.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:28 smithi151 bash[25273]: audit 2024-09-10T04:20:27.560942+0000 mon.smithi120 (mon.0) 842 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:29.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:28 smithi120 bash[19947]: cluster 2024-09-10T04:20:27.418852+0000 mgr.smithi120.xfjtcc (mgr.14205) 262 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 3.4 KiB/s wr, 222 op/s 2024-09-10T04:20:29.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:28 smithi120 bash[19947]: cluster 2024-09-10T04:20:27.418852+0000 mgr.smithi120.xfjtcc (mgr.14205) 262 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 116 KiB/s rd, 3.4 KiB/s wr, 222 op/s 2024-09-10T04:20:29.004 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:28 smithi120 bash[19947]: audit 2024-09-10T04:20:27.560942+0000 mon.smithi120 (mon.0) 842 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:29.005 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:28 smithi120 bash[19947]: audit 2024-09-10T04:20:27.560942+0000 mon.smithi120 (mon.0) 842 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:29.889 INFO:teuthology.run_tasks:Running task python... 2024-09-10T04:20:29.904 INFO:tasks.python:Running python on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:20:29.904 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-09-10T04:20:29.905 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-10T04:20:30.722 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:30 smithi151 bash[25273]: cluster 2024-09-10T04:20:29.419743+0000 mgr.smithi120.xfjtcc (mgr.14205) 263 : cluster [DBG] pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 69 KiB/s rd, 1.8 KiB/s wr, 130 op/s 2024-09-10T04:20:30.722 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:30 smithi151 bash[25273]: cluster 2024-09-10T04:20:29.419743+0000 mgr.smithi120.xfjtcc (mgr.14205) 263 : cluster [DBG] pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 69 KiB/s rd, 1.8 KiB/s wr, 130 op/s 2024-09-10T04:20:31.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:30 smithi120 bash[19947]: cluster 2024-09-10T04:20:29.419743+0000 mgr.smithi120.xfjtcc (mgr.14205) 263 : cluster [DBG] pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 69 KiB/s rd, 1.8 KiB/s wr, 130 op/s 2024-09-10T04:20:31.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:30 smithi120 bash[19947]: cluster 2024-09-10T04:20:29.419743+0000 mgr.smithi120.xfjtcc (mgr.14205) 263 : cluster [DBG] pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 69 KiB/s rd, 1.8 KiB/s wr, 130 op/s 2024-09-10T04:20:31.583 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:31 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:31.874 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:31 smithi151 bash[25273]: cluster 2024-09-10T04:20:30.582088+0000 mon.smithi120 (mon.0) 843 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-10T04:20:31.874 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:31 smithi151 bash[25273]: cluster 2024-09-10T04:20:30.582088+0000 mon.smithi120 (mon.0) 843 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-10T04:20:31.875 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:31 smithi151 bash[25273]: audit 2024-09-10T04:20:30.589693+0000 mon.smithi120 (mon.0) 844 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-10T04:20:31.875 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:31 smithi151 bash[25273]: audit 2024-09-10T04:20:30.589693+0000 mon.smithi120 (mon.0) 844 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-10T04:20:31.875 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:31 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:32.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:31 smithi120 bash[19947]: cluster 2024-09-10T04:20:30.582088+0000 mon.smithi120 (mon.0) 843 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-10T04:20:32.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:31 smithi120 bash[19947]: cluster 2024-09-10T04:20:30.582088+0000 mon.smithi120 (mon.0) 843 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-10T04:20:32.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:31 smithi120 bash[19947]: audit 2024-09-10T04:20:30.589693+0000 mon.smithi120 (mon.0) 844 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-10T04:20:32.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:31 smithi120 bash[19947]: audit 2024-09-10T04:20:30.589693+0000 mon.smithi120 (mon.0) 844 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-10T04:20:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cluster 2024-09-10T04:20:31.420787+0000 mgr.smithi120.xfjtcc (mgr.14205) 264 : cluster [DBG] pgmap v220: 193 pgs: 5 creating+peering, 27 unknown, 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 204 B/s wr, 3 op/s 2024-09-10T04:20:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cluster 2024-09-10T04:20:31.420787+0000 mgr.smithi120.xfjtcc (mgr.14205) 264 : cluster [DBG] pgmap v220: 193 pgs: 5 creating+peering, 27 unknown, 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 204 B/s wr, 3 op/s 2024-09-10T04:20:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cluster 2024-09-10T04:20:31.573907+0000 mon.smithi120 (mon.0) 845 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-10T04:20:32.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cluster 2024-09-10T04:20:31.573907+0000 mon.smithi120 (mon.0) 845 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.582779+0000 mon.smithi120 (mon.0) 846 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.582779+0000 mon.smithi120 (mon.0) 846 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cluster 2024-09-10T04:20:31.592081+0000 mon.smithi120 (mon.0) 847 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cluster 2024-09-10T04:20:31.592081+0000 mon.smithi120 (mon.0) 847 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.598507+0000 mon.smithi120 (mon.0) 848 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.598507+0000 mon.smithi120 (mon.0) 848 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.930541+0000 mon.smithi120 (mon.0) 849 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.930541+0000 mon.smithi120 (mon.0) 849 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.941413+0000 mon.smithi120 (mon.0) 850 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.941413+0000 mon.smithi120 (mon.0) 850 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.951381+0000 mon.smithi120 (mon.0) 851 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.951381+0000 mon.smithi120 (mon.0) 851 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.961060+0000 mon.smithi120 (mon.0) 852 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: audit 2024-09-10T04:20:31.961060+0000 mon.smithi120 (mon.0) 852 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cephadm 2024-09-10T04:20:31.962204+0000 mgr.smithi120.xfjtcc (mgr.14205) 265 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi151 interface enp3s0f1 2024-09-10T04:20:32.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cephadm 2024-09-10T04:20:31.962204+0000 mgr.smithi120.xfjtcc (mgr.14205) 265 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi151 interface enp3s0f1 2024-09-10T04:20:32.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cephadm 2024-09-10T04:20:31.962500+0000 mgr.smithi120.xfjtcc (mgr.14205) 266 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-09-10T04:20:32.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cephadm 2024-09-10T04:20:31.962500+0000 mgr.smithi120.xfjtcc (mgr.14205) 266 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-09-10T04:20:32.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cephadm 2024-09-10T04:20:31.978009+0000 mgr.smithi120.xfjtcc (mgr.14205) 267 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi151.wxegob on smithi151 2024-09-10T04:20:32.737 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:32 smithi151 bash[25273]: cephadm 2024-09-10T04:20:31.978009+0000 mgr.smithi120.xfjtcc (mgr.14205) 267 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi151.wxegob on smithi151 2024-09-10T04:20:32.926 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cluster 2024-09-10T04:20:31.420787+0000 mgr.smithi120.xfjtcc (mgr.14205) 264 : cluster [DBG] pgmap v220: 193 pgs: 5 creating+peering, 27 unknown, 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 204 B/s wr, 3 op/s 2024-09-10T04:20:32.926 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cluster 2024-09-10T04:20:31.420787+0000 mgr.smithi120.xfjtcc (mgr.14205) 264 : cluster [DBG] pgmap v220: 193 pgs: 5 creating+peering, 27 unknown, 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 204 B/s wr, 3 op/s 2024-09-10T04:20:32.926 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cluster 2024-09-10T04:20:31.573907+0000 mon.smithi120 (mon.0) 845 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-10T04:20:32.926 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cluster 2024-09-10T04:20:31.573907+0000 mon.smithi120 (mon.0) 845 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.582779+0000 mon.smithi120 (mon.0) 846 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.582779+0000 mon.smithi120 (mon.0) 846 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cluster 2024-09-10T04:20:31.592081+0000 mon.smithi120 (mon.0) 847 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cluster 2024-09-10T04:20:31.592081+0000 mon.smithi120 (mon.0) 847 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.598507+0000 mon.smithi120 (mon.0) 848 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.598507+0000 mon.smithi120 (mon.0) 848 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.930541+0000 mon.smithi120 (mon.0) 849 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.930541+0000 mon.smithi120 (mon.0) 849 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.941413+0000 mon.smithi120 (mon.0) 850 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.941413+0000 mon.smithi120 (mon.0) 850 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.951381+0000 mon.smithi120 (mon.0) 851 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.951381+0000 mon.smithi120 (mon.0) 851 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.961060+0000 mon.smithi120 (mon.0) 852 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: audit 2024-09-10T04:20:31.961060+0000 mon.smithi120 (mon.0) 852 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:32.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cephadm 2024-09-10T04:20:31.962204+0000 mgr.smithi120.xfjtcc (mgr.14205) 265 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi151 interface enp3s0f1 2024-09-10T04:20:32.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cephadm 2024-09-10T04:20:31.962204+0000 mgr.smithi120.xfjtcc (mgr.14205) 265 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi151 interface enp3s0f1 2024-09-10T04:20:32.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cephadm 2024-09-10T04:20:31.962500+0000 mgr.smithi120.xfjtcc (mgr.14205) 266 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-09-10T04:20:32.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cephadm 2024-09-10T04:20:31.962500+0000 mgr.smithi120.xfjtcc (mgr.14205) 266 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-09-10T04:20:32.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cephadm 2024-09-10T04:20:31.978009+0000 mgr.smithi120.xfjtcc (mgr.14205) 267 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi151.wxegob on smithi151 2024-09-10T04:20:32.928 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:32 smithi120 bash[19947]: cephadm 2024-09-10T04:20:31.978009+0000 mgr.smithi120.xfjtcc (mgr.14205) 267 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi151.wxegob on smithi151 2024-09-10T04:20:33.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:33 smithi151 bash[25273]: audit 2024-09-10T04:20:32.597033+0000 mon.smithi120 (mon.0) 853 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:33.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:33 smithi151 bash[25273]: audit 2024-09-10T04:20:32.597033+0000 mon.smithi120 (mon.0) 853 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:33.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:33 smithi151 bash[25273]: cluster 2024-09-10T04:20:32.603377+0000 mon.smithi120 (mon.0) 854 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-10T04:20:33.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:33 smithi151 bash[25273]: cluster 2024-09-10T04:20:32.603377+0000 mon.smithi120 (mon.0) 854 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-10T04:20:34.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:33 smithi120 bash[19947]: audit 2024-09-10T04:20:32.597033+0000 mon.smithi120 (mon.0) 853 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:34.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:33 smithi120 bash[19947]: audit 2024-09-10T04:20:32.597033+0000 mon.smithi120 (mon.0) 853 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-10T04:20:34.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:33 smithi120 bash[19947]: cluster 2024-09-10T04:20:32.603377+0000 mon.smithi120 (mon.0) 854 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-10T04:20:34.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:33 smithi120 bash[19947]: cluster 2024-09-10T04:20:32.603377+0000 mon.smithi120 (mon.0) 854 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-10T04:20:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: cluster 2024-09-10T04:20:33.421663+0000 mgr.smithi120.xfjtcc (mgr.14205) 268 : cluster [DBG] pgmap v223: 193 pgs: 13 creating+peering, 17 unknown, 163 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-10T04:20:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: cluster 2024-09-10T04:20:33.421663+0000 mgr.smithi120.xfjtcc (mgr.14205) 268 : cluster [DBG] pgmap v223: 193 pgs: 13 creating+peering, 17 unknown, 163 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-10T04:20:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: cluster 2024-09-10T04:20:33.597110+0000 mon.smithi120 (mon.0) 855 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-10T04:20:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: cluster 2024-09-10T04:20:33.597110+0000 mon.smithi120 (mon.0) 855 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-10T04:20:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: cluster 2024-09-10T04:20:33.597162+0000 mon.smithi120 (mon.0) 856 : cluster [INF] Cluster is now healthy 2024-09-10T04:20:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: cluster 2024-09-10T04:20:33.597162+0000 mon.smithi120 (mon.0) 856 : cluster [INF] Cluster is now healthy 2024-09-10T04:20:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: cluster 2024-09-10T04:20:33.617277+0000 mon.smithi120 (mon.0) 857 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-10T04:20:34.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: cluster 2024-09-10T04:20:33.617277+0000 mon.smithi120 (mon.0) 857 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-10T04:20:34.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: audit 2024-09-10T04:20:33.619629+0000 mon.smithi120 (mon.0) 858 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-10T04:20:34.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: audit 2024-09-10T04:20:33.619629+0000 mon.smithi120 (mon.0) 858 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-10T04:20:34.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: audit 2024-09-10T04:20:33.665201+0000 mon.smithi120 (mon.0) 859 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:34.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:34 smithi151 bash[25273]: audit 2024-09-10T04:20:33.665201+0000 mon.smithi120 (mon.0) 859 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: cluster 2024-09-10T04:20:33.421663+0000 mgr.smithi120.xfjtcc (mgr.14205) 268 : cluster [DBG] pgmap v223: 193 pgs: 13 creating+peering, 17 unknown, 163 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-10T04:20:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: cluster 2024-09-10T04:20:33.421663+0000 mgr.smithi120.xfjtcc (mgr.14205) 268 : cluster [DBG] pgmap v223: 193 pgs: 13 creating+peering, 17 unknown, 163 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 2 op/s 2024-09-10T04:20:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: cluster 2024-09-10T04:20:33.597110+0000 mon.smithi120 (mon.0) 855 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-10T04:20:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: cluster 2024-09-10T04:20:33.597110+0000 mon.smithi120 (mon.0) 855 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-10T04:20:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: cluster 2024-09-10T04:20:33.597162+0000 mon.smithi120 (mon.0) 856 : cluster [INF] Cluster is now healthy 2024-09-10T04:20:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: cluster 2024-09-10T04:20:33.597162+0000 mon.smithi120 (mon.0) 856 : cluster [INF] Cluster is now healthy 2024-09-10T04:20:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: cluster 2024-09-10T04:20:33.617277+0000 mon.smithi120 (mon.0) 857 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-10T04:20:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: cluster 2024-09-10T04:20:33.617277+0000 mon.smithi120 (mon.0) 857 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-10T04:20:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: audit 2024-09-10T04:20:33.619629+0000 mon.smithi120 (mon.0) 858 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-10T04:20:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: audit 2024-09-10T04:20:33.619629+0000 mon.smithi120 (mon.0) 858 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-10T04:20:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: audit 2024-09-10T04:20:33.665201+0000 mon.smithi120 (mon.0) 859 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:34 smithi120 bash[19947]: audit 2024-09-10T04:20:33.665201+0000 mon.smithi120 (mon.0) 859 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:35.714 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-10T04:20:35.726 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:20:35.727 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-09-10T04:20:35.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:35 smithi151 bash[25273]: audit 2024-09-10T04:20:34.618941+0000 mon.smithi120 (mon.0) 860 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-10T04:20:35.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:35 smithi151 bash[25273]: audit 2024-09-10T04:20:34.618941+0000 mon.smithi120 (mon.0) 860 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-10T04:20:35.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:35 smithi151 bash[25273]: cluster 2024-09-10T04:20:34.625932+0000 mon.smithi120 (mon.0) 861 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-10T04:20:35.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:35 smithi151 bash[25273]: cluster 2024-09-10T04:20:34.625932+0000 mon.smithi120 (mon.0) 861 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-10T04:20:35.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:35 smithi151 bash[25273]: audit 2024-09-10T04:20:34.634241+0000 mon.smithi120 (mon.0) 862 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-10T04:20:35.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:35 smithi151 bash[25273]: audit 2024-09-10T04:20:34.634241+0000 mon.smithi120 (mon.0) 862 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-10T04:20:36.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:35 smithi120 bash[19947]: audit 2024-09-10T04:20:34.618941+0000 mon.smithi120 (mon.0) 860 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-10T04:20:36.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:35 smithi120 bash[19947]: audit 2024-09-10T04:20:34.618941+0000 mon.smithi120 (mon.0) 860 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-10T04:20:36.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:35 smithi120 bash[19947]: cluster 2024-09-10T04:20:34.625932+0000 mon.smithi120 (mon.0) 861 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-10T04:20:36.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:35 smithi120 bash[19947]: cluster 2024-09-10T04:20:34.625932+0000 mon.smithi120 (mon.0) 861 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-10T04:20:36.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:35 smithi120 bash[19947]: audit 2024-09-10T04:20:34.634241+0000 mon.smithi120 (mon.0) 862 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-10T04:20:36.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:35 smithi120 bash[19947]: audit 2024-09-10T04:20:34.634241+0000 mon.smithi120 (mon.0) 862 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-10T04:20:36.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:36 smithi151 bash[25273]: cluster 2024-09-10T04:20:35.423018+0000 mgr.smithi120.xfjtcc (mgr.14205) 269 : cluster [DBG] pgmap v226: 225 pgs: 18 creating+peering, 13 unknown, 194 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 511 B/s wr, 4 op/s 2024-09-10T04:20:36.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:36 smithi151 bash[25273]: cluster 2024-09-10T04:20:35.423018+0000 mgr.smithi120.xfjtcc (mgr.14205) 269 : cluster [DBG] pgmap v226: 225 pgs: 18 creating+peering, 13 unknown, 194 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 511 B/s wr, 4 op/s 2024-09-10T04:20:36.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:36 smithi151 bash[25273]: audit 2024-09-10T04:20:35.621696+0000 mon.smithi120 (mon.0) 863 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-10T04:20:36.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:36 smithi151 bash[25273]: audit 2024-09-10T04:20:35.621696+0000 mon.smithi120 (mon.0) 863 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-10T04:20:36.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:36 smithi151 bash[25273]: cluster 2024-09-10T04:20:35.628891+0000 mon.smithi120 (mon.0) 864 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-10T04:20:36.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:36 smithi151 bash[25273]: cluster 2024-09-10T04:20:35.628891+0000 mon.smithi120 (mon.0) 864 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-10T04:20:37.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:36 smithi120 bash[19947]: cluster 2024-09-10T04:20:35.423018+0000 mgr.smithi120.xfjtcc (mgr.14205) 269 : cluster [DBG] pgmap v226: 225 pgs: 18 creating+peering, 13 unknown, 194 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 511 B/s wr, 4 op/s 2024-09-10T04:20:37.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:36 smithi120 bash[19947]: cluster 2024-09-10T04:20:35.423018+0000 mgr.smithi120.xfjtcc (mgr.14205) 269 : cluster [DBG] pgmap v226: 225 pgs: 18 creating+peering, 13 unknown, 194 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.0 KiB/s rd, 511 B/s wr, 4 op/s 2024-09-10T04:20:37.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:36 smithi120 bash[19947]: audit 2024-09-10T04:20:35.621696+0000 mon.smithi120 (mon.0) 863 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-10T04:20:37.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:36 smithi120 bash[19947]: audit 2024-09-10T04:20:35.621696+0000 mon.smithi120 (mon.0) 863 : audit [INF] from='client.? 172.21.15.120:0/3480496006' entity='client.rgw.foorgw.smithi120.clyuzb' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-10T04:20:37.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:36 smithi120 bash[19947]: cluster 2024-09-10T04:20:35.628891+0000 mon.smithi120 (mon.0) 864 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-10T04:20:37.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:36 smithi120 bash[19947]: cluster 2024-09-10T04:20:35.628891+0000 mon.smithi120 (mon.0) 864 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-10T04:20:38.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:38 smithi151 bash[25273]: cluster 2024-09-10T04:20:37.424412+0000 mgr.smithi120.xfjtcc (mgr.14205) 270 : cluster [DBG] pgmap v228: 225 pgs: 5 creating+peering, 3 unknown, 217 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.9 KiB/s rd, 1.0 KiB/s wr, 7 op/s 2024-09-10T04:20:38.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:38 smithi151 bash[25273]: cluster 2024-09-10T04:20:37.424412+0000 mgr.smithi120.xfjtcc (mgr.14205) 270 : cluster [DBG] pgmap v228: 225 pgs: 5 creating+peering, 3 unknown, 217 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.9 KiB/s rd, 1.0 KiB/s wr, 7 op/s 2024-09-10T04:20:39.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:38 smithi120 bash[19947]: cluster 2024-09-10T04:20:37.424412+0000 mgr.smithi120.xfjtcc (mgr.14205) 270 : cluster [DBG] pgmap v228: 225 pgs: 5 creating+peering, 3 unknown, 217 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.9 KiB/s rd, 1.0 KiB/s wr, 7 op/s 2024-09-10T04:20:39.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:38 smithi120 bash[19947]: cluster 2024-09-10T04:20:37.424412+0000 mgr.smithi120.xfjtcc (mgr.14205) 270 : cluster [DBG] pgmap v228: 225 pgs: 5 creating+peering, 3 unknown, 217 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.9 KiB/s rd, 1.0 KiB/s wr, 7 op/s 2024-09-10T04:20:40.580 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:20:40.965 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:40 smithi151 bash[25273]: cluster 2024-09-10T04:20:39.425365+0000 mgr.smithi120.xfjtcc (mgr.14205) 271 : cluster [DBG] pgmap v229: 225 pgs: 5 creating+peering, 220 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 852 B/s wr, 4 op/s 2024-09-10T04:20:40.965 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:40 smithi151 bash[25273]: cluster 2024-09-10T04:20:39.425365+0000 mgr.smithi120.xfjtcc (mgr.14205) 271 : cluster [DBG] pgmap v229: 225 pgs: 5 creating+peering, 220 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 852 B/s wr, 4 op/s 2024-09-10T04:20:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:40 smithi120 bash[19947]: cluster 2024-09-10T04:20:39.425365+0000 mgr.smithi120.xfjtcc (mgr.14205) 271 : cluster [DBG] pgmap v229: 225 pgs: 5 creating+peering, 220 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 852 B/s wr, 4 op/s 2024-09-10T04:20:41.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:40 smithi120 bash[19947]: cluster 2024-09-10T04:20:39.425365+0000 mgr.smithi120.xfjtcc (mgr.14205) 271 : cluster [DBG] pgmap v229: 225 pgs: 5 creating+peering, 220 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 852 B/s wr, 4 op/s 2024-09-10T04:20:41.215 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:40 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:41.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:41 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:42.552 INFO:teuthology.orchestra.run.smithi120.stdout:{ 2024-09-10T04:20:42.553 INFO:teuthology.orchestra.run.smithi120.stdout: "bind": "/foobucket", 2024-09-10T04:20:42.553 INFO:teuthology.orchestra.run.smithi120.stdout: "cluster": "foo", 2024-09-10T04:20:42.553 INFO:teuthology.orchestra.run.smithi120.stdout: "mode": "RW", 2024-09-10T04:20:42.553 INFO:teuthology.orchestra.run.smithi120.stdout: "path": "foobucket", 2024-09-10T04:20:42.553 INFO:teuthology.orchestra.run.smithi120.stdout: "squash": "none" 2024-09-10T04:20:42.553 INFO:teuthology.orchestra.run.smithi120.stdout:} 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: audit 2024-09-10T04:20:41.402262+0000 mon.smithi120 (mon.0) 865 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: audit 2024-09-10T04:20:41.402262+0000 mon.smithi120 (mon.0) 865 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: audit 2024-09-10T04:20:41.414465+0000 mon.smithi120 (mon.0) 866 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: audit 2024-09-10T04:20:41.414465+0000 mon.smithi120 (mon.0) 866 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: audit 2024-09-10T04:20:41.424235+0000 mon.smithi120 (mon.0) 867 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: audit 2024-09-10T04:20:41.424235+0000 mon.smithi120 (mon.0) 867 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: cephadm 2024-09-10T04:20:41.426512+0000 mgr.smithi120.xfjtcc (mgr.14205) 272 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: cephadm 2024-09-10T04:20:41.426512+0000 mgr.smithi120.xfjtcc (mgr.14205) 272 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-09-10T04:20:42.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: cephadm 2024-09-10T04:20:41.426670+0000 mgr.smithi120.xfjtcc (mgr.14205) 273 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi151 interface enp3s0f1 2024-09-10T04:20:42.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: cephadm 2024-09-10T04:20:41.426670+0000 mgr.smithi120.xfjtcc (mgr.14205) 273 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi151 interface enp3s0f1 2024-09-10T04:20:42.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: cluster 2024-09-10T04:20:41.427256+0000 mgr.smithi120.xfjtcc (mgr.14205) 274 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.0 KiB/s rd, 786 B/s wr, 4 op/s 2024-09-10T04:20:42.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: cluster 2024-09-10T04:20:41.427256+0000 mgr.smithi120.xfjtcc (mgr.14205) 274 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.0 KiB/s rd, 786 B/s wr, 4 op/s 2024-09-10T04:20:42.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: cephadm 2024-09-10T04:20:41.427285+0000 mgr.smithi120.xfjtcc (mgr.14205) 275 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi120.cweklp on smithi120 2024-09-10T04:20:42.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:42 smithi151 bash[25273]: cephadm 2024-09-10T04:20:41.427285+0000 mgr.smithi120.xfjtcc (mgr.14205) 275 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi120.cweklp on smithi120 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: audit 2024-09-10T04:20:41.402262+0000 mon.smithi120 (mon.0) 865 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: audit 2024-09-10T04:20:41.402262+0000 mon.smithi120 (mon.0) 865 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: audit 2024-09-10T04:20:41.414465+0000 mon.smithi120 (mon.0) 866 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: audit 2024-09-10T04:20:41.414465+0000 mon.smithi120 (mon.0) 866 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: audit 2024-09-10T04:20:41.424235+0000 mon.smithi120 (mon.0) 867 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: audit 2024-09-10T04:20:41.424235+0000 mon.smithi120 (mon.0) 867 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: cephadm 2024-09-10T04:20:41.426512+0000 mgr.smithi120.xfjtcc (mgr.14205) 272 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: cephadm 2024-09-10T04:20:41.426512+0000 mgr.smithi120.xfjtcc (mgr.14205) 272 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: cephadm 2024-09-10T04:20:41.426670+0000 mgr.smithi120.xfjtcc (mgr.14205) 273 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi151 interface enp3s0f1 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: cephadm 2024-09-10T04:20:41.426670+0000 mgr.smithi120.xfjtcc (mgr.14205) 273 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi151 interface enp3s0f1 2024-09-10T04:20:42.763 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: cluster 2024-09-10T04:20:41.427256+0000 mgr.smithi120.xfjtcc (mgr.14205) 274 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.0 KiB/s rd, 786 B/s wr, 4 op/s 2024-09-10T04:20:42.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: cluster 2024-09-10T04:20:41.427256+0000 mgr.smithi120.xfjtcc (mgr.14205) 274 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.0 KiB/s rd, 786 B/s wr, 4 op/s 2024-09-10T04:20:42.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: cephadm 2024-09-10T04:20:41.427285+0000 mgr.smithi120.xfjtcc (mgr.14205) 275 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi120.cweklp on smithi120 2024-09-10T04:20:42.764 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:42 smithi120 bash[19947]: cephadm 2024-09-10T04:20:41.427285+0000 mgr.smithi120.xfjtcc (mgr.14205) 275 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi120.cweklp on smithi120 2024-09-10T04:20:43.734 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:43 smithi151 bash[25273]: audit 2024-09-10T04:20:42.182188+0000 mgr.smithi120.xfjtcc (mgr.14205) 276 : audit [DBG] from='client.14582 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:20:43.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:43 smithi151 bash[25273]: audit 2024-09-10T04:20:42.182188+0000 mgr.smithi120.xfjtcc (mgr.14205) 276 : audit [DBG] from='client.14582 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:20:43.756 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:43 smithi120 bash[19947]: audit 2024-09-10T04:20:42.182188+0000 mgr.smithi120.xfjtcc (mgr.14205) 276 : audit [DBG] from='client.14582 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:20:43.756 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:43 smithi120 bash[19947]: audit 2024-09-10T04:20:42.182188+0000 mgr.smithi120.xfjtcc (mgr.14205) 276 : audit [DBG] from='client.14582 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:20:43.757 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-10T04:20:43.767 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-10T04:20:43.767 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-10T04:20:44.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:44 smithi151 bash[25273]: cluster 2024-09-10T04:20:43.429082+0000 mgr.smithi120.xfjtcc (mgr.14205) 277 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 697 B/s wr, 7 op/s 2024-09-10T04:20:44.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:44 smithi151 bash[25273]: cluster 2024-09-10T04:20:43.429082+0000 mgr.smithi120.xfjtcc (mgr.14205) 277 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 697 B/s wr, 7 op/s 2024-09-10T04:20:44.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:44 smithi120 bash[19947]: cluster 2024-09-10T04:20:43.429082+0000 mgr.smithi120.xfjtcc (mgr.14205) 277 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 697 B/s wr, 7 op/s 2024-09-10T04:20:44.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:44 smithi120 bash[19947]: cluster 2024-09-10T04:20:43.429082+0000 mgr.smithi120.xfjtcc (mgr.14205) 277 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 697 B/s wr, 7 op/s 2024-09-10T04:20:46.734 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:46 smithi151 bash[25273]: cluster 2024-09-10T04:20:45.430106+0000 mgr.smithi120.xfjtcc (mgr.14205) 278 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-10T04:20:46.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:46 smithi151 bash[25273]: cluster 2024-09-10T04:20:45.430106+0000 mgr.smithi120.xfjtcc (mgr.14205) 278 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-10T04:20:46.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:46 smithi120 bash[19947]: cluster 2024-09-10T04:20:45.430106+0000 mgr.smithi120.xfjtcc (mgr.14205) 278 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-10T04:20:46.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:46 smithi120 bash[19947]: cluster 2024-09-10T04:20:45.430106+0000 mgr.smithi120.xfjtcc (mgr.14205) 278 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 12 op/s 2024-09-10T04:20:48.669 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:20:48.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:48 smithi151 bash[25273]: cluster 2024-09-10T04:20:47.431604+0000 mgr.smithi120.xfjtcc (mgr.14205) 279 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 693 B/s wr, 15 op/s 2024-09-10T04:20:48.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:48 smithi151 bash[25273]: cluster 2024-09-10T04:20:47.431604+0000 mgr.smithi120.xfjtcc (mgr.14205) 279 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 693 B/s wr, 15 op/s 2024-09-10T04:20:48.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:48 smithi151 bash[25273]: audit 2024-09-10T04:20:47.590782+0000 mon.smithi120 (mon.0) 868 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:48.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:48 smithi151 bash[25273]: audit 2024-09-10T04:20:47.590782+0000 mon.smithi120 (mon.0) 868 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:49.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:48 smithi120 bash[19947]: cluster 2024-09-10T04:20:47.431604+0000 mgr.smithi120.xfjtcc (mgr.14205) 279 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 693 B/s wr, 15 op/s 2024-09-10T04:20:49.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:48 smithi120 bash[19947]: cluster 2024-09-10T04:20:47.431604+0000 mgr.smithi120.xfjtcc (mgr.14205) 279 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 693 B/s wr, 15 op/s 2024-09-10T04:20:49.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:48 smithi120 bash[19947]: audit 2024-09-10T04:20:47.590782+0000 mon.smithi120 (mon.0) 868 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:49.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:48 smithi120 bash[19947]: audit 2024-09-10T04:20:47.590782+0000 mon.smithi120 (mon.0) 868 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:49.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:49 smithi151 bash[25273]: audit 2024-09-10T04:20:48.666129+0000 mon.smithi120 (mon.0) 869 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:49.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:49 smithi151 bash[25273]: audit 2024-09-10T04:20:48.666129+0000 mon.smithi120 (mon.0) 869 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:50.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:49 smithi120 bash[19947]: audit 2024-09-10T04:20:48.666129+0000 mon.smithi120 (mon.0) 869 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:50.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:49 smithi120 bash[19947]: audit 2024-09-10T04:20:48.666129+0000 mon.smithi120 (mon.0) 869 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:20:50.724 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:20:50.725 INFO:teuthology.orchestra.run.smithi120.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-10T04:12:53.490811Z", "last_refresh": "2024-09-10T04:19:50.421438Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:14:47.238412Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-10T04:12:45.557129Z", "last_refresh": "2024-09-10T04:19:50.015961Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:14:50.231080Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-10T04:12:43.618629Z", "last_refresh": "2024-09-10T04:19:50.016082Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-10T04:12:49.493289Z", "last_refresh": "2024-09-10T04:19:50.421528Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:20:41.424624Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.120/16"}, "status": {"created": "2024-09-10T04:19:59.163829Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.120/16"}}, {"events": ["2024-09-10T04:14:56.100407Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-10T04:12:41.674866Z", "last_refresh": "2024-09-10T04:19:50.016319Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:15:01.357589Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi120:172.21.15.120=smithi120", "smithi151:172.21.15.151=smithi151"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-10T04:14:16.881603Z", "last_refresh": "2024-09-10T04:19:50.016429Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:20:14.688702Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-10T04:19:59.157746Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-10T04:14:51.399794Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-10T04:12:51.511696Z", "last_refresh": "2024-09-10T04:19:50.016215Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-10T04:15:23.681927Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-10T04:15:23.670512Z", "last_refresh": "2024-09-10T04:19:50.016529Z", "running": 8, "size": 8}}, {"events": ["2024-09-10T04:15:01.367033Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-10T04:12:47.511935Z", "last_refresh": "2024-09-10T04:19:50.421617Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:20:10.099453Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-10T04:20:10.090111Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-10T04:20:50.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:50 smithi151 bash[25273]: cluster 2024-09-10T04:20:49.432639+0000 mgr.smithi120.xfjtcc (mgr.14205) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-10T04:20:50.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:50 smithi151 bash[25273]: cluster 2024-09-10T04:20:49.432639+0000 mgr.smithi120.xfjtcc (mgr.14205) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-10T04:20:51.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:50 smithi120 bash[19947]: cluster 2024-09-10T04:20:49.432639+0000 mgr.smithi120.xfjtcc (mgr.14205) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-10T04:20:51.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:50 smithi120 bash[19947]: cluster 2024-09-10T04:20:49.432639+0000 mgr.smithi120.xfjtcc (mgr.14205) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-10T04:20:51.766 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-10T04:20:51.949 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:51 smithi120 bash[19947]: audit 2024-09-10T04:20:50.720448+0000 mgr.smithi120.xfjtcc (mgr.14205) 281 : audit [DBG] from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:20:51.949 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:51 smithi120 bash[19947]: audit 2024-09-10T04:20:50.720448+0000 mgr.smithi120.xfjtcc (mgr.14205) 281 : audit [DBG] from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:20:51.949 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:51 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:51.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:51 smithi151 bash[25273]: audit 2024-09-10T04:20:50.720448+0000 mgr.smithi120.xfjtcc (mgr.14205) 281 : audit [DBG] from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:20:51.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:51 smithi151 bash[25273]: audit 2024-09-10T04:20:50.720448+0000 mgr.smithi120.xfjtcc (mgr.14205) 281 : audit [DBG] from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:20:52.221 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:20:52.767 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-10T04:20:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: cluster 2024-09-10T04:20:51.434572+0000 mgr.smithi120.xfjtcc (mgr.14205) 282 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-10T04:20:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: cluster 2024-09-10T04:20:51.434572+0000 mgr.smithi120.xfjtcc (mgr.14205) 282 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-10T04:20:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.265042+0000 mon.smithi120 (mon.0) 870 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.265042+0000 mon.smithi120 (mon.0) 870 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.270572+0000 mon.smithi120 (mon.0) 871 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.270572+0000 mon.smithi120 (mon.0) 871 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.275493+0000 mon.smithi120 (mon.0) 872 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.275493+0000 mon.smithi120 (mon.0) 872 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.280287+0000 mon.smithi120 (mon.0) 873 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.280287+0000 mon.smithi120 (mon.0) 873 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.302707+0000 mon.smithi120 (mon.0) 874 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:20:52.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.302707+0000 mon.smithi120 (mon.0) 874 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:20:52.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.600931+0000 mon.smithi120 (mon.0) 875 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:52.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:52 smithi151 bash[25273]: audit 2024-09-10T04:20:52.600931+0000 mon.smithi120 (mon.0) 875 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: cluster 2024-09-10T04:20:51.434572+0000 mgr.smithi120.xfjtcc (mgr.14205) 282 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: cluster 2024-09-10T04:20:51.434572+0000 mgr.smithi120.xfjtcc (mgr.14205) 282 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 426 B/s wr, 14 op/s 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.265042+0000 mon.smithi120 (mon.0) 870 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.265042+0000 mon.smithi120 (mon.0) 870 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.270572+0000 mon.smithi120 (mon.0) 871 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.270572+0000 mon.smithi120 (mon.0) 871 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.275493+0000 mon.smithi120 (mon.0) 872 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.275493+0000 mon.smithi120 (mon.0) 872 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.280287+0000 mon.smithi120 (mon.0) 873 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.280287+0000 mon.smithi120 (mon.0) 873 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.302707+0000 mon.smithi120 (mon.0) 874 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:20:53.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.302707+0000 mon.smithi120 (mon.0) 874 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:20:53.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.600931+0000 mon.smithi120 (mon.0) 875 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:53.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:52 smithi120 bash[19947]: audit 2024-09-10T04:20:52.600931+0000 mon.smithi120 (mon.0) 875 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:54.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:54 smithi151 bash[25273]: cluster 2024-09-10T04:20:53.435675+0000 mgr.smithi120.xfjtcc (mgr.14205) 283 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-10T04:20:54.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:54 smithi151 bash[25273]: cluster 2024-09-10T04:20:53.435675+0000 mgr.smithi120.xfjtcc (mgr.14205) 283 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-10T04:20:55.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:54 smithi120 bash[19947]: cluster 2024-09-10T04:20:53.435675+0000 mgr.smithi120.xfjtcc (mgr.14205) 283 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-10T04:20:55.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:54 smithi120 bash[19947]: cluster 2024-09-10T04:20:53.435675+0000 mgr.smithi120.xfjtcc (mgr.14205) 283 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-10T04:20:56.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:56 smithi151 bash[25273]: cluster 2024-09-10T04:20:55.436840+0000 mgr.smithi120.xfjtcc (mgr.14205) 284 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 7.8 KiB/s rd, 255 B/s wr, 10 op/s 2024-09-10T04:20:56.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:56 smithi151 bash[25273]: cluster 2024-09-10T04:20:55.436840+0000 mgr.smithi120.xfjtcc (mgr.14205) 284 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 7.8 KiB/s rd, 255 B/s wr, 10 op/s 2024-09-10T04:20:57.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:56 smithi120 bash[19947]: cluster 2024-09-10T04:20:55.436840+0000 mgr.smithi120.xfjtcc (mgr.14205) 284 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 7.8 KiB/s rd, 255 B/s wr, 10 op/s 2024-09-10T04:20:57.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:56 smithi120 bash[19947]: cluster 2024-09-10T04:20:55.436840+0000 mgr.smithi120.xfjtcc (mgr.14205) 284 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 7.8 KiB/s rd, 255 B/s wr, 10 op/s 2024-09-10T04:20:57.439 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:20:58.800 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:20:58.800 INFO:teuthology.orchestra.run.smithi120.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-10T04:12:53.490811Z", "last_refresh": "2024-09-10T04:20:58.552961Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:14:47.238412Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-10T04:12:45.557129Z", "last_refresh": "2024-09-10T04:20:58.047245Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:14:50.231080Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-10T04:12:43.618629Z", "last_refresh": "2024-09-10T04:20:58.047442Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-10T04:12:49.493289Z", "last_refresh": "2024-09-10T04:20:58.553055Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:20:52.280462Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.120/16"}, "status": {"created": "2024-09-10T04:19:59.163829Z", "last_refresh": "2024-09-10T04:20:58.048570Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.120/16"}}, {"events": ["2024-09-10T04:14:56.100407Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-10T04:12:41.674866Z", "last_refresh": "2024-09-10T04:20:58.047827Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:15:01.357589Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi120:172.21.15.120=smithi120", "smithi151:172.21.15.151=smithi151"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-10T04:14:16.881603Z", "last_refresh": "2024-09-10T04:20:58.047940Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:20:14.688702Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-10T04:19:59.157746Z", "last_refresh": "2024-09-10T04:20:58.553721Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:14:51.399794Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-10T04:12:51.511696Z", "last_refresh": "2024-09-10T04:20:58.047617Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-10T04:15:23.681927Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-10T04:15:23.670512Z", "last_refresh": "2024-09-10T04:20:58.048043Z", "running": 8, "size": 8}}, {"events": ["2024-09-10T04:15:01.367033Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-10T04:12:47.511935Z", "last_refresh": "2024-09-10T04:20:58.553150Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:20:10.099453Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-10T04:20:10.090111Z", "last_refresh": "2024-09-10T04:20:58.048469Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-10T04:20:59.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: cluster 2024-09-10T04:20:57.438388+0000 mgr.smithi120.xfjtcc (mgr.14205) 285 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 3.8 KiB/s rd, 255 B/s wr, 5 op/s 2024-09-10T04:20:59.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: cluster 2024-09-10T04:20:57.438388+0000 mgr.smithi120.xfjtcc (mgr.14205) 285 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 3.8 KiB/s rd, 255 B/s wr, 5 op/s 2024-09-10T04:20:59.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: audit 2024-09-10T04:20:58.054236+0000 mon.smithi120 (mon.0) 876 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: audit 2024-09-10T04:20:58.054236+0000 mon.smithi120 (mon.0) 876 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: audit 2024-09-10T04:20:58.059808+0000 mon.smithi120 (mon.0) 877 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: audit 2024-09-10T04:20:58.059808+0000 mon.smithi120 (mon.0) 877 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: audit 2024-09-10T04:20:58.558835+0000 mon.smithi120 (mon.0) 878 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: audit 2024-09-10T04:20:58.558835+0000 mon.smithi120 (mon.0) 878 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: audit 2024-09-10T04:20:58.566444+0000 mon.smithi120 (mon.0) 879 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:20:59 smithi120 bash[19947]: audit 2024-09-10T04:20:58.566444+0000 mon.smithi120 (mon.0) 879 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.427 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-10T04:20:59.427 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-10T04:20:59.438 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-10T04:20:59.438 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- ceph orch ls -f json 2024-09-10T04:20:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: cluster 2024-09-10T04:20:57.438388+0000 mgr.smithi120.xfjtcc (mgr.14205) 285 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 3.8 KiB/s rd, 255 B/s wr, 5 op/s 2024-09-10T04:20:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: cluster 2024-09-10T04:20:57.438388+0000 mgr.smithi120.xfjtcc (mgr.14205) 285 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 3.8 KiB/s rd, 255 B/s wr, 5 op/s 2024-09-10T04:20:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: audit 2024-09-10T04:20:58.054236+0000 mon.smithi120 (mon.0) 876 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: audit 2024-09-10T04:20:58.054236+0000 mon.smithi120 (mon.0) 876 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: audit 2024-09-10T04:20:58.059808+0000 mon.smithi120 (mon.0) 877 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: audit 2024-09-10T04:20:58.059808+0000 mon.smithi120 (mon.0) 877 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: audit 2024-09-10T04:20:58.558835+0000 mon.smithi120 (mon.0) 878 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: audit 2024-09-10T04:20:58.558835+0000 mon.smithi120 (mon.0) 878 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: audit 2024-09-10T04:20:58.566444+0000 mon.smithi120 (mon.0) 879 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:20:59.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:20:59 smithi151 bash[25273]: audit 2024-09-10T04:20:58.566444+0000 mon.smithi120 (mon.0) 879 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.369 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:58.795337+0000 mgr.smithi120.xfjtcc (mgr.14205) 286 : audit [DBG] from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:58.795337+0000 mgr.smithi120.xfjtcc (mgr.14205) 286 : audit [DBG] from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.160979+0000 mon.smithi120 (mon.0) 880 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.160979+0000 mon.smithi120 (mon.0) 880 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.161683+0000 mon.smithi120 (mon.0) 881 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.161683+0000 mon.smithi120 (mon.0) 881 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.601688+0000 mon.smithi120 (mon.0) 882 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.601688+0000 mon.smithi120 (mon.0) 882 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.609851+0000 mon.smithi120 (mon.0) 883 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.609851+0000 mon.smithi120 (mon.0) 883 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.618576+0000 mon.smithi120 (mon.0) 884 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.618576+0000 mon.smithi120 (mon.0) 884 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.622384+0000 mon.smithi120 (mon.0) 885 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:00.370 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.622384+0000 mon.smithi120 (mon.0) 885 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:00.371 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.635648+0000 mon.smithi120 (mon.0) 886 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.371 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.635648+0000 mon.smithi120 (mon.0) 886 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.371 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.654499+0000 mon.smithi120 (mon.0) 887 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:21:00.371 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:00 smithi120 bash[19947]: audit 2024-09-10T04:20:59.654499+0000 mon.smithi120 (mon.0) 887 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:21:00.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:58.795337+0000 mgr.smithi120.xfjtcc (mgr.14205) 286 : audit [DBG] from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:21:00.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:58.795337+0000 mgr.smithi120.xfjtcc (mgr.14205) 286 : audit [DBG] from='client.14626 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:21:00.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.160979+0000 mon.smithi120 (mon.0) 880 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:00.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.160979+0000 mon.smithi120 (mon.0) 880 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:00.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.161683+0000 mon.smithi120 (mon.0) 881 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:00.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.161683+0000 mon.smithi120 (mon.0) 881 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.601688+0000 mon.smithi120 (mon.0) 882 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.601688+0000 mon.smithi120 (mon.0) 882 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.609851+0000 mon.smithi120 (mon.0) 883 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.609851+0000 mon.smithi120 (mon.0) 883 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.618576+0000 mon.smithi120 (mon.0) 884 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.618576+0000 mon.smithi120 (mon.0) 884 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.622384+0000 mon.smithi120 (mon.0) 885 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.622384+0000 mon.smithi120 (mon.0) 885 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.635648+0000 mon.smithi120 (mon.0) 886 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.635648+0000 mon.smithi120 (mon.0) 886 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.654499+0000 mon.smithi120 (mon.0) 887 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:21:00.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:00 smithi151 bash[25273]: audit 2024-09-10T04:20:59.654499+0000 mon.smithi120 (mon.0) 887 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: cephadm 2024-09-10T04:20:59.165868+0000 mgr.smithi120.xfjtcc (mgr.14205) 287 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: cephadm 2024-09-10T04:20:59.165868+0000 mgr.smithi120.xfjtcc (mgr.14205) 287 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: cluster 2024-09-10T04:20:59.439260+0000 mgr.smithi120.xfjtcc (mgr.14205) 288 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: cluster 2024-09-10T04:20:59.439260+0000 mgr.smithi120.xfjtcc (mgr.14205) 288 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: audit 2024-09-10T04:20:59.655302+0000 mgr.smithi120.xfjtcc (mgr.14205) 289 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: audit 2024-09-10T04:20:59.655302+0000 mgr.smithi120.xfjtcc (mgr.14205) 289 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: cephadm 2024-09-10T04:20:59.660486+0000 mgr.smithi120.xfjtcc (mgr.14205) 290 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: cephadm 2024-09-10T04:20:59.660486+0000 mgr.smithi120.xfjtcc (mgr.14205) 290 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:21:01.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: cephadm 2024-09-10T04:20:59.878193+0000 mgr.smithi120.xfjtcc (mgr.14205) 291 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:21:01.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: cephadm 2024-09-10T04:20:59.878193+0000 mgr.smithi120.xfjtcc (mgr.14205) 291 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:21:01.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: audit 2024-09-10T04:21:00.266283+0000 mon.smithi120 (mon.0) 888 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:21:01.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:01 smithi120 bash[19947]: audit 2024-09-10T04:21:00.266283+0000 mon.smithi120 (mon.0) 888 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: cephadm 2024-09-10T04:20:59.165868+0000 mgr.smithi120.xfjtcc (mgr.14205) 287 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: cephadm 2024-09-10T04:20:59.165868+0000 mgr.smithi120.xfjtcc (mgr.14205) 287 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: cluster 2024-09-10T04:20:59.439260+0000 mgr.smithi120.xfjtcc (mgr.14205) 288 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: cluster 2024-09-10T04:20:59.439260+0000 mgr.smithi120.xfjtcc (mgr.14205) 288 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: audit 2024-09-10T04:20:59.655302+0000 mgr.smithi120.xfjtcc (mgr.14205) 289 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: audit 2024-09-10T04:20:59.655302+0000 mgr.smithi120.xfjtcc (mgr.14205) 289 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: cephadm 2024-09-10T04:20:59.660486+0000 mgr.smithi120.xfjtcc (mgr.14205) 290 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: cephadm 2024-09-10T04:20:59.660486+0000 mgr.smithi120.xfjtcc (mgr.14205) 290 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:21:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: cephadm 2024-09-10T04:20:59.878193+0000 mgr.smithi120.xfjtcc (mgr.14205) 291 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:21:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: cephadm 2024-09-10T04:20:59.878193+0000 mgr.smithi120.xfjtcc (mgr.14205) 291 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:21:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: audit 2024-09-10T04:21:00.266283+0000 mon.smithi120 (mon.0) 888 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:21:01.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:01 smithi151 bash[25273]: audit 2024-09-10T04:21:00.266283+0000 mon.smithi120 (mon.0) 888 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-10T04:21:02.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:02 smithi151 bash[25273]: audit 2024-09-10T04:21:00.267289+0000 mgr.smithi120.xfjtcc (mgr.14205) 292 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:21:02.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:02 smithi151 bash[25273]: audit 2024-09-10T04:21:00.267289+0000 mgr.smithi120.xfjtcc (mgr.14205) 292 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:21:02.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:02 smithi120 bash[19947]: audit 2024-09-10T04:21:00.267289+0000 mgr.smithi120.xfjtcc (mgr.14205) 292 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:21:02.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:02 smithi120 bash[19947]: audit 2024-09-10T04:21:00.267289+0000 mgr.smithi120.xfjtcc (mgr.14205) 292 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-10T04:21:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:03 smithi151 bash[25273]: cluster 2024-09-10T04:21:01.441290+0000 mgr.smithi120.xfjtcc (mgr.14205) 293 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-10T04:21:03.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:03 smithi151 bash[25273]: cluster 2024-09-10T04:21:01.441290+0000 mgr.smithi120.xfjtcc (mgr.14205) 293 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-10T04:21:03.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:03 smithi120 bash[19947]: cluster 2024-09-10T04:21:01.441290+0000 mgr.smithi120.xfjtcc (mgr.14205) 293 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-10T04:21:03.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:03 smithi120 bash[19947]: cluster 2024-09-10T04:21:01.441290+0000 mgr.smithi120.xfjtcc (mgr.14205) 293 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-10T04:21:04.111 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:04 smithi120 bash[19947]: audit 2024-09-10T04:21:03.665841+0000 mon.smithi120 (mon.0) 889 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:04.111 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:04 smithi120 bash[19947]: audit 2024-09-10T04:21:03.665841+0000 mon.smithi120 (mon.0) 889 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:04.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:04 smithi151 bash[25273]: audit 2024-09-10T04:21:03.665841+0000 mon.smithi120 (mon.0) 889 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:04.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:04 smithi151 bash[25273]: audit 2024-09-10T04:21:03.665841+0000 mon.smithi120 (mon.0) 889 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:05.297 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:21:05.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: cluster 2024-09-10T04:21:03.442504+0000 mgr.smithi120.xfjtcc (mgr.14205) 294 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 85 B/s wr, 2 op/s 2024-09-10T04:21:05.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: cluster 2024-09-10T04:21:03.442504+0000 mgr.smithi120.xfjtcc (mgr.14205) 294 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 85 B/s wr, 2 op/s 2024-09-10T04:21:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: audit 2024-09-10T04:21:04.660325+0000 mon.smithi120 (mon.0) 890 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: audit 2024-09-10T04:21:04.660325+0000 mon.smithi120 (mon.0) 890 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: audit 2024-09-10T04:21:04.665788+0000 mon.smithi120 (mon.0) 891 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: audit 2024-09-10T04:21:04.665788+0000 mon.smithi120 (mon.0) 891 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: audit 2024-09-10T04:21:04.672159+0000 mon.smithi120 (mon.0) 892 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:21:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: audit 2024-09-10T04:21:04.672159+0000 mon.smithi120 (mon.0) 892 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:21:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: audit 2024-09-10T04:21:04.943293+0000 mon.smithi120 (mon.0) 893 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:05 smithi151 bash[25273]: audit 2024-09-10T04:21:04.943293+0000 mon.smithi120 (mon.0) 893 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:05.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: cluster 2024-09-10T04:21:03.442504+0000 mgr.smithi120.xfjtcc (mgr.14205) 294 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 85 B/s wr, 2 op/s 2024-09-10T04:21:05.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: cluster 2024-09-10T04:21:03.442504+0000 mgr.smithi120.xfjtcc (mgr.14205) 294 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 85 B/s wr, 2 op/s 2024-09-10T04:21:05.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: audit 2024-09-10T04:21:04.660325+0000 mon.smithi120 (mon.0) 890 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:05.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: audit 2024-09-10T04:21:04.660325+0000 mon.smithi120 (mon.0) 890 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:05.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: audit 2024-09-10T04:21:04.665788+0000 mon.smithi120 (mon.0) 891 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:05.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: audit 2024-09-10T04:21:04.665788+0000 mon.smithi120 (mon.0) 891 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:05.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: audit 2024-09-10T04:21:04.672159+0000 mon.smithi120 (mon.0) 892 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:21:05.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: audit 2024-09-10T04:21:04.672159+0000 mon.smithi120 (mon.0) 892 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:21:05.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: audit 2024-09-10T04:21:04.943293+0000 mon.smithi120 (mon.0) 893 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:05.531 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:05 smithi120 bash[19947]: audit 2024-09-10T04:21:04.943293+0000 mon.smithi120 (mon.0) 893 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:06.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:06 smithi120 bash[19947]: audit 2024-09-10T04:21:04.672635+0000 mgr.smithi120.xfjtcc (mgr.14205) 295 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:21:06.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:06 smithi120 bash[19947]: audit 2024-09-10T04:21:04.672635+0000 mgr.smithi120.xfjtcc (mgr.14205) 295 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:21:06.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:06 smithi151 bash[25273]: audit 2024-09-10T04:21:04.672635+0000 mgr.smithi120.xfjtcc (mgr.14205) 295 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:21:06.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:06 smithi151 bash[25273]: audit 2024-09-10T04:21:04.672635+0000 mgr.smithi120.xfjtcc (mgr.14205) 295 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:21:06.990 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-09-10T04:21:06.990 INFO:teuthology.orchestra.run.smithi120.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-10T04:12:53.490811Z", "last_refresh": "2024-09-10T04:20:58.552961Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:14:47.238412Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-10T04:12:45.557129Z", "last_refresh": "2024-09-10T04:20:58.047245Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:14:50.231080Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-10T04:12:43.618629Z", "last_refresh": "2024-09-10T04:20:58.047442Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-10T04:12:49.493289Z", "last_refresh": "2024-09-10T04:20:58.553055Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:20:52.280462Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.120/16"}, "status": {"created": "2024-09-10T04:19:59.163829Z", "last_refresh": "2024-09-10T04:20:58.048570Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.120/16"}}, {"events": ["2024-09-10T04:14:56.100407Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-10T04:12:41.674866Z", "last_refresh": "2024-09-10T04:20:58.047827Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:15:01.357589Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi120:172.21.15.120=smithi120", "smithi151:172.21.15.151=smithi151"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-10T04:14:16.881603Z", "last_refresh": "2024-09-10T04:20:58.047940Z", "running": 2, "size": 2}}, {"events": ["2024-09-10T04:20:59.636366Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-09-10T04:19:59.157746Z", "last_refresh": "2024-09-10T04:20:58.553721Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-10T04:14:51.399794Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-10T04:12:51.511696Z", "last_refresh": "2024-09-10T04:20:58.047617Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-10T04:15:23.681927Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-09-10T04:15:23.670512Z", "last_refresh": "2024-09-10T04:20:58.048043Z", "running": 8, "size": 8}}, {"events": ["2024-09-10T04:15:01.367033Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-10T04:12:47.511935Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2024-09-10T04:20:10.099453Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-09-10T04:20:10.090111Z", "last_refresh": "2024-09-10T04:20:58.048469Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-10T04:21:07.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:07 smithi120 bash[19947]: cluster 2024-09-10T04:21:05.443350+0000 mgr.smithi120.xfjtcc (mgr.14205) 296 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:07.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:07 smithi120 bash[19947]: cluster 2024-09-10T04:21:05.443350+0000 mgr.smithi120.xfjtcc (mgr.14205) 296 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:07.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:07 smithi151 bash[25273]: cluster 2024-09-10T04:21:05.443350+0000 mgr.smithi120.xfjtcc (mgr.14205) 296 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:07.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:07 smithi151 bash[25273]: cluster 2024-09-10T04:21:05.443350+0000 mgr.smithi120.xfjtcc (mgr.14205) 296 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:07.692 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-10T04:21:07.692 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-10T04:21:07.702 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:21:07.702 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-10T04:21:07.715 INFO:teuthology.orchestra.run.smithi120.stderr:+ mkdir /mnt/foo 2024-09-10T04:21:07.729 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-10T04:21:07.782 INFO:teuthology.orchestra.run.smithi120.stderr:+ sleep 5 2024-09-10T04:21:08.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:08 smithi151 bash[25273]: audit 2024-09-10T04:21:06.975786+0000 mgr.smithi120.xfjtcc (mgr.14205) 297 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:21:08.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:08 smithi151 bash[25273]: audit 2024-09-10T04:21:06.975786+0000 mgr.smithi120.xfjtcc (mgr.14205) 297 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:21:08.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:08 smithi120 bash[19947]: audit 2024-09-10T04:21:06.975786+0000 mgr.smithi120.xfjtcc (mgr.14205) 297 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:21:08.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:08 smithi120 bash[19947]: audit 2024-09-10T04:21:06.975786+0000 mgr.smithi120.xfjtcc (mgr.14205) 297 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-10T04:21:09.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:09 smithi120 bash[19947]: cluster 2024-09-10T04:21:07.444720+0000 mgr.smithi120.xfjtcc (mgr.14205) 298 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:09.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:09 smithi120 bash[19947]: cluster 2024-09-10T04:21:07.444720+0000 mgr.smithi120.xfjtcc (mgr.14205) 298 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:09.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:09 smithi151 bash[25273]: cluster 2024-09-10T04:21:07.444720+0000 mgr.smithi120.xfjtcc (mgr.14205) 298 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:09 smithi151 bash[25273]: cluster 2024-09-10T04:21:07.444720+0000 mgr.smithi120.xfjtcc (mgr.14205) 298 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:11 smithi151 bash[25273]: cluster 2024-09-10T04:21:09.445791+0000 mgr.smithi120.xfjtcc (mgr.14205) 299 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:11 smithi151 bash[25273]: cluster 2024-09-10T04:21:09.445791+0000 mgr.smithi120.xfjtcc (mgr.14205) 299 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:11 smithi151 bash[25273]: audit 2024-09-10T04:21:10.719028+0000 mon.smithi120 (mon.0) 894 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:11 smithi151 bash[25273]: audit 2024-09-10T04:21:10.719028+0000 mon.smithi120 (mon.0) 894 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:11 smithi151 bash[25273]: audit 2024-09-10T04:21:10.726020+0000 mon.smithi120 (mon.0) 895 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:11 smithi151 bash[25273]: audit 2024-09-10T04:21:10.726020+0000 mon.smithi120 (mon.0) 895 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:11.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:11 smithi120 bash[19947]: cluster 2024-09-10T04:21:09.445791+0000 mgr.smithi120.xfjtcc (mgr.14205) 299 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:11.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:11 smithi120 bash[19947]: cluster 2024-09-10T04:21:09.445791+0000 mgr.smithi120.xfjtcc (mgr.14205) 299 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:11.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:11 smithi120 bash[19947]: audit 2024-09-10T04:21:10.719028+0000 mon.smithi120 (mon.0) 894 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:11.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:11 smithi120 bash[19947]: audit 2024-09-10T04:21:10.719028+0000 mon.smithi120 (mon.0) 894 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:11.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:11 smithi120 bash[19947]: audit 2024-09-10T04:21:10.726020+0000 mon.smithi120 (mon.0) 895 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:11.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:11 smithi120 bash[19947]: audit 2024-09-10T04:21:10.726020+0000 mon.smithi120 (mon.0) 895 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.785 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.120:/foobucket /mnt/foo' 2024-09-10T04:21:12.841 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: cluster 2024-09-10T04:21:11.446713+0000 mgr.smithi120.xfjtcc (mgr.14205) 300 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:12.841 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: cluster 2024-09-10T04:21:11.446713+0000 mgr.smithi120.xfjtcc (mgr.14205) 300 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:12.841 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.566528+0000 mon.smithi120 (mon.0) 896 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.841 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.566528+0000 mon.smithi120 (mon.0) 896 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.841 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.573186+0000 mon.smithi120 (mon.0) 897 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.841 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.573186+0000 mon.smithi120 (mon.0) 897 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.842 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.574219+0000 mon.smithi120 (mon.0) 898 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:12.842 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.574219+0000 mon.smithi120 (mon.0) 898 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:12.842 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.574849+0000 mon.smithi120 (mon.0) 899 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:12.842 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.574849+0000 mon.smithi120 (mon.0) 899 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:12.842 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: cephadm 2024-09-10T04:21:11.579346+0000 mgr.smithi120.xfjtcc (mgr.14205) 301 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-10T04:21:12.842 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: cephadm 2024-09-10T04:21:11.579346+0000 mgr.smithi120.xfjtcc (mgr.14205) 301 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-10T04:21:12.842 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.847053+0000 mon.smithi120 (mon.0) 900 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.843 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.847053+0000 mon.smithi120 (mon.0) 900 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.843 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.850310+0000 mon.smithi120 (mon.0) 901 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:12.843 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.850310+0000 mon.smithi120 (mon.0) 901 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:12.843 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.860610+0000 mon.smithi120 (mon.0) 902 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.843 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:12 smithi120 bash[19947]: audit 2024-09-10T04:21:11.860610+0000 mon.smithi120 (mon.0) 902 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.843 INFO:teuthology.orchestra.run.smithi120.stderr:+ mount -t nfs 10.0.31.120:/foobucket /mnt/foo 2024-09-10T04:21:12.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: cluster 2024-09-10T04:21:11.446713+0000 mgr.smithi120.xfjtcc (mgr.14205) 300 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:12.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: cluster 2024-09-10T04:21:11.446713+0000 mgr.smithi120.xfjtcc (mgr.14205) 300 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-10T04:21:12.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.566528+0000 mon.smithi120 (mon.0) 896 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.566528+0000 mon.smithi120 (mon.0) 896 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.573186+0000 mon.smithi120 (mon.0) 897 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.573186+0000 mon.smithi120 (mon.0) 897 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.574219+0000 mon.smithi120 (mon.0) 898 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.574219+0000 mon.smithi120 (mon.0) 898 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.574849+0000 mon.smithi120 (mon.0) 899 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.574849+0000 mon.smithi120 (mon.0) 899 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: cephadm 2024-09-10T04:21:11.579346+0000 mgr.smithi120.xfjtcc (mgr.14205) 301 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: cephadm 2024-09-10T04:21:11.579346+0000 mgr.smithi120.xfjtcc (mgr.14205) 301 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.847053+0000 mon.smithi120 (mon.0) 900 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.847053+0000 mon.smithi120 (mon.0) 900 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.850310+0000 mon.smithi120 (mon.0) 901 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.850310+0000 mon.smithi120 (mon.0) 901 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.860610+0000 mon.smithi120 (mon.0) 902 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:12.986 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:12 smithi151 bash[25273]: audit 2024-09-10T04:21:11.860610+0000 mon.smithi120 (mon.0) 902 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:13.164 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-10T04:21:13.218 INFO:teuthology.orchestra.run.smithi120.stderr:+ find /mnt/foo -ls 2024-09-10T04:21:13.225 INFO:teuthology.orchestra.run.smithi120.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Sep 10 04:20 /mnt/foo 2024-09-10T04:21:13.225 INFO:teuthology.orchestra.run.smithi120.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 10 04:20 /mnt/foo/myobject 2024-09-10T04:21:13.227 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-09-10T04:21:13.281 INFO:teuthology.orchestra.run.smithi120.stderr:+ grep thebody /mnt/foo/myobject 2024-09-10T04:21:13.286 INFO:teuthology.orchestra.run.smithi120.stdout:thebody 2024-09-10T04:21:13.288 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-09-10T04:21:13.341 INFO:teuthology.orchestra.run.smithi120.stderr:+ echo test 2024-09-10T04:21:13.370 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-10T04:21:13.431 INFO:teuthology.orchestra.run.smithi120.stderr:+ sync 2024-09-10T04:21:13.838 INFO:teuthology.run_tasks:Running task python... 2024-09-10T04:21:13.855 INFO:tasks.python:Running python on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:21:13.855 INFO:tasks.python:import boto3 import json from io import BytesIO with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') data = BytesIO() bucket.download_fileobj(Fileobj=data, Key='newobject') print(data.getvalue()) assert data.getvalue().decode() == 'test\n' 2024-09-10T04:21:13.856 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-10T04:21:14.167 INFO:teuthology.orchestra.run.smithi120.stdout:b'test\n' 2024-09-10T04:21:14.219 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-10T04:21:14.229 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:21:14.229 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-10T04:21:14.238 INFO:teuthology.orchestra.run.smithi120.stderr:+ umount /mnt/foo 2024-09-10T04:21:14.280 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-10T04:21:14.290 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:21:14.290 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-09-10T04:21:14.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:14 smithi151 bash[25273]: cluster 2024-09-10T04:21:13.448236+0000 mgr.smithi120.xfjtcc (mgr.14205) 302 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-10T04:21:14.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:14 smithi151 bash[25273]: cluster 2024-09-10T04:21:13.448236+0000 mgr.smithi120.xfjtcc (mgr.14205) 302 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-10T04:21:15.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:14 smithi120 bash[19947]: cluster 2024-09-10T04:21:13.448236+0000 mgr.smithi120.xfjtcc (mgr.14205) 302 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-10T04:21:15.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:14 smithi120 bash[19947]: cluster 2024-09-10T04:21:13.448236+0000 mgr.smithi120.xfjtcc (mgr.14205) 302 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-10T04:21:16.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:16 smithi151 bash[25273]: cluster 2024-09-10T04:21:15.449952+0000 mgr.smithi120.xfjtcc (mgr.14205) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 5.3 KiB/s rd, 170 B/s wr, 7 op/s 2024-09-10T04:21:16.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:16 smithi151 bash[25273]: cluster 2024-09-10T04:21:15.449952+0000 mgr.smithi120.xfjtcc (mgr.14205) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 5.3 KiB/s rd, 170 B/s wr, 7 op/s 2024-09-10T04:21:17.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:16 smithi120 bash[19947]: cluster 2024-09-10T04:21:15.449952+0000 mgr.smithi120.xfjtcc (mgr.14205) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 5.3 KiB/s rd, 170 B/s wr, 7 op/s 2024-09-10T04:21:17.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:16 smithi120 bash[19947]: cluster 2024-09-10T04:21:15.449952+0000 mgr.smithi120.xfjtcc (mgr.14205) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 5.3 KiB/s rd, 170 B/s wr, 7 op/s 2024-09-10T04:21:18.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:18 smithi151 bash[25273]: cluster 2024-09-10T04:21:17.451448+0000 mgr.smithi120.xfjtcc (mgr.14205) 304 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:18.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:18 smithi151 bash[25273]: cluster 2024-09-10T04:21:17.451448+0000 mgr.smithi120.xfjtcc (mgr.14205) 304 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:19.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:18 smithi120 bash[19947]: cluster 2024-09-10T04:21:17.451448+0000 mgr.smithi120.xfjtcc (mgr.14205) 304 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:19.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:18 smithi120 bash[19947]: cluster 2024-09-10T04:21:17.451448+0000 mgr.smithi120.xfjtcc (mgr.14205) 304 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:19.179 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:21:19.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:19 smithi120 bash[19947]: audit 2024-09-10T04:21:18.666637+0000 mon.smithi120 (mon.0) 903 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:19.889 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:19 smithi120 bash[19947]: audit 2024-09-10T04:21:18.666637+0000 mon.smithi120 (mon.0) 903 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:19.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:19 smithi151 bash[25273]: audit 2024-09-10T04:21:18.666637+0000 mon.smithi120 (mon.0) 903 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:19.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:19 smithi151 bash[25273]: audit 2024-09-10T04:21:18.666637+0000 mon.smithi120 (mon.0) 903 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:20.851 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:20 smithi120 bash[19947]: cluster 2024-09-10T04:21:19.452517+0000 mgr.smithi120.xfjtcc (mgr.14205) 305 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:20.851 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:20 smithi120 bash[19947]: cluster 2024-09-10T04:21:19.452517+0000 mgr.smithi120.xfjtcc (mgr.14205) 305 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:20.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:20 smithi151 bash[25273]: cluster 2024-09-10T04:21:19.452517+0000 mgr.smithi120.xfjtcc (mgr.14205) 305 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:20.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:20 smithi151 bash[25273]: cluster 2024-09-10T04:21:19.452517+0000 mgr.smithi120.xfjtcc (mgr.14205) 305 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.4 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:21.324 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph nfs cluster rm foo' 2024-09-10T04:21:21.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:21 smithi151 bash[25273]: audit 2024-09-10T04:21:20.628783+0000 mgr.smithi120.xfjtcc (mgr.14205) 306 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:21.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:21 smithi151 bash[25273]: audit 2024-09-10T04:21:20.628783+0000 mgr.smithi120.xfjtcc (mgr.14205) 306 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:22.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:21 smithi120 bash[19947]: audit 2024-09-10T04:21:20.628783+0000 mgr.smithi120.xfjtcc (mgr.14205) 306 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:22.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:21 smithi120 bash[19947]: audit 2024-09-10T04:21:20.628783+0000 mgr.smithi120.xfjtcc (mgr.14205) 306 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:22.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:22 smithi151 bash[25273]: cluster 2024-09-10T04:21:21.454448+0000 mgr.smithi120.xfjtcc (mgr.14205) 307 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.6 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-10T04:21:22.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:22 smithi151 bash[25273]: cluster 2024-09-10T04:21:21.454448+0000 mgr.smithi120.xfjtcc (mgr.14205) 307 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.6 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-10T04:21:23.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:22 smithi120 bash[19947]: cluster 2024-09-10T04:21:21.454448+0000 mgr.smithi120.xfjtcc (mgr.14205) 307 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.6 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-10T04:21:23.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:22 smithi120 bash[19947]: cluster 2024-09-10T04:21:21.454448+0000 mgr.smithi120.xfjtcc (mgr.14205) 307 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.6 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-10T04:21:24.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:24 smithi151 bash[25273]: cluster 2024-09-10T04:21:23.455594+0000 mgr.smithi120.xfjtcc (mgr.14205) 308 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.5 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-10T04:21:24.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:24 smithi151 bash[25273]: cluster 2024-09-10T04:21:23.455594+0000 mgr.smithi120.xfjtcc (mgr.14205) 308 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.5 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-10T04:21:25.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:24 smithi120 bash[19947]: cluster 2024-09-10T04:21:23.455594+0000 mgr.smithi120.xfjtcc (mgr.14205) 308 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.5 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-10T04:21:25.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:24 smithi120 bash[19947]: cluster 2024-09-10T04:21:23.455594+0000 mgr.smithi120.xfjtcc (mgr.14205) 308 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 9.5 KiB/s rd, 682 B/s wr, 13 op/s 2024-09-10T04:21:26.183 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:21:26.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:26 smithi151 bash[25273]: cluster 2024-09-10T04:21:25.457162+0000 mgr.smithi120.xfjtcc (mgr.14205) 309 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:26.985 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:26 smithi151 bash[25273]: cluster 2024-09-10T04:21:25.457162+0000 mgr.smithi120.xfjtcc (mgr.14205) 309 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:27.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:26 smithi120 bash[19947]: cluster 2024-09-10T04:21:25.457162+0000 mgr.smithi120.xfjtcc (mgr.14205) 309 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:27.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:26 smithi120 bash[19947]: cluster 2024-09-10T04:21:25.457162+0000 mgr.smithi120.xfjtcc (mgr.14205) 309 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 8.9 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-10T04:21:28.416 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-10T04:21:28.435 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:21:28.436 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: cluster 2024-09-10T04:21:27.457906+0000 mgr.smithi120.xfjtcc (mgr.14205) 310 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 596 B/s wr, 5 op/s 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: cluster 2024-09-10T04:21:27.457906+0000 mgr.smithi120.xfjtcc (mgr.14205) 310 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 596 B/s wr, 5 op/s 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: audit 2024-09-10T04:21:27.756844+0000 mgr.smithi120.xfjtcc (mgr.14205) 311 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: audit 2024-09-10T04:21:27.756844+0000 mgr.smithi120.xfjtcc (mgr.14205) 311 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: cephadm 2024-09-10T04:21:27.764204+0000 mgr.smithi120.xfjtcc (mgr.14205) 312 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: cephadm 2024-09-10T04:21:27.764204+0000 mgr.smithi120.xfjtcc (mgr.14205) 312 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: audit 2024-09-10T04:21:27.770794+0000 mon.smithi120 (mon.0) 904 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: audit 2024-09-10T04:21:27.770794+0000 mon.smithi120 (mon.0) 904 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: cephadm 2024-09-10T04:21:27.771927+0000 mgr.smithi120.xfjtcc (mgr.14205) 313 : cephadm [INF] Remove service nfs.foo 2024-09-10T04:21:29.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: cephadm 2024-09-10T04:21:27.771927+0000 mgr.smithi120.xfjtcc (mgr.14205) 313 : cephadm [INF] Remove service nfs.foo 2024-09-10T04:21:29.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: audit 2024-09-10T04:21:27.771994+0000 mon.smithi120 (mon.0) 905 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:29.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: audit 2024-09-10T04:21:27.771994+0000 mon.smithi120 (mon.0) 905 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:29.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: audit 2024-09-10T04:21:27.775542+0000 mon.smithi120 (mon.0) 906 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:29.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:28 smithi120 bash[19947]: audit 2024-09-10T04:21:27.775542+0000 mon.smithi120 (mon.0) 906 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:29.045 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: cluster 2024-09-10T04:21:27.457906+0000 mgr.smithi120.xfjtcc (mgr.14205) 310 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 596 B/s wr, 5 op/s 2024-09-10T04:21:29.045 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: cluster 2024-09-10T04:21:27.457906+0000 mgr.smithi120.xfjtcc (mgr.14205) 310 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 4.2 KiB/s rd, 596 B/s wr, 5 op/s 2024-09-10T04:21:29.045 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: audit 2024-09-10T04:21:27.756844+0000 mgr.smithi120.xfjtcc (mgr.14205) 311 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:29.045 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: audit 2024-09-10T04:21:27.756844+0000 mgr.smithi120.xfjtcc (mgr.14205) 311 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: cephadm 2024-09-10T04:21:27.764204+0000 mgr.smithi120.xfjtcc (mgr.14205) 312 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: cephadm 2024-09-10T04:21:27.764204+0000 mgr.smithi120.xfjtcc (mgr.14205) 312 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: audit 2024-09-10T04:21:27.770794+0000 mon.smithi120 (mon.0) 904 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: audit 2024-09-10T04:21:27.770794+0000 mon.smithi120 (mon.0) 904 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: cephadm 2024-09-10T04:21:27.771927+0000 mgr.smithi120.xfjtcc (mgr.14205) 313 : cephadm [INF] Remove service nfs.foo 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: cephadm 2024-09-10T04:21:27.771927+0000 mgr.smithi120.xfjtcc (mgr.14205) 313 : cephadm [INF] Remove service nfs.foo 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: audit 2024-09-10T04:21:27.771994+0000 mon.smithi120 (mon.0) 905 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: audit 2024-09-10T04:21:27.771994+0000 mon.smithi120 (mon.0) 905 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:29.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: audit 2024-09-10T04:21:27.775542+0000 mon.smithi120 (mon.0) 906 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:29.047 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:28 smithi151 bash[25273]: audit 2024-09-10T04:21:27.775542+0000 mon.smithi120 (mon.0) 906 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:31.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:30 smithi120 bash[19947]: cluster 2024-09-10T04:21:29.458926+0000 mgr.smithi120.xfjtcc (mgr.14205) 314 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 0 B/s wr, 0 op/s 2024-09-10T04:21:31.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:30 smithi120 bash[19947]: cluster 2024-09-10T04:21:29.458926+0000 mgr.smithi120.xfjtcc (mgr.14205) 314 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 0 B/s wr, 0 op/s 2024-09-10T04:21:31.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:30 smithi151 bash[25273]: cluster 2024-09-10T04:21:29.458926+0000 mgr.smithi120.xfjtcc (mgr.14205) 314 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 0 B/s wr, 0 op/s 2024-09-10T04:21:31.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:30 smithi151 bash[25273]: cluster 2024-09-10T04:21:29.458926+0000 mgr.smithi120.xfjtcc (mgr.14205) 314 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 682 B/s rd, 0 B/s wr, 0 op/s 2024-09-10T04:21:32.906 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:21:33.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:32 smithi120 bash[19947]: cluster 2024-09-10T04:21:31.460991+0000 mgr.smithi120.xfjtcc (mgr.14205) 315 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-09-10T04:21:33.036 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:32 smithi120 bash[19947]: cluster 2024-09-10T04:21:31.460991+0000 mgr.smithi120.xfjtcc (mgr.14205) 315 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-09-10T04:21:33.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:32 smithi151 bash[25273]: cluster 2024-09-10T04:21:31.460991+0000 mgr.smithi120.xfjtcc (mgr.14205) 315 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-09-10T04:21:33.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:32 smithi151 bash[25273]: cluster 2024-09-10T04:21:31.460991+0000 mgr.smithi120.xfjtcc (mgr.14205) 315 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 B/s wr, 0 op/s 2024-09-10T04:21:34.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.414533+0000 mon.smithi120 (mon.0) 907 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]} : dispatch 2024-09-10T04:21:34.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.414533+0000 mon.smithi120 (mon.0) 907 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]} : dispatch 2024-09-10T04:21:34.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.414713+0000 mon.smithi120 (mon.0) 908 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]} : dispatch 2024-09-10T04:21:34.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.414713+0000 mon.smithi120 (mon.0) 908 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]} : dispatch 2024-09-10T04:21:34.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.549923+0000 mon.smithi120 (mon.0) 909 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:34.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.549923+0000 mon.smithi120 (mon.0) 909 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:34.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.555751+0000 mon.smithi120 (mon.0) 910 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:34.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.555751+0000 mon.smithi120 (mon.0) 910 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:34.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.666002+0000 mon.smithi120 (mon.0) 911 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:34.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:33 smithi120 bash[19947]: audit 2024-09-10T04:21:33.666002+0000 mon.smithi120 (mon.0) 911 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:34.045 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.414533+0000 mon.smithi120 (mon.0) 907 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]} : dispatch 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.414533+0000 mon.smithi120 (mon.0) 907 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]} : dispatch 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.414713+0000 mon.smithi120 (mon.0) 908 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]} : dispatch 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.414713+0000 mon.smithi120 (mon.0) 908 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]} : dispatch 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.549923+0000 mon.smithi120 (mon.0) 909 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.549923+0000 mon.smithi120 (mon.0) 909 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.555751+0000 mon.smithi120 (mon.0) 910 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.555751+0000 mon.smithi120 (mon.0) 910 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.666002+0000 mon.smithi120 (mon.0) 911 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:34.046 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:33 smithi151 bash[25273]: audit 2024-09-10T04:21:33.666002+0000 mon.smithi120 (mon.0) 911 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:34.138 INFO:teuthology.orchestra.run.smithi120.stdout:167 167 2024-09-10T04:21:34.877 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch status' 2024-09-10T04:21:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: cluster 2024-09-10T04:21:33.461629+0000 mgr.smithi120.xfjtcc (mgr.14205) 316 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: cluster 2024-09-10T04:21:33.461629+0000 mgr.smithi120.xfjtcc (mgr.14205) 316 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:33.786044+0000 mon.smithi120 (mon.0) 912 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]': finished 2024-09-10T04:21:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:33.786044+0000 mon.smithi120 (mon.0) 912 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]': finished 2024-09-10T04:21:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:33.786100+0000 mon.smithi120 (mon.0) 913 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]': finished 2024-09-10T04:21:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:33.786100+0000 mon.smithi120 (mon.0) 913 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]': finished 2024-09-10T04:21:35.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: cluster 2024-09-10T04:21:33.791838+0000 mon.smithi120 (mon.0) 914 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: cluster 2024-09-10T04:21:33.791838+0000 mon.smithi120 (mon.0) 914 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.001859+0000 mon.smithi120 (mon.0) 915 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.001859+0000 mon.smithi120 (mon.0) 915 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.008409+0000 mon.smithi120 (mon.0) 916 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.008409+0000 mon.smithi120 (mon.0) 916 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.009427+0000 mon.smithi120 (mon.0) 917 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.009427+0000 mon.smithi120 (mon.0) 917 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.010092+0000 mon.smithi120 (mon.0) 918 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.010092+0000 mon.smithi120 (mon.0) 918 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.016499+0000 mon.smithi120 (mon.0) 919 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.016499+0000 mon.smithi120 (mon.0) 919 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.019199+0000 mon.smithi120 (mon.0) 920 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:35.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: audit 2024-09-10T04:21:34.019199+0000 mon.smithi120 (mon.0) 920 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:35.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: cephadm 2024-09-10T04:21:34.046536+0000 mgr.smithi120.xfjtcc (mgr.14205) 317 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi120.esovlx... 2024-09-10T04:21:35.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: cephadm 2024-09-10T04:21:34.046536+0000 mgr.smithi120.xfjtcc (mgr.14205) 317 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi120.esovlx... 2024-09-10T04:21:35.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: cephadm 2024-09-10T04:21:34.046764+0000 mgr.smithi120.xfjtcc (mgr.14205) 318 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi120.esovlx from smithi120 -- ports [12049] 2024-09-10T04:21:35.033 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:34 smithi120 bash[19947]: cephadm 2024-09-10T04:21:34.046764+0000 mgr.smithi120.xfjtcc (mgr.14205) 318 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi120.esovlx from smithi120 -- ports [12049] 2024-09-10T04:21:35.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: cluster 2024-09-10T04:21:33.461629+0000 mgr.smithi120.xfjtcc (mgr.14205) 316 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:35.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: cluster 2024-09-10T04:21:33.461629+0000 mgr.smithi120.xfjtcc (mgr.14205) 316 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:35.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:33.786044+0000 mon.smithi120 (mon.0) 912 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]': finished 2024-09-10T04:21:35.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:33.786044+0000 mon.smithi120 (mon.0) 912 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.5", "id": [4, 6]}]': finished 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:33.786100+0000 mon.smithi120 (mon.0) 913 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]': finished 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:33.786100+0000 mon.smithi120 (mon.0) 913 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.11", "id": [5, 6]}]': finished 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: cluster 2024-09-10T04:21:33.791838+0000 mon.smithi120 (mon.0) 914 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: cluster 2024-09-10T04:21:33.791838+0000 mon.smithi120 (mon.0) 914 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.001859+0000 mon.smithi120 (mon.0) 915 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.001859+0000 mon.smithi120 (mon.0) 915 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.008409+0000 mon.smithi120 (mon.0) 916 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.008409+0000 mon.smithi120 (mon.0) 916 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.009427+0000 mon.smithi120 (mon.0) 917 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.009427+0000 mon.smithi120 (mon.0) 917 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.010092+0000 mon.smithi120 (mon.0) 918 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.010092+0000 mon.smithi120 (mon.0) 918 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:21:35.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.016499+0000 mon.smithi120 (mon.0) 919 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.016499+0000 mon.smithi120 (mon.0) 919 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:35.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.019199+0000 mon.smithi120 (mon.0) 920 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:35.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: audit 2024-09-10T04:21:34.019199+0000 mon.smithi120 (mon.0) 920 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:21:35.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: cephadm 2024-09-10T04:21:34.046536+0000 mgr.smithi120.xfjtcc (mgr.14205) 317 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi120.esovlx... 2024-09-10T04:21:35.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: cephadm 2024-09-10T04:21:34.046536+0000 mgr.smithi120.xfjtcc (mgr.14205) 317 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi120.esovlx... 2024-09-10T04:21:35.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: cephadm 2024-09-10T04:21:34.046764+0000 mgr.smithi120.xfjtcc (mgr.14205) 318 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi120.esovlx from smithi120 -- ports [12049] 2024-09-10T04:21:35.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:34 smithi151 bash[25273]: cephadm 2024-09-10T04:21:34.046764+0000 mgr.smithi120.xfjtcc (mgr.14205) 318 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi120.esovlx from smithi120 -- ports [12049] 2024-09-10T04:21:36.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:35 smithi151 bash[25273]: cluster 2024-09-10T04:21:34.791583+0000 mon.smithi120 (mon.0) 921 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-10T04:21:36.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:35 smithi151 bash[25273]: cluster 2024-09-10T04:21:34.791583+0000 mon.smithi120 (mon.0) 921 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-10T04:21:36.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:35 smithi120 bash[19947]: cluster 2024-09-10T04:21:34.791583+0000 mon.smithi120 (mon.0) 921 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-10T04:21:36.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:35 smithi120 bash[19947]: cluster 2024-09-10T04:21:34.791583+0000 mon.smithi120 (mon.0) 921 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-10T04:21:37.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:36 smithi151 bash[25273]: cluster 2024-09-10T04:21:35.463165+0000 mgr.smithi120.xfjtcc (mgr.14205) 319 : cluster [DBG] pgmap v259: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:37.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:36 smithi151 bash[25273]: cluster 2024-09-10T04:21:35.463165+0000 mgr.smithi120.xfjtcc (mgr.14205) 319 : cluster [DBG] pgmap v259: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:37.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:36 smithi120 bash[19947]: cluster 2024-09-10T04:21:35.463165+0000 mgr.smithi120.xfjtcc (mgr.14205) 319 : cluster [DBG] pgmap v259: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:37.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:36 smithi120 bash[19947]: cluster 2024-09-10T04:21:35.463165+0000 mgr.smithi120.xfjtcc (mgr.14205) 319 : cluster [DBG] pgmap v259: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:39.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:38 smithi151 bash[25273]: cluster 2024-09-10T04:21:37.464691+0000 mgr.smithi120.xfjtcc (mgr.14205) 320 : cluster [DBG] pgmap v260: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:39.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:38 smithi151 bash[25273]: cluster 2024-09-10T04:21:37.464691+0000 mgr.smithi120.xfjtcc (mgr.14205) 320 : cluster [DBG] pgmap v260: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:39.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:38 smithi120 bash[19947]: cluster 2024-09-10T04:21:37.464691+0000 mgr.smithi120.xfjtcc (mgr.14205) 320 : cluster [DBG] pgmap v260: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:39.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:38 smithi120 bash[19947]: cluster 2024-09-10T04:21:37.464691+0000 mgr.smithi120.xfjtcc (mgr.14205) 320 : cluster [DBG] pgmap v260: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-10T04:21:39.734 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:21:41.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:40 smithi120 bash[19947]: cluster 2024-09-10T04:21:39.465688+0000 mgr.smithi120.xfjtcc (mgr.14205) 321 : cluster [DBG] pgmap v261: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:41.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:40 smithi120 bash[19947]: cluster 2024-09-10T04:21:39.465688+0000 mgr.smithi120.xfjtcc (mgr.14205) 321 : cluster [DBG] pgmap v261: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:41.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:40 smithi151 bash[25273]: cluster 2024-09-10T04:21:39.465688+0000 mgr.smithi120.xfjtcc (mgr.14205) 321 : cluster [DBG] pgmap v261: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:41.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:40 smithi151 bash[25273]: cluster 2024-09-10T04:21:39.465688+0000 mgr.smithi120.xfjtcc (mgr.14205) 321 : cluster [DBG] pgmap v261: 225 pgs: 1 activating, 224 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:41.291 INFO:teuthology.orchestra.run.smithi120.stdout:Backend: cephadm 2024-09-10T04:21:41.291 INFO:teuthology.orchestra.run.smithi120.stdout:Available: Yes 2024-09-10T04:21:41.291 INFO:teuthology.orchestra.run.smithi120.stdout:Paused: No 2024-09-10T04:21:41.983 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ps' 2024-09-10T04:21:43.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:42 smithi151 bash[25273]: audit 2024-09-10T04:21:41.292101+0000 mgr.smithi120.xfjtcc (mgr.14205) 322 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:43.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:42 smithi151 bash[25273]: audit 2024-09-10T04:21:41.292101+0000 mgr.smithi120.xfjtcc (mgr.14205) 322 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:43.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:42 smithi151 bash[25273]: cluster 2024-09-10T04:21:41.467511+0000 mgr.smithi120.xfjtcc (mgr.14205) 323 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:43.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:42 smithi151 bash[25273]: cluster 2024-09-10T04:21:41.467511+0000 mgr.smithi120.xfjtcc (mgr.14205) 323 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:43.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:42 smithi120 bash[19947]: audit 2024-09-10T04:21:41.292101+0000 mgr.smithi120.xfjtcc (mgr.14205) 322 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:43.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:42 smithi120 bash[19947]: audit 2024-09-10T04:21:41.292101+0000 mgr.smithi120.xfjtcc (mgr.14205) 322 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:43.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:42 smithi120 bash[19947]: cluster 2024-09-10T04:21:41.467511+0000 mgr.smithi120.xfjtcc (mgr.14205) 323 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:43.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:42 smithi120 bash[19947]: cluster 2024-09-10T04:21:41.467511+0000 mgr.smithi120.xfjtcc (mgr.14205) 323 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:45.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:44 smithi120 bash[19947]: cluster 2024-09-10T04:21:43.468640+0000 mgr.smithi120.xfjtcc (mgr.14205) 324 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:45.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:44 smithi120 bash[19947]: cluster 2024-09-10T04:21:43.468640+0000 mgr.smithi120.xfjtcc (mgr.14205) 324 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:45.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:44 smithi151 bash[25273]: cluster 2024-09-10T04:21:43.468640+0000 mgr.smithi120.xfjtcc (mgr.14205) 324 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:45.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:44 smithi151 bash[25273]: cluster 2024-09-10T04:21:43.468640+0000 mgr.smithi120.xfjtcc (mgr.14205) 324 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:46.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:45 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:21:47.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cluster 2024-09-10T04:21:45.469538+0000 mgr.smithi120.xfjtcc (mgr.14205) 325 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cluster 2024-09-10T04:21:45.469538+0000 mgr.smithi120.xfjtcc (mgr.14205) 325 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cephadm 2024-09-10T04:21:45.958487+0000 mgr.smithi120.xfjtcc (mgr.14205) 326 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi120.esovlx 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cephadm 2024-09-10T04:21:45.958487+0000 mgr.smithi120.xfjtcc (mgr.14205) 326 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi120.esovlx 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: audit 2024-09-10T04:21:45.958991+0000 mon.smithi120 (mon.0) 922 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx"} : dispatch 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: audit 2024-09-10T04:21:45.958991+0000 mon.smithi120 (mon.0) 922 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx"} : dispatch 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: audit 2024-09-10T04:21:45.961621+0000 mon.smithi120 (mon.0) 923 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx"}]': finished 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: audit 2024-09-10T04:21:45.961621+0000 mon.smithi120 (mon.0) 923 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx"}]': finished 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cephadm 2024-09-10T04:21:45.965181+0000 mgr.smithi120.xfjtcc (mgr.14205) 327 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi120.esovlx-rgw 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cephadm 2024-09-10T04:21:45.965181+0000 mgr.smithi120.xfjtcc (mgr.14205) 327 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi120.esovlx-rgw 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: audit 2024-09-10T04:21:45.965563+0000 mon.smithi120 (mon.0) 924 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw"} : dispatch 2024-09-10T04:21:47.031 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: audit 2024-09-10T04:21:45.965563+0000 mon.smithi120 (mon.0) 924 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw"} : dispatch 2024-09-10T04:21:47.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: audit 2024-09-10T04:21:45.970036+0000 mon.smithi120 (mon.0) 925 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw"}]': finished 2024-09-10T04:21:47.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: audit 2024-09-10T04:21:45.970036+0000 mon.smithi120 (mon.0) 925 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw"}]': finished 2024-09-10T04:21:47.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cephadm 2024-09-10T04:21:45.974708+0000 mgr.smithi120.xfjtcc (mgr.14205) 328 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi120.fkccou... 2024-09-10T04:21:47.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cephadm 2024-09-10T04:21:45.974708+0000 mgr.smithi120.xfjtcc (mgr.14205) 328 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi120.fkccou... 2024-09-10T04:21:47.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cephadm 2024-09-10T04:21:45.975232+0000 mgr.smithi120.xfjtcc (mgr.14205) 329 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi120.fkccou from smithi120 -- ports [2049, 9049] 2024-09-10T04:21:47.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:46 smithi120 bash[19947]: cephadm 2024-09-10T04:21:45.975232+0000 mgr.smithi120.xfjtcc (mgr.14205) 329 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi120.fkccou from smithi120 -- ports [2049, 9049] 2024-09-10T04:21:47.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cluster 2024-09-10T04:21:45.469538+0000 mgr.smithi120.xfjtcc (mgr.14205) 325 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:47.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cluster 2024-09-10T04:21:45.469538+0000 mgr.smithi120.xfjtcc (mgr.14205) 325 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:47.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cephadm 2024-09-10T04:21:45.958487+0000 mgr.smithi120.xfjtcc (mgr.14205) 326 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi120.esovlx 2024-09-10T04:21:47.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cephadm 2024-09-10T04:21:45.958487+0000 mgr.smithi120.xfjtcc (mgr.14205) 326 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi120.esovlx 2024-09-10T04:21:47.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: audit 2024-09-10T04:21:45.958991+0000 mon.smithi120 (mon.0) 922 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx"} : dispatch 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: audit 2024-09-10T04:21:45.958991+0000 mon.smithi120 (mon.0) 922 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx"} : dispatch 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: audit 2024-09-10T04:21:45.961621+0000 mon.smithi120 (mon.0) 923 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx"}]': finished 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: audit 2024-09-10T04:21:45.961621+0000 mon.smithi120 (mon.0) 923 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx"}]': finished 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cephadm 2024-09-10T04:21:45.965181+0000 mgr.smithi120.xfjtcc (mgr.14205) 327 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi120.esovlx-rgw 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cephadm 2024-09-10T04:21:45.965181+0000 mgr.smithi120.xfjtcc (mgr.14205) 327 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi120.esovlx-rgw 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: audit 2024-09-10T04:21:45.965563+0000 mon.smithi120 (mon.0) 924 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw"} : dispatch 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: audit 2024-09-10T04:21:45.965563+0000 mon.smithi120 (mon.0) 924 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw"} : dispatch 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: audit 2024-09-10T04:21:45.970036+0000 mon.smithi120 (mon.0) 925 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw"}]': finished 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: audit 2024-09-10T04:21:45.970036+0000 mon.smithi120 (mon.0) 925 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi120.esovlx-rgw"}]': finished 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cephadm 2024-09-10T04:21:45.974708+0000 mgr.smithi120.xfjtcc (mgr.14205) 328 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi120.fkccou... 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cephadm 2024-09-10T04:21:45.974708+0000 mgr.smithi120.xfjtcc (mgr.14205) 328 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi120.fkccou... 2024-09-10T04:21:47.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cephadm 2024-09-10T04:21:45.975232+0000 mgr.smithi120.xfjtcc (mgr.14205) 329 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi120.fkccou from smithi120 -- ports [2049, 9049] 2024-09-10T04:21:47.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:46 smithi151 bash[25273]: cephadm 2024-09-10T04:21:45.975232+0000 mgr.smithi120.xfjtcc (mgr.14205) 329 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi120.fkccou from smithi120 -- ports [2049, 9049] 2024-09-10T04:21:47.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:47 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:21:47.838 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:21:48.139 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:47 smithi120 bash[19947]: audit 2024-09-10T04:21:47.698572+0000 mon.smithi120 (mon.0) 926 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi120.fkccou"} : dispatch 2024-09-10T04:21:48.139 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:47 smithi120 bash[19947]: audit 2024-09-10T04:21:47.698572+0000 mon.smithi120 (mon.0) 926 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi120.fkccou"} : dispatch 2024-09-10T04:21:48.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:47 smithi151 bash[25273]: audit 2024-09-10T04:21:47.698572+0000 mon.smithi120 (mon.0) 926 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi120.fkccou"} : dispatch 2024-09-10T04:21:48.237 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:47 smithi151 bash[25273]: audit 2024-09-10T04:21:47.698572+0000 mon.smithi120 (mon.0) 926 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi120.fkccou"} : dispatch 2024-09-10T04:21:49.103 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: cluster 2024-09-10T04:21:47.470275+0000 mgr.smithi120.xfjtcc (mgr.14205) 330 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:49.103 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: cluster 2024-09-10T04:21:47.470275+0000 mgr.smithi120.xfjtcc (mgr.14205) 330 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:49.103 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: cephadm 2024-09-10T04:21:47.698154+0000 mgr.smithi120.xfjtcc (mgr.14205) 331 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi120.fkccou 2024-09-10T04:21:49.103 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: cephadm 2024-09-10T04:21:47.698154+0000 mgr.smithi120.xfjtcc (mgr.14205) 331 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi120.fkccou 2024-09-10T04:21:49.103 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: cephadm 2024-09-10T04:21:47.699559+0000 mgr.smithi120.xfjtcc (mgr.14205) 332 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi120.cweklp... 2024-09-10T04:21:49.104 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: cephadm 2024-09-10T04:21:47.699559+0000 mgr.smithi120.xfjtcc (mgr.14205) 332 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi120.cweklp... 2024-09-10T04:21:49.104 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: cephadm 2024-09-10T04:21:47.699844+0000 mgr.smithi120.xfjtcc (mgr.14205) 333 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi120.cweklp from smithi120 -- ports [] 2024-09-10T04:21:49.104 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: cephadm 2024-09-10T04:21:47.699844+0000 mgr.smithi120.xfjtcc (mgr.14205) 333 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi120.cweklp from smithi120 -- ports [] 2024-09-10T04:21:49.104 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: audit 2024-09-10T04:21:48.667046+0000 mon.smithi120 (mon.0) 927 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:49.104 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:48 smithi120 bash[19947]: audit 2024-09-10T04:21:48.667046+0000 mon.smithi120 (mon.0) 927 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: cluster 2024-09-10T04:21:47.470275+0000 mgr.smithi120.xfjtcc (mgr.14205) 330 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: cluster 2024-09-10T04:21:47.470275+0000 mgr.smithi120.xfjtcc (mgr.14205) 330 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: cephadm 2024-09-10T04:21:47.698154+0000 mgr.smithi120.xfjtcc (mgr.14205) 331 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi120.fkccou 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: cephadm 2024-09-10T04:21:47.698154+0000 mgr.smithi120.xfjtcc (mgr.14205) 331 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi120.fkccou 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: cephadm 2024-09-10T04:21:47.699559+0000 mgr.smithi120.xfjtcc (mgr.14205) 332 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi120.cweklp... 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: cephadm 2024-09-10T04:21:47.699559+0000 mgr.smithi120.xfjtcc (mgr.14205) 332 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi120.cweklp... 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: cephadm 2024-09-10T04:21:47.699844+0000 mgr.smithi120.xfjtcc (mgr.14205) 333 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi120.cweklp from smithi120 -- ports [] 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: cephadm 2024-09-10T04:21:47.699844+0000 mgr.smithi120.xfjtcc (mgr.14205) 333 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi120.cweklp from smithi120 -- ports [] 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: audit 2024-09-10T04:21:48.667046+0000 mon.smithi120 (mon.0) 927 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:49.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:48 smithi151 bash[25273]: audit 2024-09-10T04:21:48.667046+0000 mon.smithi120 (mon.0) 927 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:21:49.436 INFO:teuthology.orchestra.run.smithi120.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-10T04:21:49.436 INFO:teuthology.orchestra.run.smithi120.stdout:alertmanager.smithi120 smithi120 *:9093,9094 running (6m) 15s ago 8m 13.8M - 0.27.0 11f11916f8cd 9822382bb473 2024-09-10T04:21:49.436 INFO:teuthology.orchestra.run.smithi120.stdout:ceph-exporter.smithi120 smithi120 running (8m) 15s ago 8m 9016k - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b b6303aa513dd 2024-09-10T04:21:49.436 INFO:teuthology.orchestra.run.smithi120.stdout:ceph-exporter.smithi151 smithi151 running (7m) 15s ago 7m 6043k - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 3c4fe4a80a24 2024-09-10T04:21:49.436 INFO:teuthology.orchestra.run.smithi120.stdout:crash.smithi120 smithi120 running (8m) 15s ago 8m 7247k - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 052d2fd226f2 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:crash.smithi151 smithi151 running (6m) 15s ago 6m 7235k - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b e266eb1536c7 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:grafana.smithi120 smithi120 *:3000 running (6m) 15s ago 7m 67.3M - 10.4.0 c8b91775d855 8582b26fc925 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:haproxy.nfs.foo.smithi151.ujklvz smithi151 *:2049,9049 running (77s) 15s ago 77s 5015k - 2.3.17-d1c9119 e85424b0d443 0e2ae459a0a7 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:keepalived.nfs.foo.smithi120.cweklp smithi120 running (57s) 15s ago 57s 2448k - 2.2.4 4a3a1ff181d9 63e6bcb99b57 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:keepalived.nfs.foo.smithi151.wxegob smithi151 running (68s) 15s ago 68s 2467k - 2.2.4 4a3a1ff181d9 948125be6079 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:mgr.smithi120.xfjtcc smithi120 *:9283,8765,8443 running (9m) 15s ago 9m 517M - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 6eda15d20cea 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:mgr.smithi151.abmuzj smithi151 *:8443,9283,8765 running (6m) 15s ago 6m 441M - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 8b5a8c464284 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:mon.smithi120 smithi120 running (9m) 15s ago 10m 49.1M 2048M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 0dab74703f06 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:mon.smithi151 smithi151 running (6m) 15s ago 6m 39.4M 2048M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b f551b185215f 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter.smithi120 smithi120 *:9100 running (8m) 15s ago 8m 8408k - 1.7.0 72c9c2088986 8b478f27968b 2024-09-10T04:21:49.437 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter.smithi151 smithi151 *:9100 running (6m) 15s ago 6m 8596k - 1.7.0 72c9c2088986 b3a99ab3480b 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:osd.0 smithi151 running (5m) 15s ago 5m 60.1M 3772M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 58b527192e9c 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:osd.1 smithi120 running (5m) 15s ago 5m 59.5M 3004M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 88f1659c6e93 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:osd.2 smithi151 running (5m) 15s ago 5m 55.2M 3772M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b d91cab3535ad 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:osd.3 smithi120 running (4m) 15s ago 5m 59.2M 3004M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b a141a0635213 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:osd.4 smithi151 running (4m) 15s ago 5m 55.9M 3772M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 11b1b269913a 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:osd.5 smithi120 running (4m) 15s ago 4m 46.7M 3004M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b c98e099e39fa 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:osd.6 smithi151 running (4m) 15s ago 4m 48.2M 3772M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b a003afd3e095 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:osd.7 smithi120 running (4m) 15s ago 4m 56.3M 3004M 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 8612e2e19d32 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:prometheus.smithi120 smithi120 *:9095 running (44s) 15s ago 7m 37.7M - 2.51.0 1d3b7f56885b 87ec636710f6 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:rgw.foorgw.smithi120.clyuzb smithi120 *:8800 running (99s) 15s ago 99s 91.0M - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 1c180f14077a 2024-09-10T04:21:49.438 INFO:teuthology.orchestra.run.smithi120.stdout:rgw.foorgw.smithi151.ceqvga smithi151 *:8800 running (103s) 15s ago 103s 89.2M - 19.3.0-4885-g3a5e3f16 d6d839bc8a4b 73af9a9f6323 2024-09-10T04:21:50.666 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ls' 2024-09-10T04:21:50.931 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:50 smithi120 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:21:50.931 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:50 smithi120 bash[19947]: audit 2024-09-10T04:21:49.415599+0000 mgr.smithi120.xfjtcc (mgr.14205) 334 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:50.931 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:50 smithi120 bash[19947]: audit 2024-09-10T04:21:49.415599+0000 mgr.smithi120.xfjtcc (mgr.14205) 334 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:50.931 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:50 smithi120 bash[19947]: cluster 2024-09-10T04:21:49.470977+0000 mgr.smithi120.xfjtcc (mgr.14205) 335 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:50.931 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:50 smithi120 bash[19947]: cluster 2024-09-10T04:21:49.470977+0000 mgr.smithi120.xfjtcc (mgr.14205) 335 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:51.234 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:50 smithi151 bash[25273]: audit 2024-09-10T04:21:49.415599+0000 mgr.smithi120.xfjtcc (mgr.14205) 334 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:51.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:50 smithi151 bash[25273]: audit 2024-09-10T04:21:49.415599+0000 mgr.smithi120.xfjtcc (mgr.14205) 334 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:51.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:50 smithi151 bash[25273]: cluster 2024-09-10T04:21:49.470977+0000 mgr.smithi120.xfjtcc (mgr.14205) 335 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:51.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:50 smithi151 bash[25273]: cluster 2024-09-10T04:21:49.470977+0000 mgr.smithi120.xfjtcc (mgr.14205) 335 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:52.139 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:51 smithi151 bash[25273]: cephadm 2024-09-10T04:21:51.006481+0000 mgr.smithi120.xfjtcc (mgr.14205) 336 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi120.cweklp 2024-09-10T04:21:52.140 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:52 smithi151 bash[25273]: cephadm 2024-09-10T04:21:51.006481+0000 mgr.smithi120.xfjtcc (mgr.14205) 336 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi120.cweklp 2024-09-10T04:21:52.140 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:52 smithi151 bash[25273]: audit 2024-09-10T04:21:51.006876+0000 mon.smithi120 (mon.0) 928 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi120.cweklp"} : dispatch 2024-09-10T04:21:52.140 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:52 smithi151 bash[25273]: audit 2024-09-10T04:21:51.006876+0000 mon.smithi120 (mon.0) 928 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi120.cweklp"} : dispatch 2024-09-10T04:21:52.140 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:52 smithi151 bash[25273]: cephadm 2024-09-10T04:21:51.009015+0000 mgr.smithi120.xfjtcc (mgr.14205) 337 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi151.ujklvz... 2024-09-10T04:21:52.140 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:52 smithi151 bash[25273]: cephadm 2024-09-10T04:21:51.009015+0000 mgr.smithi120.xfjtcc (mgr.14205) 337 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi151.ujklvz... 2024-09-10T04:21:52.140 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:52 smithi151 bash[25273]: cephadm 2024-09-10T04:21:51.009259+0000 mgr.smithi120.xfjtcc (mgr.14205) 338 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi151.ujklvz from smithi151 -- ports [2049, 9049] 2024-09-10T04:21:52.140 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:52 smithi151 bash[25273]: cephadm 2024-09-10T04:21:51.009259+0000 mgr.smithi120.xfjtcc (mgr.14205) 338 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi151.ujklvz from smithi151 -- ports [2049, 9049] 2024-09-10T04:21:52.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:51 smithi120 bash[19947]: cephadm 2024-09-10T04:21:51.006481+0000 mgr.smithi120.xfjtcc (mgr.14205) 336 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi120.cweklp 2024-09-10T04:21:52.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:51 smithi120 bash[19947]: cephadm 2024-09-10T04:21:51.006481+0000 mgr.smithi120.xfjtcc (mgr.14205) 336 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi120.cweklp 2024-09-10T04:21:52.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:51 smithi120 bash[19947]: audit 2024-09-10T04:21:51.006876+0000 mon.smithi120 (mon.0) 928 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi120.cweklp"} : dispatch 2024-09-10T04:21:52.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:51 smithi120 bash[19947]: audit 2024-09-10T04:21:51.006876+0000 mon.smithi120 (mon.0) 928 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi120.cweklp"} : dispatch 2024-09-10T04:21:52.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:51 smithi120 bash[19947]: cephadm 2024-09-10T04:21:51.009015+0000 mgr.smithi120.xfjtcc (mgr.14205) 337 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi151.ujklvz... 2024-09-10T04:21:52.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:51 smithi120 bash[19947]: cephadm 2024-09-10T04:21:51.009015+0000 mgr.smithi120.xfjtcc (mgr.14205) 337 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi151.ujklvz... 2024-09-10T04:21:52.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:51 smithi120 bash[19947]: cephadm 2024-09-10T04:21:51.009259+0000 mgr.smithi120.xfjtcc (mgr.14205) 338 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi151.ujklvz from smithi151 -- ports [2049, 9049] 2024-09-10T04:21:52.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:51 smithi120 bash[19947]: cephadm 2024-09-10T04:21:51.009259+0000 mgr.smithi120.xfjtcc (mgr.14205) 338 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi151.ujklvz from smithi151 -- ports [2049, 9049] 2024-09-10T04:21:52.984 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:52 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:21:53.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:53 smithi120 bash[19947]: cluster 2024-09-10T04:21:51.472788+0000 mgr.smithi120.xfjtcc (mgr.14205) 339 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:53.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:53 smithi120 bash[19947]: cluster 2024-09-10T04:21:51.472788+0000 mgr.smithi120.xfjtcc (mgr.14205) 339 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:53.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:53 smithi120 bash[19947]: audit 2024-09-10T04:21:52.690265+0000 mon.smithi120 (mon.0) 929 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi151.ujklvz"} : dispatch 2024-09-10T04:21:53.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:53 smithi120 bash[19947]: audit 2024-09-10T04:21:52.690265+0000 mon.smithi120 (mon.0) 929 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi151.ujklvz"} : dispatch 2024-09-10T04:21:53.295 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:53 smithi151 bash[25273]: cluster 2024-09-10T04:21:51.472788+0000 mgr.smithi120.xfjtcc (mgr.14205) 339 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:53.295 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:53 smithi151 bash[25273]: cluster 2024-09-10T04:21:51.472788+0000 mgr.smithi120.xfjtcc (mgr.14205) 339 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:53.295 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:53 smithi151 bash[25273]: audit 2024-09-10T04:21:52.690265+0000 mon.smithi120 (mon.0) 929 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi151.ujklvz"} : dispatch 2024-09-10T04:21:53.295 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:53 smithi151 bash[25273]: audit 2024-09-10T04:21:52.690265+0000 mon.smithi120 (mon.0) 929 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi151.ujklvz"} : dispatch 2024-09-10T04:21:54.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:54 smithi120 bash[19947]: cephadm 2024-09-10T04:21:52.689639+0000 mgr.smithi120.xfjtcc (mgr.14205) 340 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi151.ujklvz 2024-09-10T04:21:54.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:54 smithi120 bash[19947]: cephadm 2024-09-10T04:21:52.689639+0000 mgr.smithi120.xfjtcc (mgr.14205) 340 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi151.ujklvz 2024-09-10T04:21:54.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:54 smithi120 bash[19947]: cephadm 2024-09-10T04:21:52.691763+0000 mgr.smithi120.xfjtcc (mgr.14205) 341 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi151.wxegob... 2024-09-10T04:21:54.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:54 smithi120 bash[19947]: cephadm 2024-09-10T04:21:52.691763+0000 mgr.smithi120.xfjtcc (mgr.14205) 341 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi151.wxegob... 2024-09-10T04:21:54.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:54 smithi120 bash[19947]: cephadm 2024-09-10T04:21:52.692239+0000 mgr.smithi120.xfjtcc (mgr.14205) 342 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi151.wxegob from smithi151 -- ports [] 2024-09-10T04:21:54.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:54 smithi120 bash[19947]: cephadm 2024-09-10T04:21:52.692239+0000 mgr.smithi120.xfjtcc (mgr.14205) 342 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi151.wxegob from smithi151 -- ports [] 2024-09-10T04:21:54.309 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:54 smithi151 bash[25273]: cephadm 2024-09-10T04:21:52.689639+0000 mgr.smithi120.xfjtcc (mgr.14205) 340 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi151.ujklvz 2024-09-10T04:21:54.309 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:54 smithi151 bash[25273]: cephadm 2024-09-10T04:21:52.689639+0000 mgr.smithi120.xfjtcc (mgr.14205) 340 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi151.ujklvz 2024-09-10T04:21:54.309 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:54 smithi151 bash[25273]: cephadm 2024-09-10T04:21:52.691763+0000 mgr.smithi120.xfjtcc (mgr.14205) 341 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi151.wxegob... 2024-09-10T04:21:54.309 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:54 smithi151 bash[25273]: cephadm 2024-09-10T04:21:52.691763+0000 mgr.smithi120.xfjtcc (mgr.14205) 341 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi151.wxegob... 2024-09-10T04:21:54.309 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:54 smithi151 bash[25273]: cephadm 2024-09-10T04:21:52.692239+0000 mgr.smithi120.xfjtcc (mgr.14205) 342 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi151.wxegob from smithi151 -- ports [] 2024-09-10T04:21:54.309 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:54 smithi151 bash[25273]: cephadm 2024-09-10T04:21:52.692239+0000 mgr.smithi120.xfjtcc (mgr.14205) 342 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi151.wxegob from smithi151 -- ports [] 2024-09-10T04:21:55.190 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:55 smithi151 bash[25273]: cluster 2024-09-10T04:21:53.473643+0000 mgr.smithi120.xfjtcc (mgr.14205) 343 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:55.190 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:55 smithi151 bash[25273]: cluster 2024-09-10T04:21:53.473643+0000 mgr.smithi120.xfjtcc (mgr.14205) 343 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:55.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:55 smithi120 bash[19947]: cluster 2024-09-10T04:21:53.473643+0000 mgr.smithi120.xfjtcc (mgr.14205) 343 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:55.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:55 smithi120 bash[19947]: cluster 2024-09-10T04:21:53.473643+0000 mgr.smithi120.xfjtcc (mgr.14205) 343 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:55.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:55 smithi151 systemd[1]: /etc/systemd/system/ceph-97c7e8e6-6f2a-11ef-bcea-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-10T04:21:55.486 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:21:56.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.385816+0000 mon.smithi120 (mon.0) 930 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi151.wxegob"} : dispatch 2024-09-10T04:21:56.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.385816+0000 mon.smithi120 (mon.0) 930 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi151.wxegob"} : dispatch 2024-09-10T04:21:56.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.784108+0000 mon.smithi120 (mon.0) 931 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.784108+0000 mon.smithi120 (mon.0) 931 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.787612+0000 mon.smithi120 (mon.0) 932 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.787612+0000 mon.smithi120 (mon.0) 932 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.792821+0000 mon.smithi120 (mon.0) 933 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.792821+0000 mon.smithi120 (mon.0) 933 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.797962+0000 mon.smithi120 (mon.0) 934 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.797962+0000 mon.smithi120 (mon.0) 934 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.798395+0000 mon.smithi120 (mon.0) 935 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.798395+0000 mon.smithi120 (mon.0) 935 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.802974+0000 mon.smithi120 (mon.0) 936 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.802974+0000 mon.smithi120 (mon.0) 936 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.803954+0000 mon.smithi120 (mon.0) 937 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:56 smithi120 bash[19947]: audit 2024-09-10T04:21:55.803954+0000 mon.smithi120 (mon.0) 937 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.385816+0000 mon.smithi120 (mon.0) 930 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi151.wxegob"} : dispatch 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.385816+0000 mon.smithi120 (mon.0) 930 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi151.wxegob"} : dispatch 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.784108+0000 mon.smithi120 (mon.0) 931 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.784108+0000 mon.smithi120 (mon.0) 931 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.787612+0000 mon.smithi120 (mon.0) 932 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.787612+0000 mon.smithi120 (mon.0) 932 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.792821+0000 mon.smithi120 (mon.0) 933 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.792821+0000 mon.smithi120 (mon.0) 933 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.797962+0000 mon.smithi120 (mon.0) 934 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:56.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.797962+0000 mon.smithi120 (mon.0) 934 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:21:56.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.798395+0000 mon.smithi120 (mon.0) 935 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-10T04:21:56.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.798395+0000 mon.smithi120 (mon.0) 935 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-10T04:21:56.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.802974+0000 mon.smithi120 (mon.0) 936 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-10T04:21:56.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.802974+0000 mon.smithi120 (mon.0) 936 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-10T04:21:56.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.803954+0000 mon.smithi120 (mon.0) 937 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:56.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:56 smithi151 bash[25273]: audit 2024-09-10T04:21:55.803954+0000 mon.smithi120 (mon.0) 937 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:21:57.137 INFO:teuthology.orchestra.run.smithi120.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-10T04:21:57.137 INFO:teuthology.orchestra.run.smithi120.stdout:alertmanager ?:9093,9094 1/1 23s ago 9m count:1 2024-09-10T04:21:57.137 INFO:teuthology.orchestra.run.smithi120.stdout:ceph-exporter 2/2 23s ago 9m * 2024-09-10T04:21:57.137 INFO:teuthology.orchestra.run.smithi120.stdout:crash 2/2 23s ago 9m * 2024-09-10T04:21:57.137 INFO:teuthology.orchestra.run.smithi120.stdout:grafana ?:3000 1/1 23s ago 9m count:1 2024-09-10T04:21:57.138 INFO:teuthology.orchestra.run.smithi120.stdout:mgr 2/2 23s ago 9m count:2 2024-09-10T04:21:57.138 INFO:teuthology.orchestra.run.smithi120.stdout:mon 2/2 23s ago 7m smithi120:172.21.15.120=smithi120;smithi151:172.21.15.151=smithi151;count:2 2024-09-10T04:21:57.138 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter ?:9100 2/2 23s ago 9m * 2024-09-10T04:21:57.138 INFO:teuthology.orchestra.run.smithi120.stdout:osd.all-available-devices 8 23s ago 6m * 2024-09-10T04:21:57.138 INFO:teuthology.orchestra.run.smithi120.stdout:prometheus ?:9095 1/1 23s ago 9m count:1 2024-09-10T04:21:57.138 INFO:teuthology.orchestra.run.smithi120.stdout:rgw.foorgw ?:8800 2/2 23s ago 107s count:2 2024-09-10T04:21:57.149 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cephadm 2024-09-10T04:21:55.385195+0000 mgr.smithi120.xfjtcc (mgr.14205) 344 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi151.wxegob 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cephadm 2024-09-10T04:21:55.385195+0000 mgr.smithi120.xfjtcc (mgr.14205) 344 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi151.wxegob 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cluster 2024-09-10T04:21:55.475121+0000 mgr.smithi120.xfjtcc (mgr.14205) 345 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cluster 2024-09-10T04:21:55.475121+0000 mgr.smithi120.xfjtcc (mgr.14205) 345 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cephadm 2024-09-10T04:21:55.722050+0000 mgr.smithi120.xfjtcc (mgr.14205) 346 : cephadm [INF] Purge service nfs.foo 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cephadm 2024-09-10T04:21:55.722050+0000 mgr.smithi120.xfjtcc (mgr.14205) 346 : cephadm [INF] Purge service nfs.foo 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cephadm 2024-09-10T04:21:55.722124+0000 mgr.smithi120.xfjtcc (mgr.14205) 347 : cephadm [INF] Removing grace file for nfs.foo 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cephadm 2024-09-10T04:21:55.722124+0000 mgr.smithi120.xfjtcc (mgr.14205) 347 : cephadm [INF] Removing grace file for nfs.foo 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cephadm 2024-09-10T04:21:55.788228+0000 mgr.smithi120.xfjtcc (mgr.14205) 348 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-10T04:21:57.150 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:57 smithi120 bash[19947]: cephadm 2024-09-10T04:21:55.788228+0000 mgr.smithi120.xfjtcc (mgr.14205) 348 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-10T04:21:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cephadm 2024-09-10T04:21:55.385195+0000 mgr.smithi120.xfjtcc (mgr.14205) 344 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi151.wxegob 2024-09-10T04:21:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cephadm 2024-09-10T04:21:55.385195+0000 mgr.smithi120.xfjtcc (mgr.14205) 344 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi151.wxegob 2024-09-10T04:21:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cluster 2024-09-10T04:21:55.475121+0000 mgr.smithi120.xfjtcc (mgr.14205) 345 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cluster 2024-09-10T04:21:55.475121+0000 mgr.smithi120.xfjtcc (mgr.14205) 345 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cephadm 2024-09-10T04:21:55.722050+0000 mgr.smithi120.xfjtcc (mgr.14205) 346 : cephadm [INF] Purge service nfs.foo 2024-09-10T04:21:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cephadm 2024-09-10T04:21:55.722050+0000 mgr.smithi120.xfjtcc (mgr.14205) 346 : cephadm [INF] Purge service nfs.foo 2024-09-10T04:21:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cephadm 2024-09-10T04:21:55.722124+0000 mgr.smithi120.xfjtcc (mgr.14205) 347 : cephadm [INF] Removing grace file for nfs.foo 2024-09-10T04:21:57.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cephadm 2024-09-10T04:21:55.722124+0000 mgr.smithi120.xfjtcc (mgr.14205) 347 : cephadm [INF] Removing grace file for nfs.foo 2024-09-10T04:21:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cephadm 2024-09-10T04:21:55.788228+0000 mgr.smithi120.xfjtcc (mgr.14205) 348 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-10T04:21:57.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:57 smithi151 bash[25273]: cephadm 2024-09-10T04:21:55.788228+0000 mgr.smithi120.xfjtcc (mgr.14205) 348 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-10T04:21:57.870 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch host ls' 2024-09-10T04:21:58.139 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:58 smithi120 bash[19947]: audit 2024-09-10T04:21:57.126492+0000 mgr.smithi120.xfjtcc (mgr.14205) 349 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:58.139 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:58 smithi120 bash[19947]: audit 2024-09-10T04:21:57.126492+0000 mgr.smithi120.xfjtcc (mgr.14205) 349 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:58.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:58 smithi151 bash[25273]: audit 2024-09-10T04:21:57.126492+0000 mgr.smithi120.xfjtcc (mgr.14205) 349 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:58.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:58 smithi151 bash[25273]: audit 2024-09-10T04:21:57.126492+0000 mgr.smithi120.xfjtcc (mgr.14205) 349 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:21:59.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:59 smithi151 bash[25273]: cluster 2024-09-10T04:21:57.476855+0000 mgr.smithi120.xfjtcc (mgr.14205) 350 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:59.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:21:59 smithi151 bash[25273]: cluster 2024-09-10T04:21:57.476855+0000 mgr.smithi120.xfjtcc (mgr.14205) 350 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:59.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:59 smithi120 bash[19947]: cluster 2024-09-10T04:21:57.476855+0000 mgr.smithi120.xfjtcc (mgr.14205) 350 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:21:59.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:21:59 smithi120 bash[19947]: cluster 2024-09-10T04:21:57.476855+0000 mgr.smithi120.xfjtcc (mgr.14205) 350 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:01.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:01 smithi151 bash[25273]: cluster 2024-09-10T04:21:59.477876+0000 mgr.smithi120.xfjtcc (mgr.14205) 351 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:01.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:01 smithi151 bash[25273]: cluster 2024-09-10T04:21:59.477876+0000 mgr.smithi120.xfjtcc (mgr.14205) 351 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:01.529 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:01 smithi120 bash[19947]: cluster 2024-09-10T04:21:59.477876+0000 mgr.smithi120.xfjtcc (mgr.14205) 351 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:01.530 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:01 smithi120 bash[19947]: cluster 2024-09-10T04:21:59.477876+0000 mgr.smithi120.xfjtcc (mgr.14205) 351 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:02.437 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:22:02.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: audit 2024-09-10T04:22:01.373067+0000 mon.smithi120 (mon.0) 938 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: audit 2024-09-10T04:22:01.373067+0000 mon.smithi120 (mon.0) 938 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: audit 2024-09-10T04:22:01.383237+0000 mon.smithi120 (mon.0) 939 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: audit 2024-09-10T04:22:01.383237+0000 mon.smithi120 (mon.0) 939 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: cluster 2024-09-10T04:22:01.478924+0000 mgr.smithi120.xfjtcc (mgr.14205) 352 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:02.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: cluster 2024-09-10T04:22:01.478924+0000 mgr.smithi120.xfjtcc (mgr.14205) 352 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:02.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: audit 2024-09-10T04:22:02.340580+0000 mon.smithi120 (mon.0) 940 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: audit 2024-09-10T04:22:02.340580+0000 mon.smithi120 (mon.0) 940 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: audit 2024-09-10T04:22:02.345856+0000 mon.smithi120 (mon.0) 941 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:02 smithi151 bash[25273]: audit 2024-09-10T04:22:02.345856+0000 mon.smithi120 (mon.0) 941 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: audit 2024-09-10T04:22:01.373067+0000 mon.smithi120 (mon.0) 938 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: audit 2024-09-10T04:22:01.373067+0000 mon.smithi120 (mon.0) 938 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: audit 2024-09-10T04:22:01.383237+0000 mon.smithi120 (mon.0) 939 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: audit 2024-09-10T04:22:01.383237+0000 mon.smithi120 (mon.0) 939 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: cluster 2024-09-10T04:22:01.478924+0000 mgr.smithi120.xfjtcc (mgr.14205) 352 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: cluster 2024-09-10T04:22:01.478924+0000 mgr.smithi120.xfjtcc (mgr.14205) 352 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: audit 2024-09-10T04:22:02.340580+0000 mon.smithi120 (mon.0) 940 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: audit 2024-09-10T04:22:02.340580+0000 mon.smithi120 (mon.0) 940 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: audit 2024-09-10T04:22:02.345856+0000 mon.smithi120 (mon.0) 941 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:02.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:02 smithi120 bash[19947]: audit 2024-09-10T04:22:02.345856+0000 mon.smithi120 (mon.0) 941 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:03.938 INFO:teuthology.orchestra.run.smithi120.stdout:HOST ADDR LABELS STATUS 2024-09-10T04:22:03.938 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 172.21.15.120 2024-09-10T04:22:03.938 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 172.21.15.151 2024-09-10T04:22:03.938 INFO:teuthology.orchestra.run.smithi120.stdout:2 hosts in cluster 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:02.982247+0000 mon.smithi120 (mon.0) 942 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:02.982247+0000 mon.smithi120 (mon.0) 942 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:02.983830+0000 mon.smithi120 (mon.0) 943 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:02.983830+0000 mon.smithi120 (mon.0) 943 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:02.992802+0000 mon.smithi120 (mon.0) 944 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:02.992802+0000 mon.smithi120 (mon.0) 944 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:03.000147+0000 mon.smithi120 (mon.0) 945 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:03.000147+0000 mon.smithi120 (mon.0) 945 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:22:03.951 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: cephadm 2024-09-10T04:22:03.042522+0000 mgr.smithi120.xfjtcc (mgr.14205) 353 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:22:03.952 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: cephadm 2024-09-10T04:22:03.042522+0000 mgr.smithi120.xfjtcc (mgr.14205) 353 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:22:03.952 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:03.666889+0000 mon.smithi120 (mon.0) 946 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:22:03.952 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:03 smithi120 bash[19947]: audit 2024-09-10T04:22:03.666889+0000 mon.smithi120 (mon.0) 946 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:02.982247+0000 mon.smithi120 (mon.0) 942 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:02.982247+0000 mon.smithi120 (mon.0) 942 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:02.983830+0000 mon.smithi120 (mon.0) 943 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:02.983830+0000 mon.smithi120 (mon.0) 943 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:02.992802+0000 mon.smithi120 (mon.0) 944 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:02.992802+0000 mon.smithi120 (mon.0) 944 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:03.000147+0000 mon.smithi120 (mon.0) 945 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:03.000147+0000 mon.smithi120 (mon.0) 945 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:22:04.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: cephadm 2024-09-10T04:22:03.042522+0000 mgr.smithi120.xfjtcc (mgr.14205) 353 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:22:04.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: cephadm 2024-09-10T04:22:03.042522+0000 mgr.smithi120.xfjtcc (mgr.14205) 353 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-09-10T04:22:04.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:03.666889+0000 mon.smithi120 (mon.0) 946 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:22:04.236 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:03 smithi151 bash[25273]: audit 2024-09-10T04:22:03.666889+0000 mon.smithi120 (mon.0) 946 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:22:05.064 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch device ls' 2024-09-10T04:22:05.242 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:04 smithi120 bash[19947]: cephadm 2024-09-10T04:22:03.308835+0000 mgr.smithi120.xfjtcc (mgr.14205) 354 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:22:05.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:04 smithi120 bash[19947]: cephadm 2024-09-10T04:22:03.308835+0000 mgr.smithi120.xfjtcc (mgr.14205) 354 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:22:05.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:04 smithi120 bash[19947]: cluster 2024-09-10T04:22:03.479581+0000 mgr.smithi120.xfjtcc (mgr.14205) 355 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:05.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:04 smithi120 bash[19947]: cluster 2024-09-10T04:22:03.479581+0000 mgr.smithi120.xfjtcc (mgr.14205) 355 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:05.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:04 smithi120 bash[19947]: audit 2024-09-10T04:22:03.938636+0000 mgr.smithi120.xfjtcc (mgr.14205) 356 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:22:05.243 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:04 smithi120 bash[19947]: audit 2024-09-10T04:22:03.938636+0000 mgr.smithi120.xfjtcc (mgr.14205) 356 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:22:05.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:04 smithi151 bash[25273]: cephadm 2024-09-10T04:22:03.308835+0000 mgr.smithi120.xfjtcc (mgr.14205) 354 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:22:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:04 smithi151 bash[25273]: cephadm 2024-09-10T04:22:03.308835+0000 mgr.smithi120.xfjtcc (mgr.14205) 354 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-09-10T04:22:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:04 smithi151 bash[25273]: cluster 2024-09-10T04:22:03.479581+0000 mgr.smithi120.xfjtcc (mgr.14205) 355 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:04 smithi151 bash[25273]: cluster 2024-09-10T04:22:03.479581+0000 mgr.smithi120.xfjtcc (mgr.14205) 355 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:04 smithi151 bash[25273]: audit 2024-09-10T04:22:03.938636+0000 mgr.smithi120.xfjtcc (mgr.14205) 356 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:22:05.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:04 smithi151 bash[25273]: audit 2024-09-10T04:22:03.938636+0000 mgr.smithi120.xfjtcc (mgr.14205) 356 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:22:07.278 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:06 smithi120 bash[19947]: cluster 2024-09-10T04:22:05.481201+0000 mgr.smithi120.xfjtcc (mgr.14205) 357 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:07.278 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:06 smithi120 bash[19947]: cluster 2024-09-10T04:22:05.481201+0000 mgr.smithi120.xfjtcc (mgr.14205) 357 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:07.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:06 smithi151 bash[25273]: cluster 2024-09-10T04:22:05.481201+0000 mgr.smithi120.xfjtcc (mgr.14205) 357 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:07.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:06 smithi151 bash[25273]: cluster 2024-09-10T04:22:05.481201+0000 mgr.smithi120.xfjtcc (mgr.14205) 357 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:09.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:09 smithi120 bash[19947]: cluster 2024-09-10T04:22:07.482588+0000 mgr.smithi120.xfjtcc (mgr.14205) 358 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:09.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:09 smithi120 bash[19947]: cluster 2024-09-10T04:22:07.482588+0000 mgr.smithi120.xfjtcc (mgr.14205) 358 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:09.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:09 smithi120 bash[19947]: audit 2024-09-10T04:22:08.740385+0000 mon.smithi120 (mon.0) 947 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:09.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:09 smithi120 bash[19947]: audit 2024-09-10T04:22:08.740385+0000 mon.smithi120 (mon.0) 947 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:09.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:09 smithi120 bash[19947]: audit 2024-09-10T04:22:08.745802+0000 mon.smithi120 (mon.0) 948 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:09.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:09 smithi120 bash[19947]: audit 2024-09-10T04:22:08.745802+0000 mon.smithi120 (mon.0) 948 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:09.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:09 smithi120 bash[19947]: audit 2024-09-10T04:22:08.750952+0000 mon.smithi120 (mon.0) 949 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:22:09.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:09 smithi120 bash[19947]: audit 2024-09-10T04:22:08.750952+0000 mon.smithi120 (mon.0) 949 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:22:09.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:09 smithi151 bash[25273]: cluster 2024-09-10T04:22:07.482588+0000 mgr.smithi120.xfjtcc (mgr.14205) 358 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:09 smithi151 bash[25273]: cluster 2024-09-10T04:22:07.482588+0000 mgr.smithi120.xfjtcc (mgr.14205) 358 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:09 smithi151 bash[25273]: audit 2024-09-10T04:22:08.740385+0000 mon.smithi120 (mon.0) 947 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:09 smithi151 bash[25273]: audit 2024-09-10T04:22:08.740385+0000 mon.smithi120 (mon.0) 947 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:09 smithi151 bash[25273]: audit 2024-09-10T04:22:08.745802+0000 mon.smithi120 (mon.0) 948 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:09 smithi151 bash[25273]: audit 2024-09-10T04:22:08.745802+0000 mon.smithi120 (mon.0) 948 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:09 smithi151 bash[25273]: audit 2024-09-10T04:22:08.750952+0000 mon.smithi120 (mon.0) 949 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:22:09.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:09 smithi151 bash[25273]: audit 2024-09-10T04:22:08.750952+0000 mon.smithi120 (mon.0) 949 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-10T04:22:10.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:10 smithi120 bash[19947]: audit 2024-09-10T04:22:08.751420+0000 mgr.smithi120.xfjtcc (mgr.14205) 359 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:22:10.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:10 smithi120 bash[19947]: audit 2024-09-10T04:22:08.751420+0000 mgr.smithi120.xfjtcc (mgr.14205) 359 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:22:10.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:10 smithi120 bash[19947]: audit 2024-09-10T04:22:09.027320+0000 mon.smithi120 (mon.0) 950 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:22:10.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:10 smithi120 bash[19947]: audit 2024-09-10T04:22:09.027320+0000 mon.smithi120 (mon.0) 950 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:22:10.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:10 smithi151 bash[25273]: audit 2024-09-10T04:22:08.751420+0000 mgr.smithi120.xfjtcc (mgr.14205) 359 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:22:10.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:10 smithi151 bash[25273]: audit 2024-09-10T04:22:08.751420+0000 mgr.smithi120.xfjtcc (mgr.14205) 359 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-10T04:22:10.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:10 smithi151 bash[25273]: audit 2024-09-10T04:22:09.027320+0000 mon.smithi120 (mon.0) 950 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:22:10.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:10 smithi151 bash[25273]: audit 2024-09-10T04:22:09.027320+0000 mon.smithi120 (mon.0) 950 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-10T04:22:11.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:11 smithi120 bash[19947]: cluster 2024-09-10T04:22:09.483485+0000 mgr.smithi120.xfjtcc (mgr.14205) 360 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:11.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:11 smithi120 bash[19947]: cluster 2024-09-10T04:22:09.483485+0000 mgr.smithi120.xfjtcc (mgr.14205) 360 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:11 smithi151 bash[25273]: cluster 2024-09-10T04:22:09.483485+0000 mgr.smithi120.xfjtcc (mgr.14205) 360 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:11.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:11 smithi151 bash[25273]: cluster 2024-09-10T04:22:09.483485+0000 mgr.smithi120.xfjtcc (mgr.14205) 360 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:11.976 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:22:13.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:13 smithi120 bash[19947]: cluster 2024-09-10T04:22:11.485015+0000 mgr.smithi120.xfjtcc (mgr.14205) 361 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:13.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:13 smithi120 bash[19947]: cluster 2024-09-10T04:22:11.485015+0000 mgr.smithi120.xfjtcc (mgr.14205) 361 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:13.398 INFO:teuthology.orchestra.run.smithi120.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400XV400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme1n1 ssd Linux_c97f2b817277ea7591b8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme2n1 ssd Linux_0a3755113558249d0b7a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme3n1 ssd Linux_3d66f4bf1349f73f3726 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme4n1 ssd Linux_9c6d6df1f745e55473d2 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_CVFT623300JJ400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme1n1 ssd Linux_d878e9a532523eef89e8 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme2n1 ssd Linux_7ed5e1b21ec5ab56ee88 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme3n1 ssd Linux_2062593e4d0942f0b17a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:22:13.399 INFO:teuthology.orchestra.run.smithi120.stdout:smithi151 /dev/nvme4n1 ssd Linux_ee0a5ab323846e5e4542 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-10T04:22:13.484 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:13 smithi151 bash[25273]: cluster 2024-09-10T04:22:11.485015+0000 mgr.smithi120.xfjtcc (mgr.14205) 361 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:13.485 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:13 smithi151 bash[25273]: cluster 2024-09-10T04:22:11.485015+0000 mgr.smithi120.xfjtcc (mgr.14205) 361 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:14.081 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:3a5e3f16720f432aea965c40a8f6eb480095ec6c shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-10T04:22:15.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:15 smithi120 bash[19947]: audit 2024-09-10T04:22:13.397637+0000 mgr.smithi120.xfjtcc (mgr.14205) 362 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:22:15.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:15 smithi120 bash[19947]: audit 2024-09-10T04:22:13.397637+0000 mgr.smithi120.xfjtcc (mgr.14205) 362 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:22:15.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:15 smithi120 bash[19947]: cluster 2024-09-10T04:22:13.485686+0000 mgr.smithi120.xfjtcc (mgr.14205) 363 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:15.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:15 smithi120 bash[19947]: cluster 2024-09-10T04:22:13.485686+0000 mgr.smithi120.xfjtcc (mgr.14205) 363 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:15.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:15 smithi120 bash[19947]: audit 2024-09-10T04:22:14.595940+0000 mon.smithi120 (mon.0) 951 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:15.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:15 smithi120 bash[19947]: audit 2024-09-10T04:22:14.595940+0000 mon.smithi120 (mon.0) 951 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:15.281 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:15 smithi120 bash[19947]: audit 2024-09-10T04:22:14.601316+0000 mon.smithi120 (mon.0) 952 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:15.282 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:15 smithi120 bash[19947]: audit 2024-09-10T04:22:14.601316+0000 mon.smithi120 (mon.0) 952 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:15 smithi151 bash[25273]: audit 2024-09-10T04:22:13.397637+0000 mgr.smithi120.xfjtcc (mgr.14205) 362 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:22:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:15 smithi151 bash[25273]: audit 2024-09-10T04:22:13.397637+0000 mgr.smithi120.xfjtcc (mgr.14205) 362 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-10T04:22:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:15 smithi151 bash[25273]: cluster 2024-09-10T04:22:13.485686+0000 mgr.smithi120.xfjtcc (mgr.14205) 363 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:15 smithi151 bash[25273]: cluster 2024-09-10T04:22:13.485686+0000 mgr.smithi120.xfjtcc (mgr.14205) 363 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:15 smithi151 bash[25273]: audit 2024-09-10T04:22:14.595940+0000 mon.smithi120 (mon.0) 951 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:15 smithi151 bash[25273]: audit 2024-09-10T04:22:14.595940+0000 mon.smithi120 (mon.0) 951 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:15 smithi151 bash[25273]: audit 2024-09-10T04:22:14.601316+0000 mon.smithi120 (mon.0) 952 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:15.486 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:15 smithi151 bash[25273]: audit 2024-09-10T04:22:14.601316+0000 mon.smithi120 (mon.0) 952 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.427965+0000 mon.smithi120 (mon.0) 953 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.427965+0000 mon.smithi120 (mon.0) 953 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.436543+0000 mon.smithi120 (mon.0) 954 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.436543+0000 mon.smithi120 (mon.0) 954 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.437808+0000 mon.smithi120 (mon.0) 955 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:22:16.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.437808+0000 mon.smithi120 (mon.0) 955 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:22:16.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.438692+0000 mon.smithi120 (mon.0) 956 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:22:16.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.438692+0000 mon.smithi120 (mon.0) 956 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:22:16.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.443581+0000 mon.smithi120 (mon.0) 957 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.443581+0000 mon.smithi120 (mon.0) 957 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.446460+0000 mon.smithi120 (mon.0) 958 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:22:16.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: audit 2024-09-10T04:22:15.446460+0000 mon.smithi120 (mon.0) 958 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:22:16.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: cluster 2024-09-10T04:22:15.487197+0000 mgr.smithi120.xfjtcc (mgr.14205) 364 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:16.736 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:16 smithi151 bash[25273]: cluster 2024-09-10T04:22:15.487197+0000 mgr.smithi120.xfjtcc (mgr.14205) 364 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:16.780 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.427965+0000 mon.smithi120 (mon.0) 953 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.427965+0000 mon.smithi120 (mon.0) 953 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.436543+0000 mon.smithi120 (mon.0) 954 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.436543+0000 mon.smithi120 (mon.0) 954 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.437808+0000 mon.smithi120 (mon.0) 955 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.437808+0000 mon.smithi120 (mon.0) 955 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.438692+0000 mon.smithi120 (mon.0) 956 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.438692+0000 mon.smithi120 (mon.0) 956 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.443581+0000 mon.smithi120 (mon.0) 957 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.443581+0000 mon.smithi120 (mon.0) 957 : audit [INF] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.446460+0000 mon.smithi120 (mon.0) 958 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:22:16.781 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: audit 2024-09-10T04:22:15.446460+0000 mon.smithi120 (mon.0) 958 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-10T04:22:16.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: cluster 2024-09-10T04:22:15.487197+0000 mgr.smithi120.xfjtcc (mgr.14205) 364 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:16.782 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:16 smithi120 bash[19947]: cluster 2024-09-10T04:22:15.487197+0000 mgr.smithi120.xfjtcc (mgr.14205) 364 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:18.646 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/mon.smithi120/config 2024-09-10T04:22:19.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:18 smithi151 bash[25273]: cluster 2024-09-10T04:22:17.488755+0000 mgr.smithi120.xfjtcc (mgr.14205) 365 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:19.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:18 smithi151 bash[25273]: cluster 2024-09-10T04:22:17.488755+0000 mgr.smithi120.xfjtcc (mgr.14205) 365 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:19.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:18 smithi151 bash[25273]: audit 2024-09-10T04:22:18.667554+0000 mon.smithi120 (mon.0) 959 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:22:19.235 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:18 smithi151 bash[25273]: audit 2024-09-10T04:22:18.667554+0000 mon.smithi120 (mon.0) 959 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:22:19.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:18 smithi120 bash[19947]: cluster 2024-09-10T04:22:17.488755+0000 mgr.smithi120.xfjtcc (mgr.14205) 365 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:19.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:18 smithi120 bash[19947]: cluster 2024-09-10T04:22:17.488755+0000 mgr.smithi120.xfjtcc (mgr.14205) 365 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:19.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:18 smithi120 bash[19947]: audit 2024-09-10T04:22:18.667554+0000 mon.smithi120 (mon.0) 959 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:22:19.280 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:18 smithi120 bash[19947]: audit 2024-09-10T04:22:18.667554+0000 mon.smithi120 (mon.0) 959 : audit [DBG] from='mgr.14205 172.21.15.120:0/3532247388' entity='mgr.smithi120.xfjtcc' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-10T04:22:20.261 INFO:teuthology.orchestra.run.smithi120.stdout:osd.all-available-devices 8 5s ago 6m * 2024-09-10T04:22:20.973 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-10T04:22:20.989 INFO:tasks.vip:Removing 10.0.15.120 (and any VIPs) on smithi120.front.sepia.ceph.com iface enp3s0f1... 2024-09-10T04:22:20.990 DEBUG:teuthology.orchestra.run.smithi120:> sudo ip addr del 10.0.15.120/16 dev enp3s0f1 2024-09-10T04:22:21.005 DEBUG:teuthology.orchestra.run.smithi120:> sudo ip addr del 10.0.31.120/16 dev enp3s0f1 2024-09-10T04:22:21.061 INFO:teuthology.orchestra.run.smithi120.stderr:RTNETLINK answers: Cannot assign requested address 2024-09-10T04:22:21.062 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-10T04:22:21.063 INFO:tasks.vip:Removing 10.0.15.151 (and any VIPs) on smithi151.front.sepia.ceph.com iface enp3s0f1... 2024-09-10T04:22:21.063 DEBUG:teuthology.orchestra.run.smithi151:> sudo ip addr del 10.0.15.151/16 dev enp3s0f1 2024-09-10T04:22:21.077 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:20 smithi151 bash[25273]: cluster 2024-09-10T04:22:19.489759+0000 mgr.smithi120.xfjtcc (mgr.14205) 366 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:21.077 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:20 smithi151 bash[25273]: cluster 2024-09-10T04:22:19.489759+0000 mgr.smithi120.xfjtcc (mgr.14205) 366 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:21.078 DEBUG:teuthology.orchestra.run.smithi151:> sudo ip addr del 10.0.31.120/16 dev enp3s0f1 2024-09-10T04:22:21.132 INFO:teuthology.orchestra.run.smithi151.stderr:RTNETLINK answers: Cannot assign requested address 2024-09-10T04:22:21.133 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-10T04:22:21.134 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-10T04:22:21.144 INFO:tasks.cephadm:Teardown begin 2024-09-10T04:22:21.144 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-10T04:22:21.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:20 smithi120 bash[19947]: cluster 2024-09-10T04:22:19.489759+0000 mgr.smithi120.xfjtcc (mgr.14205) 366 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:21.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:20 smithi120 bash[19947]: cluster 2024-09-10T04:22:19.489759+0000 mgr.smithi120.xfjtcc (mgr.14205) 366 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail 2024-09-10T04:22:21.158 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-10T04:22:21.194 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-10T04:22:21.194 DEBUG:teuthology.orchestra.run.smithi120:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-10T04:22:21.206 DEBUG:teuthology.orchestra.run.smithi151:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-10T04:22:21.240 INFO:tasks.cephadm:Stopping all daemons... 2024-09-10T04:22:21.240 INFO:tasks.cephadm.mon.smithi120:Stopping mon.smithi120... 2024-09-10T04:22:21.240 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi120 2024-09-10T04:22:21.511 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:21 smithi120 systemd[1]: Stopping Ceph mon.smithi120 for 97c7e8e6-6f2a-11ef-bcea-c7b262605968... 2024-09-10T04:22:21.511 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:21 smithi120 bash[19947]: debug 2024-09-10T04:22:21.391+0000 7fafab487640 -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-10T04:22:21.511 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:21 smithi120 bash[19947]: debug 2024-09-10T04:22:21.391+0000 7fafab487640 -1 mon.smithi120@0(leader) e2 *** Got Signal Terminated *** 2024-09-10T04:22:22.310 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Sep 10 04:22:22 smithi120 bash[76000]: ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968-mon-smithi120 2024-09-10T04:22:22.405 DEBUG:teuthology.orchestra.run.smithi120:> sudo pkill -f 'journalctl -f -n 0 -u ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi120.service' 2024-09-10T04:22:22.434 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-10T04:22:22.434 INFO:tasks.cephadm.mon.smithi120:Stopped mon.smithi120 2024-09-10T04:22:22.434 INFO:tasks.cephadm.mon.smithi151:Stopping mon.smithi151... 2024-09-10T04:22:22.434 DEBUG:teuthology.orchestra.run.smithi151:> sudo systemctl stop ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi151 2024-09-10T04:22:22.734 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:22 smithi151 systemd[1]: Stopping Ceph mon.smithi151 for 97c7e8e6-6f2a-11ef-bcea-c7b262605968... 2024-09-10T04:22:22.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:22 smithi151 bash[25273]: debug 2024-09-10T04:22:22.585+0000 7f5d7f44a640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi151 -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-10T04:22:22.735 INFO:journalctl@ceph.mon.smithi151.smithi151.stdout:Sep 10 04:22:22 smithi151 bash[25273]: debug 2024-09-10T04:22:22.585+0000 7f5d7f44a640 -1 mon.smithi151@1(peon) e2 *** Got Signal Terminated *** 2024-09-10T04:22:23.739 DEBUG:teuthology.orchestra.run.smithi151:> sudo pkill -f 'journalctl -f -n 0 -u ceph-97c7e8e6-6f2a-11ef-bcea-c7b262605968@mon.smithi151.service' 2024-09-10T04:22:23.789 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-10T04:22:23.789 INFO:tasks.cephadm.mon.smithi151:Stopped mon.smithi151 2024-09-10T04:22:23.790 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-10T04:22:23.981 INFO:teuthology.orchestra.run.smithi120.stdout:Deleting cluster with fsid: 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:23:22.158 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 --force --keep-logs 2024-09-10T04:23:22.343 INFO:teuthology.orchestra.run.smithi151.stdout:Deleting cluster with fsid: 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:24:17.593 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-10T04:24:17.608 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-10T04:24:17.620 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-10T04:24:17.622 DEBUG:teuthology.misc:Transferring archived files from smithi120:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624/remote/smithi120/crash 2024-09-10T04:24:17.623 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/crash -- . 2024-09-10T04:24:17.668 INFO:teuthology.orchestra.run.smithi120.stderr:tar: /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-10T04:24:17.668 INFO:teuthology.orchestra.run.smithi120.stderr:tar: Error is not recoverable: exiting now 2024-09-10T04:24:17.670 DEBUG:teuthology.misc:Transferring archived files from smithi151:/var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/crash to /home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624/remote/smithi151/crash 2024-09-10T04:24:17.671 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/crash -- . 2024-09-10T04:24:17.682 INFO:teuthology.orchestra.run.smithi151.stderr:tar: /var/lib/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/crash: Cannot open: No such file or directory 2024-09-10T04:24:17.683 INFO:teuthology.orchestra.run.smithi151.stderr:tar: Error is not recoverable: exiting now 2024-09-10T04:24:17.684 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-10T04:24:17.684 DEBUG:teuthology.orchestra.run.smithi120:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-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-10T04:24:17.726 INFO:tasks.cephadm:Compressing logs... 2024-09-10T04:24:17.726 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-10T04:24:17.773 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:24:17.790 INFO:teuthology.orchestra.run.smithi120.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-10T04:24:17.794 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-10T04:24:17.795 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.7.log 2024-09-10T04:24:17.796 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.cephadm.log 2024-09-10T04:24:17.796 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.3.log 2024-09-10T04:24:17.797 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.5.log 2024-09-10T04:24:17.797 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.3.log: 84.5% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.cephadm.log.gz 2024-09-10T04:24:17.797 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.1.log 2024-09-10T04:24:17.797 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mgr.smithi120.xfjtcc.log 2024-09-10T04:24:17.799 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.5.log: /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.ceph-exporter.smithi120.log 2024-09-10T04:24:17.799 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mgr.smithi120.xfjtcc.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.log 2024-09-10T04:24:17.799 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.ceph-exporter.smithi120.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-10T04:24:17.800 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.log: 94.0% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.ceph-exporter.smithi120.log.gz 2024-09-10T04:24:17.801 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mon.smithi120.log 2024-09-10T04:24:17.801 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-volume.log: 87.6% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.log.gz 2024-09-10T04:24:17.802 INFO:teuthology.orchestra.run.smithi151.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-10T04:24:17.802 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.audit.log 2024-09-10T04:24:17.811 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-10T04:24:17.812 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.0.log 2024-09-10T04:24:17.812 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.2.log 2024-09-10T04:24:17.813 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.6.log 2024-09-10T04:24:17.813 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.0.log: /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mon.smithi151.log 2024-09-10T04:24:17.814 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.cephadm.log 2024-09-10T04:24:17.815 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mgr.smithi151.abmuzj.log 2024-09-10T04:24:17.815 INFO:teuthology.orchestra.run.smithi151.stderr: 89.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-10T04:24:17.815 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.cephadm.log: /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mon.smithi151.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.log 2024-09-10T04:24:17.815 INFO:teuthology.orchestra.run.smithi151.stderr: 83.7% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.cephadm.log.gz 2024-09-10T04:24:17.816 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mon.smithi120.log: 91.1% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-10T04:24:17.816 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi120.clyuzb.log 2024-09-10T04:24:17.818 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mgr.smithi151.abmuzj.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.ceph-exporter.smithi151.log 2024-09-10T04:24:17.818 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.log: --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-volume.log 2024-09-10T04:24:17.818 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.ceph-exporter.smithi151.log: 30.5% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.ceph-exporter.smithi151.log.gzgzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.audit.log 2024-09-10T04:24:17.818 INFO:teuthology.orchestra.run.smithi151.stderr: 2024-09-10T04:24:17.818 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-volume.log: 87.5% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.log.gz 2024-09-10T04:24:17.819 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi120.clyuzb.log 2024-09-10T04:24:17.820 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi120.clyuzb.log: 76.6% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ops-log-ceph-client.rgw.foorgw.smithi120.clyuzb.log.gz 2024-09-10T04:24:17.820 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi120.clyuzb.log: 72.2% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi120.clyuzb.log.gz 2024-09-10T04:24:17.820 INFO:teuthology.orchestra.run.smithi120.stderr: 91.1% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.audit.log.gz 2024-09-10T04:24:17.820 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi151.ceqvga.log 2024-09-10T04:24:17.821 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.4.log 2024-09-10T04:24:17.821 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi151.ceqvga.log: 91.6% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mgr.smithi151.abmuzj.log.gz 68.9% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-client.rgw.foorgw.smithi151.ceqvga.log.gz 2024-09-10T04:24:17.822 INFO:teuthology.orchestra.run.smithi151.stderr: 2024-09-10T04:24:17.822 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.4.log: 91.3% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph.audit.log.gz 2024-09-10T04:24:17.826 INFO:teuthology.orchestra.run.smithi151.stderr: 91.3% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-volume.log.gz 2024-09-10T04:24:17.834 INFO:teuthology.orchestra.run.smithi120.stderr: 90.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-10T04:24:17.943 INFO:teuthology.orchestra.run.smithi120.stderr: 89.3% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mgr.smithi120.xfjtcc.log.gz 2024-09-10T04:24:17.965 INFO:teuthology.orchestra.run.smithi151.stderr: 92.9% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mon.smithi151.log.gz 2024-09-10T04:24:18.129 INFO:teuthology.orchestra.run.smithi120.stderr: 93.6% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.7.log.gz 2024-09-10T04:24:18.132 INFO:teuthology.orchestra.run.smithi151.stderr: 93.4% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.2.log.gz 2024-09-10T04:24:18.137 INFO:teuthology.orchestra.run.smithi120.stderr: 93.5% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.5.log.gz 2024-09-10T04:24:18.177 INFO:teuthology.orchestra.run.smithi151.stderr: 93.6% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.4.log.gz 2024-09-10T04:24:18.181 INFO:teuthology.orchestra.run.smithi151.stderr: 93.4% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.6.log.gz 2024-09-10T04:24:18.203 INFO:teuthology.orchestra.run.smithi120.stderr: 93.7% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.3.log.gz 2024-09-10T04:24:18.227 INFO:teuthology.orchestra.run.smithi120.stderr: 91.3% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-mon.smithi120.log.gz 2024-09-10T04:24:18.254 INFO:teuthology.orchestra.run.smithi120.stderr: 93.7% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.1.log.gz 2024-09-10T04:24:18.255 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-09-10T04:24:18.255 INFO:teuthology.orchestra.run.smithi120.stderr:real 0m0.480s 2024-09-10T04:24:18.255 INFO:teuthology.orchestra.run.smithi120.stderr:user 0m2.127s 2024-09-10T04:24:18.255 INFO:teuthology.orchestra.run.smithi120.stderr:sys 0m0.062s 2024-09-10T04:24:18.267 INFO:teuthology.orchestra.run.smithi151.stderr: 93.6% -- replaced with /var/log/ceph/97c7e8e6-6f2a-11ef-bcea-c7b262605968/ceph-osd.0.log.gz 2024-09-10T04:24:18.268 INFO:teuthology.orchestra.run.smithi151.stderr: 2024-09-10T04:24:18.268 INFO:teuthology.orchestra.run.smithi151.stderr:real 0m0.475s 2024-09-10T04:24:18.269 INFO:teuthology.orchestra.run.smithi151.stderr:user 0m1.627s 2024-09-10T04:24:18.269 INFO:teuthology.orchestra.run.smithi151.stderr:sys 0m0.071s 2024-09-10T04:24:18.269 INFO:tasks.cephadm:Archiving logs... 2024-09-10T04:24:18.269 DEBUG:teuthology.misc:Transferring archived files from smithi120:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624/remote/smithi120/log 2024-09-10T04:24:18.270 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-10T04:24:18.535 DEBUG:teuthology.misc:Transferring archived files from smithi151:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624/remote/smithi151/log 2024-09-10T04:24:18.536 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-10T04:24:18.740 INFO:tasks.cephadm:Removing cluster... 2024-09-10T04:24:18.740 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 --force 2024-09-10T04:24:18.915 INFO:teuthology.orchestra.run.smithi120.stdout:Deleting cluster with fsid: 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:24:20.029 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 97c7e8e6-6f2a-11ef-bcea-c7b262605968 --force 2024-09-10T04:24:20.216 INFO:teuthology.orchestra.run.smithi151.stdout:Deleting cluster with fsid: 97c7e8e6-6f2a-11ef-bcea-c7b262605968 2024-09-10T04:24:21.350 INFO:tasks.cephadm:Removing cephadm ... 2024-09-10T04:24:21.351 DEBUG:teuthology.orchestra.run.smithi120:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-10T04:24:21.357 DEBUG:teuthology.orchestra.run.smithi151:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-10T04:24:21.362 INFO:tasks.cephadm:Teardown complete 2024-09-10T04:24:21.362 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-10T04:24:21.373 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_1... 2024-09-10T04:24:21.373 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_1 2024-09-10T04:24:21.649 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-10T04:24:21.650 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:21.650 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_2... 2024-09-10T04:24:21.650 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_2 2024-09-10T04:24:21.916 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-10T04:24:21.917 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:21.918 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_3... 2024-09-10T04:24:21.918 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_3 2024-09-10T04:24:22.172 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-10T04:24:22.173 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:22.174 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_4... 2024-09-10T04:24:22.174 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_4 2024-09-10T04:24:22.428 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-10T04:24:22.429 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:22.430 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-09-10T04:24:22.430 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/scratch_devs 2024-09-10T04:24:22.443 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi151:/dev/vg_nvme/lv_1... 2024-09-10T04:24:22.443 DEBUG:teuthology.orchestra.run.smithi151:> sudo nvme disconnect -n lv_1 2024-09-10T04:24:22.685 INFO:teuthology.orchestra.run.smithi151.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-10T04:24:22.686 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:22.687 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi151:/dev/vg_nvme/lv_2... 2024-09-10T04:24:22.687 DEBUG:teuthology.orchestra.run.smithi151:> sudo nvme disconnect -n lv_2 2024-09-10T04:24:22.981 INFO:teuthology.orchestra.run.smithi151.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-10T04:24:22.982 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:22.982 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi151:/dev/vg_nvme/lv_3... 2024-09-10T04:24:22.983 DEBUG:teuthology.orchestra.run.smithi151:> sudo nvme disconnect -n lv_3 2024-09-10T04:24:23.245 INFO:teuthology.orchestra.run.smithi151.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-10T04:24:23.246 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:23.246 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi151:/dev/vg_nvme/lv_4... 2024-09-10T04:24:23.247 DEBUG:teuthology.orchestra.run.smithi151:> sudo nvme disconnect -n lv_4 2024-09-10T04:24:23.529 INFO:teuthology.orchestra.run.smithi151.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-10T04:24:23.530 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:23.530 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-09-10T04:24:23.530 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/scratch_devs 2024-09-10T04:24:23.543 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-10T04:24:23.554 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-10T04:24:23.554 DEBUG:teuthology.orchestra.run.smithi120:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-10T04:24:23.556 DEBUG:teuthology.orchestra.run.smithi151:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-10T04:24:23.567 INFO:teuthology.orchestra.run.smithi120.stdout: remote refid st t when poll reach delay offset jitter 2024-09-10T04:24:23.568 INFO:teuthology.orchestra.run.smithi120.stdout:============================================================================== 2024-09-10T04:24:23.568 INFO:teuthology.orchestra.run.smithi120.stdout:*hv01.front.sepi 67.205.162.81 3 u 56 64 377 0.073 -1.117 1.227 2024-09-10T04:24:23.568 INFO:teuthology.orchestra.run.smithi120.stdout:+hv02.front.sepi 96.245.170.99 3 u 56 64 377 0.070 -2.522 1.561 2024-09-10T04:24:23.568 INFO:teuthology.orchestra.run.smithi120.stdout:+hv03.front.sepi 74.6.168.72 3 u 2 64 377 0.072 -1.689 1.672 2024-09-10T04:24:23.568 INFO:teuthology.orchestra.run.smithi120.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-10T04:24:23.596 INFO:teuthology.orchestra.run.smithi151.stdout: remote refid st t when poll reach delay offset jitter 2024-09-10T04:24:23.596 INFO:teuthology.orchestra.run.smithi151.stdout:============================================================================== 2024-09-10T04:24:23.596 INFO:teuthology.orchestra.run.smithi151.stdout:*hv01.front.sepi 67.205.162.81 3 u 62 64 377 0.081 -1.766 0.346 2024-09-10T04:24:23.596 INFO:teuthology.orchestra.run.smithi151.stdout:+hv02.front.sepi 96.245.170.99 3 u 63 64 377 0.096 -0.716 0.572 2024-09-10T04:24:23.596 INFO:teuthology.orchestra.run.smithi151.stdout:+hv03.front.sepi 74.6.168.72 3 u 62 64 377 0.095 -2.324 0.266 2024-09-10T04:24:23.596 INFO:teuthology.orchestra.run.smithi151.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-10T04:24:23.597 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-10T04:24:23.608 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-10T04:24:23.609 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-10T04:24:23.624 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-10T04:24:23.635 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-10T04:24:23.646 INFO:teuthology.task.internal:Duration was 1303.536954 seconds 2024-09-10T04:24:23.646 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-10T04:24:23.659 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-10T04:24:23.660 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-10T04:24:23.662 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-10T04:24:23.700 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-10T04:24:23.700 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi120.front.sepia.ceph.com 2024-09-10T04:24:23.700 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-10T04:24:23.754 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi151.front.sepia.ceph.com 2024-09-10T04:24:23.754 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:24:23.764 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-10T04:24:23.765 DEBUG:teuthology.orchestra.run.smithi120:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-10T04:24:23.801 DEBUG:teuthology.orchestra.run.smithi151:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-10T04:24:23.851 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-10T04:24:23.851 DEBUG:teuthology.orchestra.run.smithi120:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-10T04:24:23.853 DEBUG:teuthology.orchestra.run.smithi151:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-10T04:24:23.993 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-10T04:24:24.010 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-10T04:24:24.010 DEBUG:teuthology.orchestra.run.smithi120:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-10T04:24:24.021 DEBUG:teuthology.orchestra.run.smithi151:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-10T04:24:24.034 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-10T04:24:24.047 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-10T04:24:24.069 DEBUG:teuthology.orchestra.run.smithi151:> 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-10T04:24:24.078 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern = core 2024-09-10T04:24:24.086 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern = core 2024-09-10T04:24:24.115 DEBUG:teuthology.orchestra.run.smithi120:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-10T04:24:24.143 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:24.143 DEBUG:teuthology.orchestra.run.smithi151:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-10T04:24:24.159 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-10T04:24:24.160 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-10T04:24:24.173 INFO:teuthology.task.internal:Transferring archived files... 2024-09-10T04:24:24.174 DEBUG:teuthology.misc:Transferring archived files from smithi120:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624/remote/smithi120 2024-09-10T04:24:24.174 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-10T04:24:24.214 DEBUG:teuthology.misc:Transferring archived files from smithi151:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-10_02:59:23-orch:cephadm-wip-adk-testing-2024-09-09-1904-distro-default-smithi/7898624/remote/smithi151 2024-09-10T04:24:24.214 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-10T04:24:24.237 INFO:teuthology.task.internal:Removing archive directory... 2024-09-10T04:24:24.238 DEBUG:teuthology.orchestra.run.smithi120:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-10T04:24:24.249 DEBUG:teuthology.orchestra.run.smithi151:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-10T04:24:24.281 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-10T04:24:24.294 INFO:teuthology.task.internal:Not uploading archives. 2024-09-10T04:24:24.294 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-10T04:24:24.307 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-10T04:24:24.308 DEBUG:teuthology.orchestra.run.smithi120:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-10T04:24:24.310 DEBUG:teuthology.orchestra.run.smithi151:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-10T04:24:24.313 INFO:teuthology.orchestra.run.smithi120.stdout: 658639 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 10 04:24 /home/ubuntu/cephtest 2024-09-10T04:24:24.328 INFO:teuthology.orchestra.run.smithi151.stdout: 658636 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 10 04:24 /home/ubuntu/cephtest 2024-09-10T04:24:24.330 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-10T04:24:24.344 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-10T04:24:24.423 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: 1303.5369536876678 owner: scheduled_adking@teuthology success: true 2024-09-10T04:24:24.423 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-10T04:24:24.499 INFO:teuthology.run:pass