2024-09-21T17:06:12.393 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-21T17:06:12.409 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-21T17:06:12.502 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046 branch: wip-adk-testing-2024-09-21-1014 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: adking@redhat.com first_in_suite: false job_id: '7914046' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-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-21-1014 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: 0ecbb435437226bc091a0c2d4549ba25bf724efe ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 0ecbb435437226bc091a0c2d4549ba25bf724efe workunit: branch: wip-adk-testing-2024-09-21-1014 sha1: 0ecbb435437226bc091a0c2d4549ba25bf724efe owner: scheduled_adking@teuthology priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 9557 sha1: 0ecbb435437226bc091a0c2d4549ba25bf724efe sleep_before_teardown: 0 subset: 1/20 suite: orch:cephadm suite_branch: wip-adk-testing-2024-09-21-1014 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_0ecbb435437226bc091a0c2d4549ba25bf724efe/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 0ecbb435437226bc091a0c2d4549ba25bf724efe targets: smithi050.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMUr5RWamUfyQKDdffTbEi+uwBqDOP8Bs3Tt+VYR9OZ3mSMq/+CYexbnq9iyr7QBfCdaqZ3czbGns10e85dHc6c= smithi170.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCSGC/bITA58Veq+SLtE5tlU8UoFAWJ8ra/FOfbhzLO1EX5N03oLtHUwm2/I4mpVsZNA0F6RhY0wFDFpInR9u54= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-21_16:57:11 tube: smithi user: adking verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2902 2024-09-21T17:06:12.503 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_0ecbb435437226bc091a0c2d4549ba25bf724efe/qa; will attempt to use it 2024-09-21T17:06:12.503 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_0ecbb435437226bc091a0c2d4549ba25bf724efe/qa/tasks 2024-09-21T17:06:12.503 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-21T17:06:12.505 INFO:teuthology.task.internal:Checking packages... 2024-09-21T17:06:12.525 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '0ecbb435437226bc091a0c2d4549ba25bf724efe' 2024-09-21T17:06:12.525 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-21T17:06:12.525 INFO:teuthology.packaging:ref: None 2024-09-21T17:06:12.525 INFO:teuthology.packaging:tag: None 2024-09-21T17:06:12.525 INFO:teuthology.packaging:branch: wip-adk-testing-2024-09-21-1014 2024-09-21T17:06:12.525 INFO:teuthology.packaging:sha1: 0ecbb435437226bc091a0c2d4549ba25bf724efe 2024-09-21T17:06:12.525 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-21-1014 2024-09-21T17:06:12.663 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-5129-g0ecbb435-1jammy 2024-09-21T17:06:12.664 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-21T17:06:12.671 INFO:teuthology.task.internal:no buildpackages task found 2024-09-21T17:06:12.671 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-21T17:06:12.678 INFO:teuthology.task.internal:Saving configuration 2024-09-21T17:06:12.691 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-21T17:06:12.697 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-21T17:06:12.720 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046', '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-21 17:00:41.374713', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOsR1oL9g+6aZBIDYXmUo3755Z8Nx5p7+mfDOcAgJNpE'} 2024-09-21T17:06:12.743 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi170.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046', '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-21 17:00:41.373167', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL1BWS56m6TnSw+SDQIUGAjMKPbHkm+LUr0p27WCNp/d'} 2024-09-21T17:06:12.743 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-21T17:06:12.749 INFO:teuthology.task.internal:roles: ubuntu@smithi050.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-21T17:06:12.749 INFO:teuthology.task.internal:roles: ubuntu@smithi170.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-21T17:06:12.749 INFO:teuthology.run_tasks:Running task console_log... 2024-09-21T17:06:12.802 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fcbefd14280>, signals=[15]) 2024-09-21T17:06:12.803 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-21T17:06:12.808 INFO:teuthology.task.internal:Opening connections... 2024-09-21T17:06:12.808 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:06:12.809 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:06:12.890 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi170.front.sepia.ceph.com 2024-09-21T17:06:12.891 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:06:12.969 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-21T17:06:12.975 DEBUG:teuthology.orchestra.run.smithi050:> uname -m 2024-09-21T17:06:12.980 INFO:teuthology.orchestra.run.smithi050.stdout:x86_64 2024-09-21T17:06:12.980 DEBUG:teuthology.orchestra.run.smithi050:> cat /etc/os-release 2024-09-21T17:06:13.030 INFO:teuthology.orchestra.run.smithi050.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-21T17:06:13.030 INFO:teuthology.orchestra.run.smithi050.stdout:NAME="Ubuntu" 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_ID="22.04" 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_CODENAME=jammy 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:ID=ubuntu 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:ID_LIKE=debian 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-21T17:06:13.031 INFO:teuthology.orchestra.run.smithi050.stdout:UBUNTU_CODENAME=jammy 2024-09-21T17:06:13.032 INFO:teuthology.lock.ops:Updating smithi050.front.sepia.ceph.com on lock server 2024-09-21T17:06:13.054 DEBUG:teuthology.orchestra.run.smithi170:> uname -m 2024-09-21T17:06:13.059 INFO:teuthology.orchestra.run.smithi170.stdout:x86_64 2024-09-21T17:06:13.059 DEBUG:teuthology.orchestra.run.smithi170:> cat /etc/os-release 2024-09-21T17:06:13.107 INFO:teuthology.orchestra.run.smithi170.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-21T17:06:13.107 INFO:teuthology.orchestra.run.smithi170.stdout:NAME="Ubuntu" 2024-09-21T17:06:13.107 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION_ID="22.04" 2024-09-21T17:06:13.107 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-21T17:06:13.107 INFO:teuthology.orchestra.run.smithi170.stdout:VERSION_CODENAME=jammy 2024-09-21T17:06:13.107 INFO:teuthology.orchestra.run.smithi170.stdout:ID=ubuntu 2024-09-21T17:06:13.108 INFO:teuthology.orchestra.run.smithi170.stdout:ID_LIKE=debian 2024-09-21T17:06:13.108 INFO:teuthology.orchestra.run.smithi170.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-21T17:06:13.108 INFO:teuthology.orchestra.run.smithi170.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-21T17:06:13.108 INFO:teuthology.orchestra.run.smithi170.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-21T17:06:13.108 INFO:teuthology.orchestra.run.smithi170.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-21T17:06:13.108 INFO:teuthology.orchestra.run.smithi170.stdout:UBUNTU_CODENAME=jammy 2024-09-21T17:06:13.108 INFO:teuthology.lock.ops:Updating smithi170.front.sepia.ceph.com on lock server 2024-09-21T17:06:13.129 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-21T17:06:13.143 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-21T17:06:13.163 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-21T17:06:13.164 DEBUG:teuthology.orchestra.run.smithi050:> test '!' -e /home/ubuntu/cephtest 2024-09-21T17:06:13.166 DEBUG:teuthology.orchestra.run.smithi170:> test '!' -e /home/ubuntu/cephtest 2024-09-21T17:06:13.170 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-21T17:06:13.194 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-21T17:06:13.194 DEBUG:teuthology.orchestra.run.smithi050:> test -z $(ls -A /var/lib/ceph) 2024-09-21T17:06:13.212 DEBUG:teuthology.orchestra.run.smithi170:> test -z $(ls -A /var/lib/ceph) 2024-09-21T17:06:13.222 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-21T17:06:13.276 INFO:teuthology.run_tasks:Running task kernel... 2024-09-21T17:06:13.290 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-21T17:06:13.291 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-21T17:06:13.291 DEBUG:teuthology.orchestra.run.smithi050:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-21T17:06:13.291 DEBUG:teuthology.orchestra.run.smithi170:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-21T17:06:13.296 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:06:13.296 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-09-21T17:06:13.297 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:06:13.297 DEBUG:teuthology.orchestra.run.smithi170:> uname -r 2024-09-21T17:06:13.343 INFO:teuthology.orchestra.run.smithi050.stdout:5.15.0-56-generic 2024-09-21T17:06:13.343 INFO:teuthology.task.kernel:Running kernel on smithi050: 5.15.0-56-generic 2024-09-21T17:06:13.343 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get clean 2024-09-21T17:06:13.344 INFO:teuthology.orchestra.run.smithi170.stdout:5.15.0-56-generic 2024-09-21T17:06:13.344 INFO:teuthology.task.kernel:Running kernel on smithi170: 5.15.0-56-generic 2024-09-21T17:06:13.344 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get clean 2024-09-21T17:06:13.474 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get update 2024-09-21T17:06:13.491 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get update 2024-09-21T17:06:13.613 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-21T17:06:13.622 INFO:teuthology.orchestra.run.smithi170.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-21T17:06:13.648 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-21T17:06:13.664 INFO:teuthology.orchestra.run.smithi050.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-21T17:06:13.691 INFO:teuthology.orchestra.run.smithi170.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-21T17:06:13.728 INFO:teuthology.orchestra.run.smithi050.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-21T17:06:13.743 INFO:teuthology.orchestra.run.smithi170.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-21T17:06:13.759 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-21T17:06:13.858 INFO:teuthology.orchestra.run.smithi170.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-21T17:06:13.904 INFO:teuthology.orchestra.run.smithi050.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-21T17:06:13.956 INFO:teuthology.orchestra.run.smithi170.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-21T17:06:13.960 INFO:teuthology.orchestra.run.smithi170.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-21T17:06:13.963 INFO:teuthology.orchestra.run.smithi170.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-21T17:06:13.964 INFO:teuthology.orchestra.run.smithi170.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-21T17:06:13.974 INFO:teuthology.orchestra.run.smithi050.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-21T17:06:13.983 INFO:teuthology.orchestra.run.smithi170.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-21T17:06:13.984 INFO:teuthology.orchestra.run.smithi170.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-21T17:06:13.987 INFO:teuthology.orchestra.run.smithi170.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-21T17:06:13.987 INFO:teuthology.orchestra.run.smithi170.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-21T17:06:13.993 INFO:teuthology.orchestra.run.smithi170.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-21T17:06:14.000 INFO:teuthology.orchestra.run.smithi170.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-21T17:06:14.002 INFO:teuthology.orchestra.run.smithi170.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-21T17:06:14.003 INFO:teuthology.orchestra.run.smithi170.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-21T17:06:14.003 INFO:teuthology.orchestra.run.smithi170.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-21T17:06:14.011 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-21T17:06:14.014 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-21T17:06:14.014 INFO:teuthology.orchestra.run.smithi050.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-21T17:06:14.035 INFO:teuthology.orchestra.run.smithi050.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-21T17:06:14.036 INFO:teuthology.orchestra.run.smithi050.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-21T17:06:14.037 INFO:teuthology.orchestra.run.smithi170.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-21T17:06:14.037 INFO:teuthology.orchestra.run.smithi170.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-21T17:06:14.037 INFO:teuthology.orchestra.run.smithi170.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-21T17:06:14.038 INFO:teuthology.orchestra.run.smithi170.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-21T17:06:14.039 INFO:teuthology.orchestra.run.smithi170.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-21T17:06:14.039 INFO:teuthology.orchestra.run.smithi170.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-21T17:06:14.039 INFO:teuthology.orchestra.run.smithi170.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-21T17:06:14.039 INFO:teuthology.orchestra.run.smithi170.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-21T17:06:14.040 INFO:teuthology.orchestra.run.smithi170.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-21T17:06:14.040 INFO:teuthology.orchestra.run.smithi050.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-21T17:06:14.040 INFO:teuthology.orchestra.run.smithi050.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-21T17:06:14.042 INFO:teuthology.orchestra.run.smithi170.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-21T17:06:14.046 INFO:teuthology.orchestra.run.smithi050.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-21T17:06:14.055 INFO:teuthology.orchestra.run.smithi050.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-21T17:06:14.057 INFO:teuthology.orchestra.run.smithi050.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-21T17:06:14.086 INFO:teuthology.orchestra.run.smithi050.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-21T17:06:14.087 INFO:teuthology.orchestra.run.smithi050.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-21T17:06:14.087 INFO:teuthology.orchestra.run.smithi050.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-21T17:06:14.087 INFO:teuthology.orchestra.run.smithi050.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-21T17:06:14.087 INFO:teuthology.orchestra.run.smithi050.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-21T17:06:14.088 INFO:teuthology.orchestra.run.smithi050.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-21T17:06:14.090 INFO:teuthology.orchestra.run.smithi050.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-21T17:06:14.090 INFO:teuthology.orchestra.run.smithi050.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-21T17:06:14.104 INFO:teuthology.orchestra.run.smithi050.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-21T17:06:14.121 INFO:teuthology.orchestra.run.smithi050.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-21T17:06:14.121 INFO:teuthology.orchestra.run.smithi050.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-21T17:06:14.122 INFO:teuthology.orchestra.run.smithi050.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-21T17:06:14.190 INFO:teuthology.orchestra.run.smithi170.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-21T17:06:14.210 INFO:teuthology.orchestra.run.smithi050.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-21T17:06:14.496 INFO:teuthology.orchestra.run.smithi050.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-21T17:06:14.613 INFO:teuthology.orchestra.run.smithi170.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-21T17:06:14.629 INFO:teuthology.orchestra.run.smithi170.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-21T17:06:14.638 INFO:teuthology.orchestra.run.smithi170.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-21T17:06:14.639 INFO:teuthology.orchestra.run.smithi170.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-21T17:06:14.640 INFO:teuthology.orchestra.run.smithi170.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-21T17:06:14.671 INFO:teuthology.orchestra.run.smithi050.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-21T17:06:14.684 INFO:teuthology.orchestra.run.smithi050.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-21T17:06:14.684 INFO:teuthology.orchestra.run.smithi050.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-21T17:06:14.685 INFO:teuthology.orchestra.run.smithi050.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-21T17:06:14.736 INFO:teuthology.orchestra.run.smithi170.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-21T17:06:14.747 INFO:teuthology.orchestra.run.smithi170.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-21T17:06:14.747 INFO:teuthology.orchestra.run.smithi170.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-21T17:06:14.770 INFO:teuthology.orchestra.run.smithi050.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-21T17:06:14.776 INFO:teuthology.orchestra.run.smithi170.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-21T17:06:14.779 INFO:teuthology.orchestra.run.smithi050.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-21T17:06:14.779 INFO:teuthology.orchestra.run.smithi050.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-21T17:06:14.791 INFO:teuthology.orchestra.run.smithi170.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-21T17:06:14.797 INFO:teuthology.orchestra.run.smithi050.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-21T17:06:14.797 INFO:teuthology.orchestra.run.smithi170.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-21T17:06:14.798 INFO:teuthology.orchestra.run.smithi170.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-21T17:06:14.798 INFO:teuthology.orchestra.run.smithi170.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-21T17:06:14.799 INFO:teuthology.orchestra.run.smithi170.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-21T17:06:14.836 INFO:teuthology.orchestra.run.smithi050.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-21T17:06:14.840 INFO:teuthology.orchestra.run.smithi050.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-21T17:06:14.840 INFO:teuthology.orchestra.run.smithi050.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-21T17:06:14.841 INFO:teuthology.orchestra.run.smithi050.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-21T17:06:14.841 INFO:teuthology.orchestra.run.smithi050.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-21T17:06:14.877 INFO:teuthology.orchestra.run.smithi170.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-21T17:06:14.920 INFO:teuthology.orchestra.run.smithi050.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-21T17:06:20.434 INFO:teuthology.orchestra.run.smithi170.stdout:Fetched 16.3 MB in 2s (7,428 kB/s) 2024-09-21T17:06:20.721 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 16.3 MB in 2s (7,209 kB/s) 2024-09-21T17:06:21.875 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-09-21T17:06:21.893 DEBUG:teuthology.orchestra.run.smithi170:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-21T17:06:21.956 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-09-21T17:06:22.165 INFO:teuthology.orchestra.run.smithi170.stdout:Building dependency tree... 2024-09-21T17:06:22.166 INFO:teuthology.orchestra.run.smithi170.stdout:Reading state information... 2024-09-21T17:06:22.341 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T17:06:22.341 INFO:teuthology.orchestra.run.smithi170.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T17:06:22.341 INFO:teuthology.orchestra.run.smithi170.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T17:06:22.342 INFO:teuthology.orchestra.run.smithi170.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T17:06:22.342 INFO:teuthology.orchestra.run.smithi170.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-21T17:06:22.342 INFO:teuthology.orchestra.run.smithi170.stdout: python2.7-minimal 2024-09-21T17:06:22.342 INFO:teuthology.orchestra.run.smithi170.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T17:06:22.343 INFO:teuthology.orchestra.run.smithi170.stdout:The following additional packages will be installed: 2024-09-21T17:06:22.343 INFO:teuthology.orchestra.run.smithi170.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-21T17:06:22.343 INFO:teuthology.orchestra.run.smithi170.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-21T17:06:22.344 INFO:teuthology.orchestra.run.smithi170.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-21T17:06:22.345 INFO:teuthology.orchestra.run.smithi170.stdout:Suggested packages: 2024-09-21T17:06:22.345 INFO:teuthology.orchestra.run.smithi170.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-21T17:06:22.345 INFO:teuthology.orchestra.run.smithi170.stdout:Recommended packages: 2024-09-21T17:06:22.345 INFO:teuthology.orchestra.run.smithi170.stdout: thermald 2024-09-21T17:06:22.358 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-09-21T17:06:22.378 DEBUG:teuthology.orchestra.run.smithi050:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-21T17:06:22.390 INFO:teuthology.orchestra.run.smithi170.stdout:The following NEW packages will be installed: 2024-09-21T17:06:22.390 INFO:teuthology.orchestra.run.smithi170.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-21T17:06:22.390 INFO:teuthology.orchestra.run.smithi170.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-21T17:06:22.391 INFO:teuthology.orchestra.run.smithi170.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-21T17:06:22.392 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages will be upgraded: 2024-09-21T17:06:22.392 INFO:teuthology.orchestra.run.smithi170.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-21T17:06:22.443 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-09-21T17:06:22.572 INFO:teuthology.orchestra.run.smithi170.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-21T17:06:22.572 INFO:teuthology.orchestra.run.smithi170.stdout:Need to get 113 MB of archives. 2024-09-21T17:06:22.572 INFO:teuthology.orchestra.run.smithi170.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-21T17:06:22.572 INFO:teuthology.orchestra.run.smithi170.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-21T17:06:22.659 INFO:teuthology.orchestra.run.smithi050.stdout:Building dependency tree... 2024-09-21T17:06:22.659 INFO:teuthology.orchestra.run.smithi050.stdout:Reading state information... 2024-09-21T17:06:22.860 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T17:06:22.860 INFO:teuthology.orchestra.run.smithi050.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T17:06:22.860 INFO:teuthology.orchestra.run.smithi050.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T17:06:22.860 INFO:teuthology.orchestra.run.smithi050.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T17:06:22.860 INFO:teuthology.orchestra.run.smithi050.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-21T17:06:22.861 INFO:teuthology.orchestra.run.smithi050.stdout: python2.7-minimal 2024-09-21T17:06:22.861 INFO:teuthology.orchestra.run.smithi050.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T17:06:22.862 INFO:teuthology.orchestra.run.smithi050.stdout:The following additional packages will be installed: 2024-09-21T17:06:22.862 INFO:teuthology.orchestra.run.smithi050.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-21T17:06:22.862 INFO:teuthology.orchestra.run.smithi050.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-21T17:06:22.863 INFO:teuthology.orchestra.run.smithi050.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-21T17:06:22.864 INFO:teuthology.orchestra.run.smithi050.stdout:Suggested packages: 2024-09-21T17:06:22.864 INFO:teuthology.orchestra.run.smithi050.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-21T17:06:22.865 INFO:teuthology.orchestra.run.smithi050.stdout:Recommended packages: 2024-09-21T17:06:22.865 INFO:teuthology.orchestra.run.smithi050.stdout: thermald 2024-09-21T17:06:22.916 INFO:teuthology.orchestra.run.smithi050.stdout:The following NEW packages will be installed: 2024-09-21T17:06:22.916 INFO:teuthology.orchestra.run.smithi050.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-21T17:06:22.916 INFO:teuthology.orchestra.run.smithi050.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-21T17:06:22.917 INFO:teuthology.orchestra.run.smithi050.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-21T17:06:22.918 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages will be upgraded: 2024-09-21T17:06:22.919 INFO:teuthology.orchestra.run.smithi050.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-21T17:06:23.100 INFO:teuthology.orchestra.run.smithi050.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-21T17:06:23.101 INFO:teuthology.orchestra.run.smithi050.stdout:Need to get 113 MB of archives. 2024-09-21T17:06:23.101 INFO:teuthology.orchestra.run.smithi050.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-21T17:06:23.101 INFO:teuthology.orchestra.run.smithi050.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-21T17:06:24.065 INFO:teuthology.orchestra.run.smithi170.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-21T17:06:24.413 INFO:teuthology.orchestra.run.smithi170.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-21T17:06:24.537 INFO:teuthology.orchestra.run.smithi050.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-21T17:06:24.893 INFO:teuthology.orchestra.run.smithi050.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-21T17:06:26.636 INFO:teuthology.orchestra.run.smithi170.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-21T17:06:26.636 INFO:teuthology.orchestra.run.smithi170.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-21T17:06:26.637 INFO:teuthology.orchestra.run.smithi170.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-21T17:06:27.000 INFO:teuthology.orchestra.run.smithi170.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-21T17:06:27.081 INFO:teuthology.orchestra.run.smithi170.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-21T17:06:27.091 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-21T17:06:27.092 INFO:teuthology.orchestra.run.smithi050.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-21T17:06:27.092 INFO:teuthology.orchestra.run.smithi050.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-21T17:06:27.433 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-21T17:06:27.476 INFO:teuthology.orchestra.run.smithi170.stdout:Fetched 113 MB in 5s (24.2 MB/s) 2024-09-21T17:06:27.512 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-21T17:06:27.630 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-21T17:06:27.996 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 113 MB in 5s (24.7 MB/s) 2024-09-21T17:06:28.159 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-21T17:06:29.658 INFO:teuthology.orchestra.run.smithi170.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-21T17:06:29.662 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T17:06:29.802 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:30.209 INFO:teuthology.orchestra.run.smithi050.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-21T17:06:30.213 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T17:06:30.391 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:32.012 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-21T17:06:32.033 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T17:06:32.120 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:32.615 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-21T17:06:32.635 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T17:06:32.673 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:32.759 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-21T17:06:32.781 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T17:06:32.887 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:33.379 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-21T17:06:33.400 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T17:06:33.437 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:39.440 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T17:06:39.567 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T17:06:39.899 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T17:06:40.011 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T17:06:40.315 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-21T17:06:40.337 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-21T17:06:40.373 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-21T17:06:40.681 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T17:06:40.814 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T17:06:41.187 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T17:06:41.326 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T17:06:41.662 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-21T17:06:41.673 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-21T17:06:41.712 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-21T17:06:45.851 INFO:teuthology.orchestra.run.smithi170.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-21T17:06:45.889 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T17:06:45.926 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:48.334 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-21T17:06:48.371 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T17:06:48.461 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:49.024 INFO:teuthology.orchestra.run.smithi170.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T17:06:49.410 INFO:teuthology.orchestra.run.smithi170.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T17:06:50.322 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-21T17:06:50.443 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:50.570 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-21T17:06:50.732 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:52.030 INFO:teuthology.orchestra.run.smithi170.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-21T17:06:52.030 INFO:teuthology.orchestra.run.smithi170.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-21T17:06:52.030 INFO:teuthology.orchestra.run.smithi170.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-21T17:06:52.030 INFO:teuthology.orchestra.run.smithi170.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-21T17:06:52.184 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:52.259 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T17:06:52.414 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T17:06:52.815 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-21T17:06:52.960 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:53.128 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-21T17:06:53.282 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:53.568 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-21T17:06:53.694 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-21T17:06:53.803 INFO:teuthology.orchestra.run.smithi170.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:54.723 INFO:teuthology.orchestra.run.smithi050.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-21T17:06:54.723 INFO:teuthology.orchestra.run.smithi050.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-21T17:06:54.723 INFO:teuthology.orchestra.run.smithi050.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-21T17:06:54.723 INFO:teuthology.orchestra.run.smithi050.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-21T17:06:54.925 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:55.923 INFO:teuthology.orchestra.run.smithi170.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:55.982 INFO:teuthology.orchestra.run.smithi170.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-21T17:06:55.983 INFO:teuthology.orchestra.run.smithi170.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-21T17:06:56.418 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-21T17:06:56.569 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-21T17:06:56.695 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:58.213 INFO:teuthology.orchestra.run.smithi050.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T17:06:58.297 INFO:teuthology.orchestra.run.smithi050.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-21T17:06:58.297 INFO:teuthology.orchestra.run.smithi050.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-21T17:07:09.977 INFO:teuthology.orchestra.run.smithi170.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-21T17:07:09.977 INFO:teuthology.orchestra.run.smithi170.stdout:Sourcing file `/etc/default/grub' 2024-09-21T17:07:09.990 INFO:teuthology.orchestra.run.smithi170.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-21T17:07:10.013 INFO:teuthology.orchestra.run.smithi170.stdout:Generating grub configuration file ... 2024-09-21T17:07:10.339 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-21T17:07:10.356 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-21T17:07:10.725 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-21T17:07:10.731 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-21T17:07:10.801 INFO:teuthology.orchestra.run.smithi170.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-21T17:07:10.806 INFO:teuthology.orchestra.run.smithi170.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-21T17:07:10.982 INFO:teuthology.orchestra.run.smithi170.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-21T17:07:10.982 INFO:teuthology.orchestra.run.smithi170.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-21T17:07:10.982 INFO:teuthology.orchestra.run.smithi170.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-21T17:07:11.022 INFO:teuthology.orchestra.run.smithi170.stdout:done 2024-09-21T17:07:11.495 DEBUG:teuthology.orchestra.run.smithi170:> dpkg -s linux-image-generic 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Package: linux-image-generic 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Status: install ok installed 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Priority: optional 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Section: kernel 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Installed-Size: 21 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Maintainer: Ubuntu Kernel Team 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Architecture: amd64 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Source: linux-meta 2024-09-21T17:07:11.513 INFO:teuthology.orchestra.run.smithi170.stdout:Version: 5.15.0.122.122 2024-09-21T17:07:11.514 INFO:teuthology.orchestra.run.smithi170.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-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-21T17:07:11.514 INFO:teuthology.orchestra.run.smithi170.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-21T17:07:11.514 INFO:teuthology.orchestra.run.smithi170.stdout:Recommends: thermald 2024-09-21T17:07:11.514 INFO:teuthology.orchestra.run.smithi170.stdout:Description: Generic Linux kernel image 2024-09-21T17:07:11.514 INFO:teuthology.orchestra.run.smithi170.stdout: This package will always depend on the latest generic kernel image 2024-09-21T17:07:11.514 INFO:teuthology.orchestra.run.smithi170.stdout: available. 2024-09-21T17:07:11.514 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-21T17:07:11.514 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-21T17:07:11.514 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-21T17:07:11.514 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-21T17:07:11.514 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi170.front.sepia.ceph.com, path=None, version=distro) 2024-09-21T17:07:11.515 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get clean 2024-09-21T17:07:11.671 DEBUG:teuthology.orchestra.run.smithi170:> sudo apt-get update 2024-09-21T17:07:11.794 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-21T17:07:11.804 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-21T17:07:11.822 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-21T17:07:11.915 INFO:teuthology.orchestra.run.smithi170.stdout:Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-21T17:07:13.213 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-09-21T17:07:13.231 DEBUG:teuthology.orchestra.run.smithi170:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-21T17:07:13.292 INFO:teuthology.orchestra.run.smithi170.stdout:Reading package lists... 2024-09-21T17:07:13.503 INFO:teuthology.orchestra.run.smithi170.stdout:Building dependency tree... 2024-09-21T17:07:13.503 INFO:teuthology.orchestra.run.smithi170.stdout:Reading state information... 2024-09-21T17:07:13.686 INFO:teuthology.orchestra.run.smithi170.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-21T17:07:13.687 INFO:teuthology.orchestra.run.smithi170.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T17:07:13.687 INFO:teuthology.orchestra.run.smithi170.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T17:07:13.687 INFO:teuthology.orchestra.run.smithi170.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T17:07:13.687 INFO:teuthology.orchestra.run.smithi170.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T17:07:13.687 INFO:teuthology.orchestra.run.smithi170.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-21T17:07:13.687 INFO:teuthology.orchestra.run.smithi170.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-21T17:07:13.688 INFO:teuthology.orchestra.run.smithi170.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T17:07:13.727 INFO:teuthology.orchestra.run.smithi170.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-21T17:07:13.729 DEBUG:teuthology.orchestra.run.smithi170:> dpkg -s linux-image-generic 2024-09-21T17:07:13.744 INFO:teuthology.orchestra.run.smithi170.stdout:Package: linux-image-generic 2024-09-21T17:07:13.744 INFO:teuthology.orchestra.run.smithi170.stdout:Status: install ok installed 2024-09-21T17:07:13.744 INFO:teuthology.orchestra.run.smithi170.stdout:Priority: optional 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Section: kernel 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Installed-Size: 21 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Maintainer: Ubuntu Kernel Team 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Architecture: amd64 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Source: linux-meta 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Version: 5.15.0.122.122 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.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-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Recommends: thermald 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout:Description: Generic Linux kernel image 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout: This package will always depend on the latest generic kernel image 2024-09-21T17:07:13.745 INFO:teuthology.orchestra.run.smithi170.stdout: available. 2024-09-21T17:07:13.745 DEBUG:teuthology.orchestra.run.smithi170:> mktemp 2024-09-21T17:07:13.790 INFO:teuthology.orchestra.run.smithi170.stdout:/tmp/tmp.xJfgZPbe02 2024-09-21T17:07:13.790 DEBUG:teuthology.orchestra.run.smithi170:> sudo cp /boot/grub/grub.cfg /tmp/tmp.xJfgZPbe02 2024-09-21T17:07:13.861 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 0666 /tmp/tmp.xJfgZPbe02 2024-09-21T17:07:13.955 INFO:teuthology.orchestra.run.smithi050.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-21T17:07:13.955 INFO:teuthology.orchestra.run.smithi050.stdout:Sourcing file `/etc/default/grub' 2024-09-21T17:07:13.980 INFO:teuthology.orchestra.run.smithi050.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-21T17:07:13.983 DEBUG:teuthology.orchestra.remote:smithi170:/tmp/tmp.xJfgZPbe02 is 10KB 2024-09-21T17:07:13.995 DEBUG:teuthology.orchestra.run.smithi170:> rm -fr /tmp/tmp.xJfgZPbe02 2024-09-21T17:07:14.001 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-21T17:07:14.006 INFO:teuthology.orchestra.run.smithi050.stdout:Generating grub configuration file ... 2024-09-21T17:07:14.058 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:07:14.058 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-21T17:07:14.058 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-21T17:07:14.125 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-21T17:07:14.126 DEBUG:teuthology.orchestra.run.smithi170:> sudo update-grub 2024-09-21T17:07:14.400 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-21T17:07:14.423 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-21T17:07:14.888 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-21T17:07:14.895 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-21T17:07:14.965 INFO:teuthology.orchestra.run.smithi050.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-21T17:07:14.970 INFO:teuthology.orchestra.run.smithi050.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-21T17:07:15.161 INFO:teuthology.orchestra.run.smithi050.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-21T17:07:15.161 INFO:teuthology.orchestra.run.smithi050.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-21T17:07:15.161 INFO:teuthology.orchestra.run.smithi050.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-21T17:07:15.203 INFO:teuthology.orchestra.run.smithi050.stdout:done 2024-09-21T17:07:15.368 INFO:teuthology.orchestra.run.smithi170.stderr:Sourcing file `/etc/default/grub' 2024-09-21T17:07:15.369 INFO:teuthology.orchestra.run.smithi170.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-21T17:07:15.372 INFO:teuthology.orchestra.run.smithi170.stderr:Generating grub configuration file ... 2024-09-21T17:07:15.544 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-21T17:07:15.549 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-21T17:07:15.774 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-21T17:07:15.780 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-21T17:07:15.805 DEBUG:teuthology.orchestra.run.smithi050:> dpkg -s linux-image-generic 2024-09-21T17:07:15.821 INFO:teuthology.orchestra.run.smithi170.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-21T17:07:15.826 INFO:teuthology.orchestra.run.smithi170.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-21T17:07:15.837 INFO:teuthology.orchestra.run.smithi050.stdout:Package: linux-image-generic 2024-09-21T17:07:15.837 INFO:teuthology.orchestra.run.smithi050.stdout:Status: install ok installed 2024-09-21T17:07:15.837 INFO:teuthology.orchestra.run.smithi050.stdout:Priority: optional 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Section: kernel 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Installed-Size: 21 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Maintainer: Ubuntu Kernel Team 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: amd64 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Source: linux-meta 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Version: 5.15.0.122.122 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.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-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Recommends: thermald 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout:Description: Generic Linux kernel image 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout: This package will always depend on the latest generic kernel image 2024-09-21T17:07:15.838 INFO:teuthology.orchestra.run.smithi050.stdout: available. 2024-09-21T17:07:15.839 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-21T17:07:15.839 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-21T17:07:15.839 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-21T17:07:15.839 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-21T17:07:15.839 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi050.front.sepia.ceph.com, path=None, version=distro) 2024-09-21T17:07:15.840 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get clean 2024-09-21T17:07:15.981 INFO:teuthology.orchestra.run.smithi170.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-21T17:07:15.981 INFO:teuthology.orchestra.run.smithi170.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-21T17:07:15.981 INFO:teuthology.orchestra.run.smithi170.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-21T17:07:15.996 DEBUG:teuthology.orchestra.run.smithi050:> sudo apt-get update 2024-09-21T17:07:16.009 INFO:teuthology.orchestra.run.smithi170.stderr:done 2024-09-21T17:07:16.017 DEBUG:teuthology.orchestra.run.smithi170:> sudo shutdown -r now 2024-09-21T17:07:16.110 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-21T17:07:16.119 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-21T17:07:16.120 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-21T17:07:16.136 INFO:teuthology.orchestra.run.smithi050.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-21T17:07:17.584 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-09-21T17:07:17.604 DEBUG:teuthology.orchestra.run.smithi050:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-21T17:07:17.667 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-09-21T17:07:17.884 INFO:teuthology.orchestra.run.smithi050.stdout:Building dependency tree... 2024-09-21T17:07:17.885 INFO:teuthology.orchestra.run.smithi050.stdout:Reading state information... 2024-09-21T17:07:18.088 INFO:teuthology.orchestra.run.smithi050.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-21T17:07:18.088 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T17:07:18.088 INFO:teuthology.orchestra.run.smithi050.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T17:07:18.088 INFO:teuthology.orchestra.run.smithi050.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T17:07:18.088 INFO:teuthology.orchestra.run.smithi050.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T17:07:18.089 INFO:teuthology.orchestra.run.smithi050.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-21T17:07:18.089 INFO:teuthology.orchestra.run.smithi050.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-21T17:07:18.089 INFO:teuthology.orchestra.run.smithi050.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T17:07:18.133 INFO:teuthology.orchestra.run.smithi050.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-21T17:07:18.135 DEBUG:teuthology.orchestra.run.smithi050:> dpkg -s linux-image-generic 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Package: linux-image-generic 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Status: install ok installed 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Priority: optional 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Section: kernel 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Installed-Size: 21 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Maintainer: Ubuntu Kernel Team 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: amd64 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Source: linux-meta 2024-09-21T17:07:18.151 INFO:teuthology.orchestra.run.smithi050.stdout:Version: 5.15.0.122.122 2024-09-21T17:07:18.152 INFO:teuthology.orchestra.run.smithi050.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-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-21T17:07:18.152 INFO:teuthology.orchestra.run.smithi050.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-21T17:07:18.152 INFO:teuthology.orchestra.run.smithi050.stdout:Recommends: thermald 2024-09-21T17:07:18.152 INFO:teuthology.orchestra.run.smithi050.stdout:Description: Generic Linux kernel image 2024-09-21T17:07:18.152 INFO:teuthology.orchestra.run.smithi050.stdout: This package will always depend on the latest generic kernel image 2024-09-21T17:07:18.152 INFO:teuthology.orchestra.run.smithi050.stdout: available. 2024-09-21T17:07:18.152 DEBUG:teuthology.orchestra.run.smithi050:> mktemp 2024-09-21T17:07:18.197 INFO:teuthology.orchestra.run.smithi050.stdout:/tmp/tmp.12nwvOTkit 2024-09-21T17:07:18.197 DEBUG:teuthology.orchestra.run.smithi050:> sudo cp /boot/grub/grub.cfg /tmp/tmp.12nwvOTkit 2024-09-21T17:07:18.266 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 0666 /tmp/tmp.12nwvOTkit 2024-09-21T17:07:18.394 DEBUG:teuthology.orchestra.remote:smithi050:/tmp/tmp.12nwvOTkit is 10KB 2024-09-21T17:07:18.407 DEBUG:teuthology.orchestra.run.smithi050:> rm -fr /tmp/tmp.12nwvOTkit 2024-09-21T17:07:18.412 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-21T17:07:18.465 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:07:18.466 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-21T17:07:18.466 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-21T17:07:18.553 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-21T17:07:18.553 DEBUG:teuthology.orchestra.run.smithi050:> sudo update-grub 2024-09-21T17:07:20.113 INFO:teuthology.orchestra.run.smithi050.stderr:Sourcing file `/etc/default/grub' 2024-09-21T17:07:20.114 INFO:teuthology.orchestra.run.smithi050.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-21T17:07:20.120 INFO:teuthology.orchestra.run.smithi050.stderr:Generating grub configuration file ... 2024-09-21T17:07:20.339 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-21T17:07:20.345 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-21T17:07:20.616 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-21T17:07:20.621 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-21T17:07:20.662 INFO:teuthology.orchestra.run.smithi050.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-21T17:07:20.667 INFO:teuthology.orchestra.run.smithi050.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-21T17:07:20.782 INFO:teuthology.orchestra.run.smithi050.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-21T17:07:20.782 INFO:teuthology.orchestra.run.smithi050.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-21T17:07:20.782 INFO:teuthology.orchestra.run.smithi050.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-21T17:07:20.792 INFO:teuthology.orchestra.run.smithi050.stderr:done 2024-09-21T17:07:20.794 DEBUG:teuthology.orchestra.run.smithi050:> sudo shutdown -r now 2024-09-21T17:07:46.043 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-21T17:07:46.043 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-09-21T17:07:46.044 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:07:50.846 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-21T17:07:50.847 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-21T17:07:50.847 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:08:04.463 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.170 2024-09-21T17:08:09.327 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.50 2024-09-21T17:08:13.466 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-09-21T17:08:13.467 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:08:16.527 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.170 2024-09-21T17:08:18.330 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-21T17:08:18.330 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:08:28.535 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-09-21T17:08:28.536 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:08:46.963 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.170 2024-09-21T17:09:01.976 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-09-21T17:09:01.977 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:09:02.518 DEBUG:teuthology.orchestra.run.smithi170:> true 2024-09-21T17:09:03.427 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-09-21T17:09:03.427 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-122-generic"... 2024-09-21T17:09:03.427 DEBUG:teuthology.orchestra.run.smithi170:> uname -r 2024-09-21T17:09:03.472 INFO:teuthology.orchestra.run.smithi170.stdout:5.15.0-122-generic 2024-09-21T17:09:03.472 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-21T17:09:03.472 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-21T17:09:03.473 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-21T17:09:04.474 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-21T17:09:04.474 DEBUG:teuthology.orchestra.run.smithi170:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-21T17:09:04.552 INFO:teuthology.orchestra.run.smithi170.stdout:ttyS1 2024-09-21T17:09:04.570 DEBUG:teuthology.parallel:result is None 2024-09-21T17:09:18.332 DEBUG:teuthology.orchestra.remote:timed out 2024-09-21T17:09:30.333 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-21T17:09:30.334 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:09:30.542 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-09-21T17:09:31.098 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-21T17:09:31.099 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-122-generic"... 2024-09-21T17:09:31.099 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-09-21T17:09:31.149 INFO:teuthology.orchestra.run.smithi050.stdout:5.15.0-122-generic 2024-09-21T17:09:31.149 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-21T17:09:31.149 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-21T17:09:31.150 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-21T17:09:32.150 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-21T17:09:32.151 DEBUG:teuthology.orchestra.run.smithi050:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-21T17:09:32.217 INFO:teuthology.orchestra.run.smithi050.stdout:ttyS1 2024-09-21T17:09:32.253 DEBUG:teuthology.parallel:result is None 2024-09-21T17:09:32.253 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-21T17:09:32.263 INFO:teuthology.task.internal:Creating test directory... 2024-09-21T17:09:32.263 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-21T17:09:32.265 DEBUG:teuthology.orchestra.run.smithi170:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-21T17:09:32.271 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-21T17:09:32.295 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-21T17:09:32.326 INFO:teuthology.task.internal:Creating archive directory... 2024-09-21T17:09:32.326 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-21T17:09:32.328 DEBUG:teuthology.orchestra.run.smithi170:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-21T17:09:32.419 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-21T17:09:32.433 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-21T17:09:32.434 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:09:32.436 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:09:32.457 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-21T17:09:32.465 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-21T17:09:32.466 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-21T17:09:32.476 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-21T17:09:32.477 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-21T17:09:32.486 INFO:teuthology.task.internal:Configuring sudo... 2024-09-21T17:09:32.487 DEBUG:teuthology.orchestra.run.smithi050:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-21T17:09:32.520 DEBUG:teuthology.orchestra.run.smithi170:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-21T17:09:32.562 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-21T17:09:32.572 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-21T17:09:32.572 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-21T17:09:32.588 DEBUG:teuthology.orchestra.run.smithi170:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-21T17:09:32.608 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-21T17:09:32.639 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-21T17:09:32.688 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:09:32.688 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-21T17:09:32.752 DEBUG:teuthology.orchestra.run.smithi170:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-21T17:09:32.758 DEBUG:teuthology.orchestra.run.smithi170:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-21T17:09:32.804 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:09:32.804 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-21T17:09:32.868 DEBUG:teuthology.orchestra.run.smithi050:> sudo service rsyslog restart 2024-09-21T17:09:32.871 DEBUG:teuthology.orchestra.run.smithi170:> sudo service rsyslog restart 2024-09-21T17:09:32.945 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-21T17:09:32.959 INFO:teuthology.task.internal:Starting timer... 2024-09-21T17:09:32.959 INFO:teuthology.run_tasks:Running task pcp... 2024-09-21T17:09:32.992 INFO:teuthology.run_tasks:Running task selinux... 2024-09-21T17:09:33.019 DEBUG:teuthology.task.selinux:Excluding smithi050: OS 'ubuntu' does not support SELinux 2024-09-21T17:09:33.019 DEBUG:teuthology.task.selinux:Excluding smithi170: OS 'ubuntu' does not support SELinux 2024-09-21T17:09:33.019 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-21T17:09:33.019 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-21T17:09:33.019 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-21T17:09:33.019 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-21T17:09:33.028 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-21T17:09:33.031 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-21T17:09:33.133 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-21T17:09:33.142 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-21T17:09:33.142 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi050.front.sepia.ceph.com,smithi170.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-21T17:17:05.094 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi050.front.sepia.ceph.com'), Remote(name='ubuntu@smithi170.front.sepia.ceph.com')] 2024-09-21T17:17:05.095 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-21T17:17:05.096 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:17:05.178 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-09-21T17:17:05.262 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-09-21T17:17:05.263 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-09-21T17:17:05.263 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi170.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T17:17:05.342 DEBUG:teuthology.orchestra.run.smithi170:> true 2024-09-21T17:17:05.419 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi170.front.sepia.ceph.com' 2024-09-21T17:17:05.419 INFO:teuthology.run_tasks:Running task clock... 2024-09-21T17:17:05.428 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-21T17:17:05.428 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-21T17:17:05.428 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:17:05.431 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-21T17:17:05.431 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:17:05.461 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-21T17:17:05.461 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Command line: ntpd -gq 2024-09-21T17:17:05.461 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: ---------------------------------------------------- 2024-09-21T17:17:05.461 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: ntp-4 is maintained by Network Time Foundation, 2024-09-21T17:17:05.461 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-21T17:17:05.461 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: corporation. Support and training for ntp-4 are 2024-09-21T17:17:05.461 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: available at https://www.nwtime.org/support 2024-09-21T17:17:05.461 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: ---------------------------------------------------- 2024-09-21T17:17:05.462 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: proto: precision = 0.047 usec (-24) 2024-09-21T17:17:05.462 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: basedate set to 2022-02-04 2024-09-21T17:17:05.462 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: gps base set to 2022-02-06 (week 2196) 2024-09-21T17:17:05.462 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-21T17:17:05.463 INFO:teuthology.orchestra.run.smithi050.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-21T17:17:05.463 INFO:teuthology.orchestra.run.smithi050.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-21T17:17:05.464 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: restrict ::: KOD does nothing without LIMITED. 2024-09-21T17:17:05.464 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Listen and drop on 0 v6wildcard [::]:123 2024-09-21T17:17:05.464 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-21T17:17:05.464 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Listen normally on 2 lo 127.0.0.1:123 2024-09-21T17:17:05.464 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Listen normally on 3 ens1f0 172.21.15.50:123 2024-09-21T17:17:05.464 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Listen normally on 4 lo [::1]:123 2024-09-21T17:17:05.464 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1584%4]:123 2024-09-21T17:17:05.464 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:05 ntpd[18423]: Listening on routing socket on fd #22 for interface updates 2024-09-21T17:17:05.485 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-21T17:17:05.485 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Command line: ntpd -gq 2024-09-21T17:17:05.485 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: ---------------------------------------------------- 2024-09-21T17:17:05.486 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: ntp-4 is maintained by Network Time Foundation, 2024-09-21T17:17:05.486 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-21T17:17:05.486 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: corporation. Support and training for ntp-4 are 2024-09-21T17:17:05.486 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: available at https://www.nwtime.org/support 2024-09-21T17:17:05.486 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: ---------------------------------------------------- 2024-09-21T17:17:05.487 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: proto: precision = 0.045 usec (-24) 2024-09-21T17:17:05.488 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: basedate set to 2022-02-04 2024-09-21T17:17:05.488 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: gps base set to 2022-02-06 (week 2196) 2024-09-21T17:17:05.488 INFO:teuthology.orchestra.run.smithi170.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-21T17:17:05.489 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-21T17:17:05.489 INFO:teuthology.orchestra.run.smithi170.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-21T17:17:05.491 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: restrict ::: KOD does nothing without LIMITED. 2024-09-21T17:17:05.491 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Listen and drop on 0 v6wildcard [::]:123 2024-09-21T17:17:05.491 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-21T17:17:05.491 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Listen normally on 2 lo 127.0.0.1:123 2024-09-21T17:17:05.491 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Listen normally on 3 enp3s0f1 172.21.15.170:123 2024-09-21T17:17:05.492 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Listen normally on 4 lo [::1]:123 2024-09-21T17:17:05.492 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:7255%5]:123 2024-09-21T17:17:05.492 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:05 ntpd[18498]: Listening on routing socket on fd #22 for interface updates 2024-09-21T17:17:06.461 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:06 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:06.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:06 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:06.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:06 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:06.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:06 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:06.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:06 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:06.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:06 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:06.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:06 ntpd[18423]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:06.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:06 ntpd[18423]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:06.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:06.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:06.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:06.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:06.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:06.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:06.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:06.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:06.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:06.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:06.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:06.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:06 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:08.461 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:08 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:08.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:08 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:08.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:08 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:08.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:08 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:08.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:08 ntpd[18423]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:08.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:08 ntpd[18423]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:08.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:08.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:08.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:08 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:09.461 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:09 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:09.461 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:09 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:09.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:09 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:09.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:09 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:09.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:09 ntpd[18423]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:09.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:09 ntpd[18423]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:09.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:09 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:09.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:09 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:09.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:09 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:09.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:09 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:09.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:09 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:09.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:09 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:09.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:09 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:09.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:09 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:10.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:10.463 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:10.463 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:10.463 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:10 ntpd[18423]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:10.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:10.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:10.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:10 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:11.461 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:11 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:11.461 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:11 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:11.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:11 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:11.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:11 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:11.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:11 ntpd[18423]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:11.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:11 ntpd[18423]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:11.485 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:11 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:11.485 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:11 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:11.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:11 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:11.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:11 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:11.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:11 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:11.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:11 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:12.462 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:12.463 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:12.463 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:12.463 INFO:teuthology.orchestra.run.smithi050.stdout:21 Sep 17:17:12 ntpd[18423]: ntpd: time slew -0.000459 s 2024-09-21T17:17:12.463 INFO:teuthology.orchestra.run.smithi050.stdout:ntpd: time slew -0.000459s 2024-09-21T17:17:12.463 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-21T17:17:12.463 INFO:teuthology.orchestra.run.smithi050.stderr:21 Sep 17:17:12 ntpd[18423]: can't open /var/log/ntpstats/loopstats.20240921: Permission denied 2024-09-21T17:17:12.485 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stdout:21 Sep 17:17:12 ntpd[18498]: ntpd: time slew -0.000406 s 2024-09-21T17:17:12.486 INFO:teuthology.orchestra.run.smithi170.stdout:ntpd: time slew -0.000406s 2024-09-21T17:17:12.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-21T17:17:12.487 INFO:teuthology.orchestra.run.smithi170.stderr:21 Sep 17:17:12 ntpd[18498]: can't open /var/log/ntpstats/loopstats.20240921: Permission denied 2024-09-21T17:17:12.522 INFO:teuthology.orchestra.run.smithi050.stdout: remote refid st t when poll reach delay offset jitter 2024-09-21T17:17:12.522 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================== 2024-09-21T17:17:12.522 INFO:teuthology.orchestra.run.smithi050.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T17:17:12.522 INFO:teuthology.orchestra.run.smithi050.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T17:17:12.522 INFO:teuthology.orchestra.run.smithi050.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T17:17:12.522 INFO:teuthology.orchestra.run.smithi050.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T17:17:12.541 INFO:teuthology.orchestra.run.smithi170.stdout: remote refid st t when poll reach delay offset jitter 2024-09-21T17:17:12.542 INFO:teuthology.orchestra.run.smithi170.stdout:============================================================================== 2024-09-21T17:17:12.542 INFO:teuthology.orchestra.run.smithi170.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T17:17:12.542 INFO:teuthology.orchestra.run.smithi170.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T17:17:12.542 INFO:teuthology.orchestra.run.smithi170.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T17:17:12.542 INFO:teuthology.orchestra.run.smithi170.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T17:17:12.543 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-21T17:17:12.555 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-21T17:17:12.556 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:17:12.556 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T17:17:12.568 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-21T17:17:12.568 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_1 2024-09-21T17:17:12.616 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-21T17:17:12.617 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T17:17:12.617 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 886 Links: 1 2024-09-21T17:17:12.617 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T17:17:12.617 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-21 17:13:31.832493883 +0000 2024-09-21T17:17:12.617 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-21 17:13:31.572496205 +0000 2024-09-21T17:17:12.617 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-21 17:13:31.572496205 +0000 2024-09-21T17:17:12.617 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-09-21T17:17:12.617 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-21T17:17:12.670 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-21T17:17:12.670 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-21T17:17:12.670 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000207975 s, 2.5 MB/s 2024-09-21T17:17:12.671 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-21T17:17:12.722 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_2 2024-09-21T17:17:12.768 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-21T17:17:12.769 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T17:17:12.769 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 904 Links: 1 2024-09-21T17:17:12.769 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T17:17:12.769 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-21 17:13:32.312489596 +0000 2024-09-21T17:17:12.769 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-21 17:13:32.032492097 +0000 2024-09-21T17:17:12.769 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-21 17:13:32.032492097 +0000 2024-09-21T17:17:12.769 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-09-21T17:17:12.769 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-21T17:17:12.828 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-21T17:17:12.828 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-21T17:17:12.828 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000311777 s, 1.6 MB/s 2024-09-21T17:17:12.829 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-21T17:17:12.878 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_3 2024-09-21T17:17:12.924 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-21T17:17:12.925 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T17:17:12.925 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 921 Links: 1 2024-09-21T17:17:12.925 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T17:17:12.925 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-21 17:13:32.760485593 +0000 2024-09-21T17:17:12.925 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-21 17:13:32.528487667 +0000 2024-09-21T17:17:12.925 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-21 17:13:32.528487667 +0000 2024-09-21T17:17:12.925 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-09-21T17:17:12.925 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-21T17:17:12.979 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-21T17:17:12.979 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-21T17:17:12.979 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000285236 s, 1.8 MB/s 2024-09-21T17:17:12.981 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-21T17:17:13.030 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_4 2024-09-21T17:17:13.076 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-21T17:17:13.076 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T17:17:13.077 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 938 Links: 1 2024-09-21T17:17:13.077 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T17:17:13.077 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-21 17:13:32.996483487 +0000 2024-09-21T17:17:13.077 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-21 17:13:32.992483521 +0000 2024-09-21T17:17:13.077 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-21 17:13:32.992483521 +0000 2024-09-21T17:17:13.077 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-09-21T17:17:13.077 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-21T17:17:13.131 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-21T17:17:13.131 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-21T17:17:13.131 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000245281 s, 2.1 MB/s 2024-09-21T17:17:13.132 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-21T17:17:13.182 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:17:13.307 INFO:teuthology.orchestra.run.smithi050.stdout:loop 2024-09-21T17:17:13.309 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_1... 2024-09-21T17:17:13.309 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:17:13.326 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-09-21T17:17:13.345 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_11 2024-09-21T17:17:13.363 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_2... 2024-09-21T17:17:13.363 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:17:13.420 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-09-21T17:17:13.439 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_21 2024-09-21T17:17:13.455 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_3... 2024-09-21T17:17:13.455 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:17:13.513 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-09-21T17:17:13.534 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_31 2024-09-21T17:17:13.550 INFO:tasks.nvme_loop:Connecting nvme_loop smithi050:/dev/vg_nvme/lv_4... 2024-09-21T17:17:13.550 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:17:13.611 INFO:teuthology.orchestra.run.smithi050.stdout:1 2024-09-21T17:17:13.629 INFO:teuthology.orchestra.run.smithi050.stdout:/dev/vg_nvme/lv_41 2024-09-21T17:17:13.645 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:17:13.645 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T17:17:13.692 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme list -o json 2024-09-21T17:17:13.746 INFO:teuthology.orchestra.run.smithi050.stdout:{ 2024-09-21T17:17:13.746 INFO:teuthology.orchestra.run.smithi050.stdout: "Devices" : [ 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware" : "E2010325", 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "Index" : 0, 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber" : "INTEL SSDPED1D480GA", 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber" : "PHMB7513001F480DGN" 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: }, 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware" : "5.15.0-1", 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "Index" : 1, 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber" : "Linux", 2024-09-21T17:17:13.747 INFO:teuthology.orchestra.run.smithi050.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber" : "22529d1c3b616a045ef3" 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: }, 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware" : "5.15.0-1", 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "Index" : 2, 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber" : "Linux", 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber" : "16d4952100dbf8308b2e" 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: }, 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware" : "5.15.0-1", 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "Index" : 3, 2024-09-21T17:17:13.748 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber" : "Linux", 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber" : "90eaf7d672274c059129" 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: }, 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: { 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: "Firmware" : "5.15.0-1", 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: "Index" : 4, 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: "ModelNumber" : "Linux", 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: "SerialNumber" : "394de47363a49daa9827" 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: } 2024-09-21T17:17:13.749 INFO:teuthology.orchestra.run.smithi050.stdout: ] 2024-09-21T17:17:13.750 INFO:teuthology.orchestra.run.smithi050.stdout:} 2024-09-21T17:17:13.750 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-21T17:17:13.750 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:17:13.751 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/scratch_devs 2024-09-21T17:17:13.805 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:17:13.805 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T17:17:13.811 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-21T17:17:13.811 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_1 2024-09-21T17:17:13.858 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-21T17:17:13.859 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T17:17:13.859 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 890 Links: 1 2024-09-21T17:17:13.859 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T17:17:13.859 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-09-21 17:13:31.763295729 +0000 2024-09-21T17:17:13.859 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-09-21 17:13:31.503298051 +0000 2024-09-21T17:17:13.859 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-09-21 17:13:31.503298051 +0000 2024-09-21T17:17:13.859 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-09-21T17:17:13.859 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-21T17:17:13.913 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-09-21T17:17:13.913 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-09-21T17:17:13.913 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.00028998 s, 1.8 MB/s 2024-09-21T17:17:13.914 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-21T17:17:13.964 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_2 2024-09-21T17:17:14.010 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-21T17:17:14.010 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T17:17:14.010 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 908 Links: 1 2024-09-21T17:17:14.010 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T17:17:14.010 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-09-21 17:13:32.251291371 +0000 2024-09-21T17:17:14.011 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-09-21 17:13:31.987293729 +0000 2024-09-21T17:17:14.011 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-09-21 17:13:31.987293729 +0000 2024-09-21T17:17:14.011 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-09-21T17:17:14.011 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-21T17:17:14.064 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-09-21T17:17:14.064 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-09-21T17:17:14.064 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000190413 s, 2.7 MB/s 2024-09-21T17:17:14.065 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-21T17:17:14.116 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_3 2024-09-21T17:17:14.162 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-21T17:17:14.162 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T17:17:14.163 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 920 Links: 1 2024-09-21T17:17:14.163 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T17:17:14.163 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-09-21 17:13:32.739287012 +0000 2024-09-21T17:17:14.163 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-09-21 17:13:32.487289263 +0000 2024-09-21T17:17:14.163 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-09-21 17:13:32.487289263 +0000 2024-09-21T17:17:14.163 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-09-21T17:17:14.163 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-21T17:17:14.216 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-09-21T17:17:14.216 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-09-21T17:17:14.216 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000189761 s, 2.7 MB/s 2024-09-21T17:17:14.217 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-21T17:17:14.268 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/vg_nvme/lv_4 2024-09-21T17:17:14.314 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-21T17:17:14.314 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T17:17:14.315 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 944 Links: 1 2024-09-21T17:17:14.315 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T17:17:14.315 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-09-21 17:13:33.167283189 +0000 2024-09-21T17:17:14.315 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-09-21 17:13:32.935285261 +0000 2024-09-21T17:17:14.315 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-09-21 17:13:32.935285261 +0000 2024-09-21T17:17:14.315 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-09-21T17:17:14.315 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-21T17:17:14.367 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-09-21T17:17:14.368 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-09-21T17:17:14.368 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000190996 s, 2.7 MB/s 2024-09-21T17:17:14.369 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-21T17:17:14.415 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:17:14.558 INFO:teuthology.orchestra.run.smithi170.stdout:loop 2024-09-21T17:17:14.559 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_1... 2024-09-21T17:17:14.559 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:17:14.576 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-09-21T17:17:14.595 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_11 2024-09-21T17:17:14.611 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_2... 2024-09-21T17:17:14.611 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:17:14.674 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-09-21T17:17:14.694 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_21 2024-09-21T17:17:14.710 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_3... 2024-09-21T17:17:14.711 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:17:14.771 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-09-21T17:17:14.791 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_31 2024-09-21T17:17:14.807 INFO:tasks.nvme_loop:Connecting nvme_loop smithi170:/dev/vg_nvme/lv_4... 2024-09-21T17:17:14.807 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:17:14.866 INFO:teuthology.orchestra.run.smithi170.stdout:1 2024-09-21T17:17:14.886 INFO:teuthology.orchestra.run.smithi170.stdout:/dev/vg_nvme/lv_41 2024-09-21T17:17:14.904 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:17:14.904 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T17:17:14.950 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme list -o json 2024-09-21T17:17:15.003 INFO:teuthology.orchestra.run.smithi170.stdout:{ 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "Devices" : [ 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: { 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "Firmware" : "E2010325", 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "Index" : 0, 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "ModelNumber" : "INTEL SSDPED1D480GA", 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "SerialNumber" : "PHMB7476002R480DGN" 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: }, 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: { 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "Firmware" : "5.15.0-1", 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "Index" : 1, 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "ModelNumber" : "Linux", 2024-09-21T17:17:15.004 INFO:teuthology.orchestra.run.smithi170.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "SerialNumber" : "b38d836397281e448f07" 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: }, 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: { 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "Firmware" : "5.15.0-1", 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "Index" : 2, 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "ModelNumber" : "Linux", 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "SerialNumber" : "58cf1920b46c49c0939e" 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: }, 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: { 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "Firmware" : "5.15.0-1", 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "Index" : 3, 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "ModelNumber" : "Linux", 2024-09-21T17:17:15.005 INFO:teuthology.orchestra.run.smithi170.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: "SerialNumber" : "378ab28caf8cdbeb7c75" 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: }, 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: { 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: "Firmware" : "5.15.0-1", 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: "Index" : 4, 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: "ModelNumber" : "Linux", 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: "ProductName" : "Unknown Device", 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: "SerialNumber" : "f05538e2fd38847ccb68" 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: } 2024-09-21T17:17:15.006 INFO:teuthology.orchestra.run.smithi170.stdout: ] 2024-09-21T17:17:15.007 INFO:teuthology.orchestra.run.smithi170.stdout:} 2024-09-21T17:17:15.009 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-21T17:17:15.010 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:17:15.010 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/scratch_devs 2024-09-21T17:17:15.061 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-21T17:17:15.149 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': '0ecbb435437226bc091a0c2d4549ba25bf724efe'} 2024-09-21T17:17:15.149 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe 2024-09-21T17:17:15.150 INFO:tasks.cephadm:Cluster fsid is 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:17:15.150 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-21T17:17:15.150 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-21T17:17:15.150 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi050': '172.21.15.50', 'mon.smithi170': '172.21.15.170'} 2024-09-21T17:17:15.150 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-21T17:17:15.150 DEBUG:teuthology.orchestra.run.smithi050:> sudo hostname $(hostname -s) 2024-09-21T17:17:15.165 DEBUG:teuthology.orchestra.run.smithi170:> sudo hostname $(hostname -s) 2024-09-21T17:17:15.178 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-21T17:17:15.179 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=0ecbb435437226bc091a0c2d4549ba25bf724efe 2024-09-21T17:17:15.327 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '0ecbb435437226bc091a0c2d4549ba25bf724efe', '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/83206/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-5129-g0ecbb435', 'node_name': '172.21.2.3+braggi03', '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-5129-g0ecbb435-1jammy'}, 'url': 'https://1.chacra.ceph.com/r/ceph/wip-adk-testing-2024-09-21-1014/0ecbb435437226bc091a0c2d4549ba25bf724efe/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-21 16:02:43.709811', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-adk-testing-2024-09-21-1014', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/wip-adk-testing-2024-09-21-1014/0ecbb435437226bc091a0c2d4549ba25bf724efe/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-21T17:17:15.467 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref wip-adk-testing-2024-09-21-1014, sha1 0ecbb435437226bc091a0c2d4549ba25bf724efe from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=0ecbb435437226bc091a0c2d4549ba25bf724efe 2024-09-21T17:17:15.468 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-21-1014/0ecbb435437226bc091a0c2d4549ba25bf724efe/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-21T17:17:15.469 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-21-1014/0ecbb435437226bc091a0c2d4549ba25bf724efe/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-21T17:17:15.469 DEBUG:teuthology.orchestra.run.smithi050:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-21-1014/0ecbb435437226bc091a0c2d4549ba25bf724efe/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-21T17:17:15.942 INFO:teuthology.orchestra.run.smithi050.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811893 Sep 21 17:17 /home/ubuntu/cephtest/cephadm 2024-09-21T17:17:15.942 DEBUG:teuthology.orchestra.run.smithi170:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-adk-testing-2024-09-21-1014/0ecbb435437226bc091a0c2d4549ba25bf724efe/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-21T17:17:16.430 INFO:teuthology.orchestra.run.smithi170.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811893 Sep 21 17:17 /home/ubuntu/cephtest/cephadm 2024-09-21T17:17:16.431 DEBUG:teuthology.orchestra.run.smithi050:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-21T17:17:16.438 DEBUG:teuthology.orchestra.run.smithi170:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-21T17:17:16.460 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe on all hosts... 2024-09-21T17:17:16.460 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe pull 2024-09-21T17:17:16.482 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe pull 2024-09-21T17:17:16.669 INFO:teuthology.orchestra.run.smithi050.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe... 2024-09-21T17:17:16.672 INFO:teuthology.orchestra.run.smithi170.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe... 2024-09-21T17:18:14.456 INFO:teuthology.orchestra.run.smithi170.stdout:{ 2024-09-21T17:18:14.456 INFO:teuthology.orchestra.run.smithi170.stdout: "ceph_version": "ceph version 19.3.0-5129-g0ecbb435 (0ecbb435437226bc091a0c2d4549ba25bf724efe) squid (dev)", 2024-09-21T17:18:14.456 INFO:teuthology.orchestra.run.smithi170.stdout: "image_id": "3fa9090ef91d4e87f14d21d1361976a766f2908d39879e744bc3fd80d5762a25", 2024-09-21T17:18:14.456 INFO:teuthology.orchestra.run.smithi170.stdout: "repo_digests": [ 2024-09-21T17:18:14.457 INFO:teuthology.orchestra.run.smithi170.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b7e696d4014dc129bd30a3126ccae3c43a4a3060f7a811b44f457f7ec9f7f5d5" 2024-09-21T17:18:14.457 INFO:teuthology.orchestra.run.smithi170.stdout: ] 2024-09-21T17:18:14.457 INFO:teuthology.orchestra.run.smithi170.stdout:} 2024-09-21T17:18:18.594 INFO:teuthology.orchestra.run.smithi050.stdout:{ 2024-09-21T17:18:18.594 INFO:teuthology.orchestra.run.smithi050.stdout: "ceph_version": "ceph version 19.3.0-5129-g0ecbb435 (0ecbb435437226bc091a0c2d4549ba25bf724efe) squid (dev)", 2024-09-21T17:18:18.595 INFO:teuthology.orchestra.run.smithi050.stdout: "image_id": "3fa9090ef91d4e87f14d21d1361976a766f2908d39879e744bc3fd80d5762a25", 2024-09-21T17:18:18.595 INFO:teuthology.orchestra.run.smithi050.stdout: "repo_digests": [ 2024-09-21T17:18:18.595 INFO:teuthology.orchestra.run.smithi050.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b7e696d4014dc129bd30a3126ccae3c43a4a3060f7a811b44f457f7ec9f7f5d5" 2024-09-21T17:18:18.595 INFO:teuthology.orchestra.run.smithi050.stdout: ] 2024-09-21T17:18:18.595 INFO:teuthology.orchestra.run.smithi050.stdout:} 2024-09-21T17:18:18.629 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /etc/ceph 2024-09-21T17:18:18.643 DEBUG:teuthology.orchestra.run.smithi170:> sudo mkdir -p /etc/ceph 2024-09-21T17:18:18.658 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 777 /etc/ceph 2024-09-21T17:18:18.699 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 777 /etc/ceph 2024-09-21T17:18:18.713 INFO:tasks.cephadm:Writing seed config... 2024-09-21T17:18:18.714 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-21T17:18:18.714 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-21T17:18:18.714 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-21T17:18:18.714 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-21T17:18:18.715 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-21T17:18:18.715 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-21T17:18:18.715 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-21T17:18:18.715 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-21T17:18:18.715 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:18:18.715 DEBUG:teuthology.orchestra.run.smithi050:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-21T17:18:18.748 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 = 58e4c4c0-783d-11ef-baf6-efdc52797490 [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-21T17:18:18.748 DEBUG:teuthology.orchestra.run.smithi050:mon.smithi050> sudo journalctl -f -n 0 -u ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi050.service 2024-09-21T17:18:18.793 INFO:tasks.cephadm:Bootstrapping... 2024-09-21T17:18:18.793 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe -v bootstrap --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 --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.50 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-21T17:18:19.021 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-09-21T17:18:19.022 INFO:teuthology.orchestra.run.smithi050.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe', '-v', 'bootstrap', '--fsid', '58e4c4c0-783d-11ef-baf6-efdc52797490', '--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.50', '--skip-admin-label'] 2024-09-21T17:18:19.022 INFO:teuthology.orchestra.run.smithi050.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-21T17:18:19.023 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying podman|docker is present... 2024-09-21T17:18:19.023 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying lvm2 is present... 2024-09-21T17:18:19.023 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying time synchronization is in place... 2024-09-21T17:18:19.028 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-21T17:18:19.028 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-21T17:18:19.033 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-21T17:18:19.033 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-21T17:18:19.037 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-21T17:18:19.037 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-21T17:18:19.041 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-21T17:18:19.041 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-21T17:18:19.045 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-21T17:18:19.045 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout masked 2024-09-21T17:18:19.049 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-21T17:18:19.049 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-21T17:18:19.053 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-21T17:18:19.053 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-21T17:18:19.057 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-21T17:18:19.057 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-21T17:18:19.061 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout enabled 2024-09-21T17:18:19.065 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout active 2024-09-21T17:18:19.065 INFO:teuthology.orchestra.run.smithi050.stdout:Unit ntp.service is enabled and running 2024-09-21T17:18:19.065 INFO:teuthology.orchestra.run.smithi050.stdout:Repeating the final host check... 2024-09-21T17:18:19.065 INFO:teuthology.orchestra.run.smithi050.stdout:docker (/usr/bin/docker) is present 2024-09-21T17:18:19.065 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl is present 2024-09-21T17:18:19.065 INFO:teuthology.orchestra.run.smithi050.stdout:lvcreate is present 2024-09-21T17:18:19.070 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-21T17:18:19.070 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-21T17:18:19.073 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-21T17:18:19.073 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-21T17:18:19.076 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-21T17:18:19.076 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-21T17:18:19.080 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-21T17:18:19.080 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-21T17:18:19.084 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-21T17:18:19.084 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout masked 2024-09-21T17:18:19.088 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-21T17:18:19.088 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-21T17:18:19.091 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-21T17:18:19.092 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-21T17:18:19.095 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-21T17:18:19.095 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-09-21T17:18:19.099 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout enabled 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout active 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:Unit ntp.service is enabled and running 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:Host looks OK 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:Cluster fsid: 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:Acquiring lock 140566808509600 on /run/cephadm/58e4c4c0-783d-11ef-baf6-efdc52797490.lock 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:Lock 140566808509600 acquired on /run/cephadm/58e4c4c0-783d-11ef-baf6-efdc52797490.lock 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying IP 172.21.15.50 port 3300 ... 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying IP 172.21.15.50 port 6789 ... 2024-09-21T17:18:19.104 INFO:teuthology.orchestra.run.smithi050.stdout:Base mon IP(s) is [172.21.15.50:3300, 172.21.15.50:6789], mon addrv is [v2:172.21.15.50:3300,v1:172.21.15.50:6789] 2024-09-21T17:18:19.107 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 2024-09-21T17:18:19.107 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-21T17:18:19.107 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.50 2024-09-21T17:18:19.109 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-21T17:18:19.109 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2024-09-21T17:18:19.109 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1789sec hoplimit 64 pref medium 2024-09-21T17:18:19.112 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-21T17:18:19.112 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-21T17:18:19.112 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-21T17:18:19.112 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-09-21T17:18:19.112 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1584/64 scope link 2024-09-21T17:18:19.112 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-21T17:18:19.113 INFO:teuthology.orchestra.run.smithi050.stdout:Mon IP `172.21.15.50` is in CIDR network `172.21.0.0/20` 2024-09-21T17:18:19.113 INFO:teuthology.orchestra.run.smithi050.stdout:Mon IP `172.21.15.50` is in CIDR network `172.21.0.0/20` 2024-09-21T17:18:19.113 INFO:teuthology.orchestra.run.smithi050.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-21T17:18:19.113 INFO:teuthology.orchestra.run.smithi050.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-21T17:18:19.113 INFO:teuthology.orchestra.run.smithi050.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe... 2024-09-21T17:18:19.493 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/docker: stdout 0ecbb435437226bc091a0c2d4549ba25bf724efe: Pulling from ceph-ci/ceph 2024-09-21T17:18:19.494 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/docker: stdout Digest: sha256:b7e696d4014dc129bd30a3126ccae3c43a4a3060f7a811b44f457f7ec9f7f5d5 2024-09-21T17:18:19.494 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe 2024-09-21T17:18:19.494 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe 2024-09-21T17:18:20.975 INFO:teuthology.orchestra.run.smithi050.stdout:ceph: stdout ceph version 19.3.0-5129-g0ecbb435 (0ecbb435437226bc091a0c2d4549ba25bf724efe) squid (dev) 2024-09-21T17:18:20.976 INFO:teuthology.orchestra.run.smithi050.stdout:Ceph version: ceph version 19.3.0-5129-g0ecbb435 (0ecbb435437226bc091a0c2d4549ba25bf724efe) squid (dev) 2024-09-21T17:18:20.976 INFO:teuthology.orchestra.run.smithi050.stdout:Extracting ceph user uid/gid from container image... 2024-09-21T17:18:22.423 INFO:teuthology.orchestra.run.smithi050.stdout:stat: stdout 167 167 2024-09-21T17:18:22.423 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial keys... 2024-09-21T17:18:23.795 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQDf/+5miAE4EhAAHdEIehbrya4hto71OSo6oA== 2024-09-21T17:18:25.294 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQDg/+5moVTTKRAA0NvGNn9tV8qEuu87VzhuDQ== 2024-09-21T17:18:26.650 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQDi/+5m+n93BxAAIy6JrNAKb1qOuT7JbRYO2Q== 2024-09-21T17:18:26.651 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial monmap... 2024-09-21T17:18:28.131 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-21T17:18:28.131 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-21T17:18:28.131 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:28.131 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-21T17:18:28.132 INFO:teuthology.orchestra.run.smithi050.stdout:monmaptool for smithi050 [v2:172.21.15.50:3300,v1:172.21.15.50:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-21T17:18:28.132 INFO:teuthology.orchestra.run.smithi050.stdout:setting min_mon_release = quincy 2024-09-21T17:18:28.132 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: set fsid to 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:28.132 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-21T17:18:28.132 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:18:28.132 INFO:teuthology.orchestra.run.smithi050.stdout:Creating mon... 2024-09-21T17:18:29.517 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.989+0000 7febfb142c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-21T17:18:29.517 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.989+0000 7febfb142c80 1 imported monmap: 2024-09-21T17:18:29.517 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.989+0000 7febfb142c80 0 /usr/bin/ceph-mon: set fsid to 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Git sha 0 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Compile date 2024-09-21 14:38:11 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: DB SUMMARY 2024-09-21T17:18:29.518 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: DB Session ID: R8743QUU669PQQF4IYOR 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi050/store.db dir, Total Num: 0, files: 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi050/store.db: 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.error_if_exists: 0 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.create_if_missing: 1 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-21T17:18:29.519 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.env: 0x560e9cb9c120 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.info_log: 0x560e9dbecd80 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.statistics: (nil) 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.use_fsync: 0 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-21T17:18:29.520 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.db_log_dir: 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.wal_dir: 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.write_buffer_manager: 0x560e9dbe5cc0 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-21T17:18:29.521 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.unordered_write: 0 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.row_cache: None 2024-09-21T17:18:29.522 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.wal_filter: None 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.two_write_queues: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.wal_compression: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.atomic_flush: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-21T17:18:29.523 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-21T17:18:29.524 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_open_files: -1 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Compression algorithms supported: 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: kZSTD supported: 0 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: kXpressCompression supported: 0 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: kZlibCompression supported: 1 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-21T17:18:29.525 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi050/store.db/MANIFEST-000001 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.merge_operator: 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_filter: None 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-21T17:18:29.526 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x560e9dbec9a0) 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x560e9dbd5610 2024-09-21T17:18:29.527 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-21T17:18:29.528 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression: NoCompression 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-21T17:18:29.529 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.num_levels: 7 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-21T17:18:29.530 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-21T17:18:29.531 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-21T17:18:29.532 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.bloom_locality: 0 2024-09-21T17:18:29.533 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.ttl: 2592000 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.enable_blob_files: false 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.min_blob_size: 0 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-21T17:18:29.534 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi050/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-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 48788600-b115-4f4a-b834-2da71264f4af 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.993+0000 7febfb142c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.997+0000 7febfb142c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x560e9dc04e00 2024-09-21T17:18:29.535 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.997+0000 7febfb142c80 4 rocksdb: DB pointer 0x560e9dce6000 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.997+0000 7febf28cd640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.997+0000 7febf28cd640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.536 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-21T17:18:29.537 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-21T17:18:29.538 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.538 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.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-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x560e9dbd5610#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.5e-05 secs_since: 0 2024-09-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.997+0000 7febfb142c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.997+0000 7febfb142c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T17:18:28.997+0000 7febfb142c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi050 for mon.smithi050 2024-09-21T17:18:29.539 INFO:teuthology.orchestra.run.smithi050.stdout:create mon.smithi050 on 2024-09-21T17:18:29.976 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-21T17:18:30.225 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490.target -> /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490.target. 2024-09-21T17:18:30.225 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490.target -> /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490.target. 2024-09-21T17:18:30.559 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi050 2024-09-21T17:18:30.559 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to reset failed state of unit ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi050.service: Unit ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi050.service not loaded. 2024-09-21T17:18:30.763 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490.target.wants/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi050.service -> /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.service. 2024-09-21T17:18:30.771 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld does not appear to be present 2024-09-21T17:18:30.772 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to enable service . firewalld.service is not available 2024-09-21T17:18:30.772 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mon to start... 2024-09-21T17:18:30.772 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mon... 2024-09-21T17:18:32.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:32 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.280462+0000 mon.smithi050 (mon.0) 1 : cluster [INF] mon.smithi050 is new leader, mons smithi050 in quorum (ranks 0) 2024-09-21T17:18:33.126 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout cluster: 2024-09-21T17:18:33.127 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout id: 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:33.127 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-21T17:18:33.127 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:33.127 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout services: 2024-09-21T17:18:33.128 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi050 (age 0.279882s) 2024-09-21T17:18:33.128 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-21T17:18:33.128 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-21T17:18:33.128 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:33.128 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout data: 2024-09-21T17:18:33.128 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-21T17:18:33.128 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-21T17:18:33.129 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-21T17:18:33.129 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout pgs: 2024-09-21T17:18:33.129 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:33.129 INFO:teuthology.orchestra.run.smithi050.stdout:mon is available 2024-09-21T17:18:33.129 INFO:teuthology.orchestra.run.smithi050.stdout:Assimilating anything we can from ceph.conf... 2024-09-21T17:18:33.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300212+0000 mon.smithi050 (mon.0) 2 : cluster [INF] mon.smithi050 is new leader, mons smithi050 in quorum (ranks 0) 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300212+0000 mon.smithi050 (mon.0) 2 : cluster [INF] mon.smithi050 is new leader, mons smithi050 in quorum (ranks 0) 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300458+0000 mon.smithi050 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300458+0000 mon.smithi050 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300468+0000 mon.smithi050 (mon.0) 4 : cluster [DBG] fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300468+0000 mon.smithi050 (mon.0) 4 : cluster [DBG] fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300475+0000 mon.smithi050 (mon.0) 5 : cluster [DBG] last_changed 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300475+0000 mon.smithi050 (mon.0) 5 : cluster [DBG] last_changed 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300482+0000 mon.smithi050 (mon.0) 6 : cluster [DBG] created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300482+0000 mon.smithi050 (mon.0) 6 : cluster [DBG] created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300491+0000 mon.smithi050 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300491+0000 mon.smithi050 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T17:18:33.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300498+0000 mon.smithi050 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300498+0000 mon.smithi050 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300506+0000 mon.smithi050 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.300506+0000 mon.smithi050 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.322525+0000 mon.smithi050 (mon.0) 10 : cluster [DBG] fsmap 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.322525+0000 mon.smithi050 (mon.0) 10 : cluster [DBG] fsmap 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.324873+0000 mon.smithi050 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.324873+0000 mon.smithi050 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.325438+0000 mon.smithi050 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: cluster 2024-09-21T17:18:32.325438+0000 mon.smithi050 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: audit 2024-09-21T17:18:32.580056+0000 mon.smithi050 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.50:0/3692687581' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-21T17:18:33.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:33 smithi050 bash[19435]: audit 2024-09-21T17:18:32.580056+0000 mon.smithi050 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.50:0/3692687581' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-21T17:18:34.726 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:34.726 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [global] 2024-09-21T17:18:34.726 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout fsid = 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:34.726 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-21T17:18:34.726 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.50:3300,v1:172.21.15.50:6789] 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [osd] 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-21T17:18:34.727 INFO:teuthology.orchestra.run.smithi050.stdout:Generating new minimal ceph.conf... 2024-09-21T17:18:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:34 smithi050 bash[19435]: audit 2024-09-21T17:18:34.256840+0000 mon.smithi050 (mon.0) 14 : audit [INF] from='client.? 172.21.15.50:0/502518466' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-21T17:18:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:34 smithi050 bash[19435]: audit 2024-09-21T17:18:34.256840+0000 mon.smithi050 (mon.0) 14 : audit [INF] from='client.? 172.21.15.50:0/502518466' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-21T17:18:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:34 smithi050 bash[19435]: audit 2024-09-21T17:18:34.261868+0000 mon.smithi050 (mon.0) 15 : audit [INF] from='client.? 172.21.15.50:0/502518466' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-21T17:18:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:34 smithi050 bash[19435]: audit 2024-09-21T17:18:34.261868+0000 mon.smithi050 (mon.0) 15 : audit [INF] from='client.? 172.21.15.50:0/502518466' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-21T17:18:36.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:35 smithi050 bash[19435]: audit 2024-09-21T17:18:35.771038+0000 mon.smithi050 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.50:0/1531738682' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:18:36.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:35 smithi050 bash[19435]: audit 2024-09-21T17:18:35.771038+0000 mon.smithi050 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.50:0/1531738682' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:18:36.264 INFO:teuthology.orchestra.run.smithi050.stdout:Restarting the monitor... 2024-09-21T17:18:36.605 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:36 smithi050 systemd[1]: Stopping Ceph mon.smithi050 for 58e4c4c0-783d-11ef-baf6-efdc52797490... 2024-09-21T17:18:36.605 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:36 smithi050 bash[19435]: debug 2024-09-21T17:18:36.385+0000 7f304dfc7640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi050 -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-21T17:18:36.605 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:36 smithi050 bash[19435]: debug 2024-09-21T17:18:36.385+0000 7f304dfc7640 -1 mon.smithi050@0(leader) e1 *** Got Signal Terminated *** 2024-09-21T17:18:36.915 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:36 smithi050 bash[19820]: ceph-58e4c4c0-783d-11ef-baf6-efdc52797490-mon-smithi050 2024-09-21T17:18:36.933 INFO:teuthology.orchestra.run.smithi050.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-21T17:18:37.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:36 smithi050 bash[19882]: Error response from daemon: No such container: ceph-58e4c4c0-783d-11ef-baf6-efdc52797490-mon-smithi050 2024-09-21T17:18:37.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:36 smithi050 systemd[1]: ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi050.service: Deactivated successfully. 2024-09-21T17:18:37.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:36 smithi050 systemd[1]: Stopped Ceph mon.smithi050 for 58e4c4c0-783d-11ef-baf6-efdc52797490. 2024-09-21T17:18:37.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:36 smithi050 systemd[1]: Started Ceph mon.smithi050 for 58e4c4c0-783d-11ef-baf6-efdc52797490. 2024-09-21T17:18:38.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.297+0000 7fb8bfff0c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-21T17:18:38.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.297+0000 7fb8bfff0c80 0 ceph version 19.3.0-5129-g0ecbb435 (0ecbb435437226bc091a0c2d4549ba25bf724efe) squid (dev), process ceph-mon, pid 7 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.297+0000 7fb8bfff0c80 0 pidfile_write: ignore empty --pid-file 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.301+0000 7fb8bfff0c80 0 load: jerasure load: lrc 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Git sha 0 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Compile date 2024-09-21 14:38:11 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: DB SUMMARY 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: DB Session ID: 12HK5IDCDMV8IK381KS5 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: CURRENT file: CURRENT 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi050/store.db dir, Total Num: 1, files: 000008.sst 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi050/store.db: 000009.log size: 89072 ; 2024-09-21T17:18:38.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.error_if_exists: 0 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.create_if_missing: 0 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.env: 0x558265640120 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.info_log: 0x558266a1f8e0 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.statistics: (nil) 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.use_fsync: 0 2024-09-21T17:18:38.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-21T17:18:38.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-21T17:18:38.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-21T17:18:38.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-21T17:18:38.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-21T17:18:38.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-21T17:18:38.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-21T17:18:38.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.db_log_dir: 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.wal_dir: 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-21T17:18:38.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.write_buffer_manager: 0x558266a23b80 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.unordered_write: 0 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-21T17:18:38.488 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.row_cache: None 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.wal_filter: None 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.two_write_queues: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.wal_compression: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.atomic_flush: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-21T17:18:38.489 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-21T17:18:38.490 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_open_files: -1 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Compression algorithms supported: 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: kZSTD supported: 0 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: kXpressCompression supported: 0 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-21T17:18:38.491 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-21T17:18:38.492 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: kZlibCompression supported: 1 2024-09-21T17:18:38.492 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-21T17:18:38.492 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-21T17:18:38.492 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-21T17:18:38.492 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-21T17:18:38.492 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi050/store.db/MANIFEST-000010 2024-09-21T17:18:38.493 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-21T17:18:38.493 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-21T17:18:38.493 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.merge_operator: 2024-09-21T17:18:38.493 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_filter: None 2024-09-21T17:18:38.493 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-21T17:18:38.493 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-21T17:18:38.493 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x558266a1f540) 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cache_index_and_filter_blocks: 1 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: pin_top_level_index_and_filter: 1 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: index_type: 0 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: data_block_index_type: 0 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: index_shortening: 1 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: data_block_hash_table_util_ratio: 0.750000 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: checksum: 4 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: no_block_cache: 0 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: block_cache: 0x558266a15610 2024-09-21T17:18:38.494 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: block_cache_name: BinnedLRUCache 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: block_cache_options: 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: capacity : 536870912 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: num_shard_bits : 4 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: strict_capacity_limit : 0 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: high_pri_pool_ratio: 0.000 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: block_cache_compressed: (nil) 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: persistent_cache: (nil) 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: block_size: 4096 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: block_size_deviation: 10 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: block_restart_interval: 16 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: index_block_restart_interval: 1 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: metadata_block_size: 4096 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: partition_filters: 0 2024-09-21T17:18:38.495 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: use_delta_encoding: 1 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: filter_policy: bloomfilter 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: whole_key_filtering: 1 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: verify_compression: 0 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: read_amp_bytes_per_bit: 0 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: format_version: 5 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: enable_index_compression: 1 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: block_align: 0 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: max_auto_readahead_size: 262144 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: prepopulate_block_cache: 0 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: initial_auto_readahead_size: 8192 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: num_file_reads_for_auto_readahead: 2 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression: NoCompression 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-21T17:18:38.496 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.num_levels: 7 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-21T17:18:38.497 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-21T17:18:38.498 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-21T17:18:38.499 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-21T17:18:38.500 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.bloom_locality: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.ttl: 2592000 2024-09-21T17:18:38.501 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.enable_blob_files: false 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.min_blob_size: 0 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi050/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-21T17:18:38.502 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 48788600-b115-4f4a-b834-2da71264f4af 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726939118309416, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726939118310661, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85848, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 257, "table_properties": {"data_size": 83988, "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": 78237, "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": 1726939118, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "48788600-b115-4f4a-b834-2da71264f4af", "db_session_id": "12HK5IDCDMV8IK381KS5", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726939118310781, "job": 1, "event": "recovery_finished"} 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.305+0000 7fb8bfff0c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi050/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x558266a42e00 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 4 rocksdb: DB pointer 0x558266b46000 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8b5db8640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8b5db8640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: ** DB Stats ** 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: 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-21T17:18:38.503 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: 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-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: ** Compaction Stats [default] ** 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: 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-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: L0 2/0 85.73 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 107.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Sum 2/0 85.73 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 107.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 107.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: ** Compaction Stats [default] ** 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: 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-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-21T17:18:38.504 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 107.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: AddFile(Total Files): cumulative 0, interval 0 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: AddFile(Keys): cumulative 0, interval 0 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Cumulative compaction: 0.00 GB write, 19.87 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Interval compaction: 0.00 GB write, 19.87 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: 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-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: Block cache BinnedLRUCache@0x558266a15610#7 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: 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-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: ** File Read Latency Histogram By Level [default] ** 2024-09-21T17:18:38.505 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 0 starting mon.smithi050 rank 0 at public addrs [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] at bind addrs [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi050 fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 1 mon.smithi050@-1(???) e1 preinit fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 0 mon.smithi050@-1(???).mds e1 new map 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 0 mon.smithi050@-1(???).mds e1 print_map 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: e1 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: btime 2024-09-21T17:18:32:320237+0000 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: 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-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: legacy client fscid: -1 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: No filesystems configured 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 0 mon.smithi050@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 0 mon.smithi050@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 0 mon.smithi050@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T17:18:38.506 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 0 mon.smithi050@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: debug 2024-09-21T17:18:38.309+0000 7fb8bfff0c80 1 mon.smithi050@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336238+0000 mon.smithi050 (mon.0) 1 : cluster [INF] mon.smithi050 is new leader, mons smithi050 in quorum (ranks 0) 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336238+0000 mon.smithi050 (mon.0) 1 : cluster [INF] mon.smithi050 is new leader, mons smithi050 in quorum (ranks 0) 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336310+0000 mon.smithi050 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336310+0000 mon.smithi050 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336331+0000 mon.smithi050 (mon.0) 3 : cluster [DBG] fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336331+0000 mon.smithi050 (mon.0) 3 : cluster [DBG] fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336343+0000 mon.smithi050 (mon.0) 4 : cluster [DBG] last_changed 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336343+0000 mon.smithi050 (mon.0) 4 : cluster [DBG] last_changed 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336351+0000 mon.smithi050 (mon.0) 5 : cluster [DBG] created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336351+0000 mon.smithi050 (mon.0) 5 : cluster [DBG] created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336358+0000 mon.smithi050 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336358+0000 mon.smithi050 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T17:18:38.507 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336364+0000 mon.smithi050 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336364+0000 mon.smithi050 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336372+0000 mon.smithi050 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336372+0000 mon.smithi050 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336799+0000 mon.smithi050 (mon.0) 9 : cluster [DBG] fsmap 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336799+0000 mon.smithi050 (mon.0) 9 : cluster [DBG] fsmap 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336828+0000 mon.smithi050 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.336828+0000 mon.smithi050 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.337178+0000 mon.smithi050 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-21T17:18:38.508 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:38 smithi050 bash[19920]: cluster 2024-09-21T17:18:38.337178+0000 mon.smithi050 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-21T17:18:38.993 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-21T17:18:39.020 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-21T17:18:39.020 INFO:teuthology.orchestra.run.smithi050.stdout:Creating mgr... 2024-09-21T17:18:39.020 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-21T17:18:39.021 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-21T17:18:39.021 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-21T17:18:39.318 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mgr.smithi050.baqqjh 2024-09-21T17:18:39.318 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to reset failed state of unit ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mgr.smithi050.baqqjh.service: Unit ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mgr.smithi050.baqqjh.service not loaded. 2024-09-21T17:18:39.436 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:39 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:18:39.528 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490.target.wants/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mgr.smithi050.baqqjh.service -> /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.service. 2024-09-21T17:18:39.537 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld does not appear to be present 2024-09-21T17:18:39.537 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to enable service . firewalld.service is not available 2024-09-21T17:18:39.537 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld does not appear to be present 2024-09-21T17:18:39.537 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-21T17:18:39.537 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr to start... 2024-09-21T17:18:39.537 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr... 2024-09-21T17:18:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:39 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:18:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:39 smithi050 bash[19920]: audit 2024-09-21T17:18:38.494260+0000 mon.smithi050 (mon.0) 12 : audit [INF] from='client.? 172.21.15.50:0/1929097696' entity='client.admin' 2024-09-21T17:18:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:39 smithi050 bash[19920]: audit 2024-09-21T17:18:38.494260+0000 mon.smithi050 (mon.0) 12 : audit [INF] from='client.? 172.21.15.50:0/1929097696' entity='client.admin' 2024-09-21T17:18:41.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:41 smithi050 bash[19920]: audit 2024-09-21T17:18:41.258860+0000 mon.smithi050 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.50:0/651577675' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T17:18:41.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:41 smithi050 bash[19920]: audit 2024-09-21T17:18:41.258860+0000 mon.smithi050 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.50:0/651577675' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T17:18:41.816 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "58e4c4c0-783d-11ef-baf6-efdc52797490", 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-09-21T17:18:41.817 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "smithi050" 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-21T17:18:41.818 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-21T17:18:41.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "btime": "2024-09-21T17:18:32:320237+0000", 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-21T17:18:41.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-09-21T17:18:32.321159+0000", 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-21T17:18:41.821 INFO:teuthology.orchestra.run.smithi050.stdout:mgr not available, waiting (1/15)... 2024-09-21T17:18:45.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:44 smithi050 bash[19920]: audit 2024-09-21T17:18:44.928280+0000 mon.smithi050 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.50:0/1666349577' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T17:18:45.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:44 smithi050 bash[19920]: audit 2024-09-21T17:18:44.928280+0000 mon.smithi050 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.50:0/1666349577' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T17:18:45.422 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:45.422 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-21T17:18:45.422 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "58e4c4c0-783d-11ef-baf6-efdc52797490", 2024-09-21T17:18:45.422 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-09-21T17:18:45.422 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "smithi050" 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:45.423 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-21T17:18:45.424 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-21T17:18:45.424 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:45.425 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-21T17:18:45.425 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-21T17:18:45.425 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:45.425 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-21T17:18:45.425 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:45.425 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-21T17:18:45.425 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-21T17:18:45.425 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-21T17:18:45.428 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-21T17:18:45.428 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-21T17:18:45.428 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-21T17:18:45.428 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:45.429 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "btime": "2024-09-21T17:18:32:320237+0000", 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-21T17:18:45.430 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:45.431 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-09-21T17:18:32.321159+0000", 2024-09-21T17:18:45.431 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T17:18:45.431 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:45.431 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-21T17:18:45.431 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-21T17:18:45.431 INFO:teuthology.orchestra.run.smithi050.stdout:mgr not available, waiting (2/15)... 2024-09-21T17:18:47.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: cluster 2024-09-21T17:18:47.278292+0000 mon.smithi050 (mon.0) 15 : cluster [INF] Activating manager daemon smithi050.baqqjh 2024-09-21T17:18:47.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: cluster 2024-09-21T17:18:47.278292+0000 mon.smithi050 (mon.0) 15 : cluster [INF] Activating manager daemon smithi050.baqqjh 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: cluster 2024-09-21T17:18:47.285413+0000 mon.smithi050 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi050.baqqjh(active, starting, since 0.00763625s) 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: cluster 2024-09-21T17:18:47.285413+0000 mon.smithi050 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi050.baqqjh(active, starting, since 0.00763625s) 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286222+0000 mon.smithi050 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286222+0000 mon.smithi050 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286335+0000 mon.smithi050 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286335+0000 mon.smithi050 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286437+0000 mon.smithi050 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286437+0000 mon.smithi050 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286556+0000 mon.smithi050 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286556+0000 mon.smithi050 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286662+0000 mon.smithi050 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:18:47.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286662+0000 mon.smithi050 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286764+0000 mon.smithi050 (mon.0) 22 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.286764+0000 mon.smithi050 (mon.0) 22 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.287416+0000 mon.smithi050 (mon.0) 23 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.287416+0000 mon.smithi050 (mon.0) 23 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.288200+0000 mon.smithi050 (mon.0) 24 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi050.baqqjh", "id": "smithi050.baqqjh"} : dispatch 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.288200+0000 mon.smithi050 (mon.0) 24 : audit [DBG] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi050.baqqjh", "id": "smithi050.baqqjh"} : dispatch 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: cluster 2024-09-21T17:18:47.314129+0000 mon.smithi050 (mon.0) 25 : cluster [INF] Manager daemon smithi050.baqqjh is now available 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: cluster 2024-09-21T17:18:47.314129+0000 mon.smithi050 (mon.0) 25 : cluster [INF] Manager daemon smithi050.baqqjh is now available 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.326165+0000 mon.smithi050 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:18:47.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:47 smithi050 bash[19920]: audit 2024-09-21T17:18:47.326165+0000 mon.smithi050 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: audit 2024-09-21T17:18:47.329636+0000 mon.smithi050 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: audit 2024-09-21T17:18:47.329636+0000 mon.smithi050 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: audit 2024-09-21T17:18:47.329920+0000 mon.smithi050 (mon.0) 28 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: audit 2024-09-21T17:18:47.329920+0000 mon.smithi050 (mon.0) 28 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: audit 2024-09-21T17:18:47.334341+0000 mon.smithi050 (mon.0) 29 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: audit 2024-09-21T17:18:47.334341+0000 mon.smithi050 (mon.0) 29 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: audit 2024-09-21T17:18:47.336242+0000 mon.smithi050 (mon.0) 30 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: audit 2024-09-21T17:18:47.336242+0000 mon.smithi050 (mon.0) 30 : audit [INF] from='mgr.14100 172.21.15.50:0/979200164' entity='mgr.smithi050.baqqjh' 2024-09-21T17:18:48.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: cluster 2024-09-21T17:18:48.293764+0000 mon.smithi050 (mon.0) 31 : cluster [DBG] mgrmap e3: smithi050.baqqjh(active, since 1.01599s) 2024-09-21T17:18:48.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:48 smithi050 bash[19920]: cluster 2024-09-21T17:18:48.293764+0000 mon.smithi050 (mon.0) 31 : cluster [DBG] mgrmap e3: smithi050.baqqjh(active, since 1.01599s) 2024-09-21T17:18:49.555 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "58e4c4c0-783d-11ef-baf6-efdc52797490", 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-09-21T17:18:49.556 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "smithi050" 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 10, 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-21T17:18:49.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-21T17:18:49.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-21T17:18:49.560 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:49.560 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-21T17:18:49.560 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-21T17:18:49.560 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "btime": "2024-09-21T17:18:32:320237+0000", 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-21T17:18:49.561 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-09-21T17:18:32.321159+0000", 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-09-21T17:18:49.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-21T17:18:49.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-21T17:18:49.563 INFO:teuthology.orchestra.run.smithi050.stdout:mgr is available 2024-09-21T17:18:49.642 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:49 smithi050 bash[19920]: audit 2024-09-21T17:18:49.030500+0000 mon.smithi050 (mon.0) 32 : audit [DBG] from='client.? 172.21.15.50:0/2017849570' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T17:18:49.642 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:49 smithi050 bash[19920]: audit 2024-09-21T17:18:49.030500+0000 mon.smithi050 (mon.0) 32 : audit [DBG] from='client.? 172.21.15.50:0/2017849570' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T17:18:50.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:50 smithi050 bash[19920]: cluster 2024-09-21T17:18:49.342631+0000 mon.smithi050 (mon.0) 33 : cluster [DBG] mgrmap e4: smithi050.baqqjh(active, since 2s) 2024-09-21T17:18:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:50 smithi050 bash[19920]: cluster 2024-09-21T17:18:49.342631+0000 mon.smithi050 (mon.0) 33 : cluster [DBG] mgrmap e4: smithi050.baqqjh(active, since 2s) 2024-09-21T17:18:51.511 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:51.511 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [global] 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout fsid = 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.50:3300,v1:172.21.15.50:6789] 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [osd] 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-21T17:18:51.512 INFO:teuthology.orchestra.run.smithi050.stdout:Enabling cephadm module... 2024-09-21T17:18:51.600 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:51 smithi050 bash[19920]: audit 2024-09-21T17:18:50.990079+0000 mon.smithi050 (mon.0) 34 : audit [INF] from='client.? 172.21.15.50:0/3334816095' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-21T17:18:51.600 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:51 smithi050 bash[19920]: audit 2024-09-21T17:18:50.990079+0000 mon.smithi050 (mon.0) 34 : audit [INF] from='client.? 172.21.15.50:0/3334816095' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-21T17:18:53.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:53 smithi050 bash[19920]: audit 2024-09-21T17:18:53.112380+0000 mon.smithi050 (mon.0) 35 : audit [INF] from='client.? 172.21.15.50:0/1084838267' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-21T17:18:53.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:53 smithi050 bash[19920]: audit 2024-09-21T17:18:53.112380+0000 mon.smithi050 (mon.0) 35 : audit [INF] from='client.? 172.21.15.50:0/1084838267' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-21T17:18:54.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:54 smithi050 bash[19920]: audit 2024-09-21T17:18:53.164293+0000 mon.smithi050 (mon.0) 36 : audit [INF] from='client.? 172.21.15.50:0/1084838267' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-21T17:18:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:54 smithi050 bash[19920]: audit 2024-09-21T17:18:53.164293+0000 mon.smithi050 (mon.0) 36 : audit [INF] from='client.? 172.21.15.50:0/1084838267' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-21T17:18:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:54 smithi050 bash[19920]: cluster 2024-09-21T17:18:53.169333+0000 mon.smithi050 (mon.0) 37 : cluster [DBG] mgrmap e5: smithi050.baqqjh(active, since 5s) 2024-09-21T17:18:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:54 smithi050 bash[19920]: cluster 2024-09-21T17:18:53.169333+0000 mon.smithi050 (mon.0) 37 : cluster [DBG] mgrmap e5: smithi050.baqqjh(active, since 5s) 2024-09-21T17:18:55.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:55 smithi050 bash[19920]: audit 2024-09-21T17:18:55.198501+0000 mon.smithi050 (mon.0) 38 : audit [DBG] from='client.? 172.21.15.50:0/3117737761' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-21T17:18:55.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:55 smithi050 bash[19920]: audit 2024-09-21T17:18:55.198501+0000 mon.smithi050 (mon.0) 38 : audit [DBG] from='client.? 172.21.15.50:0/3117737761' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-21T17:18:55.724 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-21T17:18:55.724 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-21T17:18:55.725 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-21T17:18:55.725 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "active_name": "smithi050.baqqjh", 2024-09-21T17:18:55.725 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-21T17:18:55.725 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-21T17:18:55.725 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for the mgr to restart... 2024-09-21T17:18:55.725 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr epoch 5... 2024-09-21T17:18:59.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.505751+0000 mon.smithi050 (mon.0) 39 : cluster [INF] Active manager daemon smithi050.baqqjh restarted 2024-09-21T17:18:59.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.505751+0000 mon.smithi050 (mon.0) 39 : cluster [INF] Active manager daemon smithi050.baqqjh restarted 2024-09-21T17:18:59.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.506210+0000 mon.smithi050 (mon.0) 40 : cluster [INF] Activating manager daemon smithi050.baqqjh 2024-09-21T17:18:59.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.506210+0000 mon.smithi050 (mon.0) 40 : cluster [INF] Activating manager daemon smithi050.baqqjh 2024-09-21T17:18:59.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.513493+0000 mon.smithi050 (mon.0) 41 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-21T17:18:59.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.513493+0000 mon.smithi050 (mon.0) 41 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.513781+0000 mon.smithi050 (mon.0) 42 : cluster [DBG] mgrmap e6: smithi050.baqqjh(active, starting, since 0.00776202s) 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.513781+0000 mon.smithi050 (mon.0) 42 : cluster [DBG] mgrmap e6: smithi050.baqqjh(active, starting, since 0.00776202s) 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.514807+0000 mon.smithi050 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.514807+0000 mon.smithi050 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.516497+0000 mon.smithi050 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi050.baqqjh", "id": "smithi050.baqqjh"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.516497+0000 mon.smithi050 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi050.baqqjh", "id": "smithi050.baqqjh"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.517665+0000 mon.smithi050 (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.517665+0000 mon.smithi050 (mon.0) 45 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.518133+0000 mon.smithi050 (mon.0) 46 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.518133+0000 mon.smithi050 (mon.0) 46 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.518541+0000 mon.smithi050 (mon.0) 47 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: audit 2024-09-21T17:18:59.518541+0000 mon.smithi050 (mon.0) 47 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.546096+0000 mon.smithi050 (mon.0) 48 : cluster [INF] Manager daemon smithi050.baqqjh is now available 2024-09-21T17:18:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:18:59 smithi050 bash[19920]: cluster 2024-09-21T17:18:59.546096+0000 mon.smithi050 (mon.0) 48 : cluster [INF] Manager daemon smithi050.baqqjh is now available 2024-09-21T17:19:01.072 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-21T17:19:01.072 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-21T17:19:01.072 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-21T17:19:01.072 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-21T17:19:01.072 INFO:teuthology.orchestra.run.smithi050.stdout:mgr epoch 5 is available 2024-09-21T17:19:01.072 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying orchestrator module is enabled... 2024-09-21T17:19:01.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.417792+0000 mon.smithi050 (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:01.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.417792+0000 mon.smithi050 (mon.0) 49 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:01.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.422964+0000 mon.smithi050 (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:01.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.422964+0000 mon.smithi050 (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:01.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: cephadm 2024-09-21T17:19:00.423661+0000 mgr.smithi050.baqqjh (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-21T17:19:01.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: cephadm 2024-09-21T17:19:00.423661+0000 mgr.smithi050.baqqjh (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-21T17:19:01.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.427477+0000 mon.smithi050 (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:01.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.427477+0000 mon.smithi050 (mon.0) 51 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.433288+0000 mon.smithi050 (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.433288+0000 mon.smithi050 (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.436588+0000 mon.smithi050 (mon.0) 53 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.436588+0000 mon.smithi050 (mon.0) 53 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.439840+0000 mon.smithi050 (mon.0) 54 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.439840+0000 mon.smithi050 (mon.0) 54 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.449770+0000 mon.smithi050 (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.449770+0000 mon.smithi050 (mon.0) 55 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.453695+0000 mon.smithi050 (mon.0) 56 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.453695+0000 mon.smithi050 (mon.0) 56 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.514908+0000 mgr.smithi050.baqqjh (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.514908+0000 mgr.smithi050.baqqjh (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-21T17:19:01.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: cluster 2024-09-21T17:19:00.517227+0000 mon.smithi050 (mon.0) 57 : cluster [DBG] mgrmap e7: smithi050.baqqjh(active, since 1.01121s) 2024-09-21T17:19:01.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: cluster 2024-09-21T17:19:00.517227+0000 mon.smithi050 (mon.0) 57 : cluster [DBG] mgrmap e7: smithi050.baqqjh(active, since 1.01121s) 2024-09-21T17:19:01.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.529130+0000 mgr.smithi050.baqqjh (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-21T17:19:01.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:01 smithi050 bash[19920]: audit 2024-09-21T17:19:00.529130+0000 mgr.smithi050.baqqjh (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-21T17:19:03.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cluster 2024-09-21T17:19:02.423635+0000 mon.smithi050 (mon.0) 58 : cluster [DBG] mgrmap e8: smithi050.baqqjh(active, since 2s) 2024-09-21T17:19:03.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cluster 2024-09-21T17:19:02.423635+0000 mon.smithi050 (mon.0) 58 : cluster [DBG] mgrmap e8: smithi050.baqqjh(active, since 2s) 2024-09-21T17:19:03.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: audit 2024-09-21T17:19:02.493014+0000 mon.smithi050 (mon.0) 59 : audit [INF] from='client.? 172.21.15.50:0/3797858961' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: audit 2024-09-21T17:19:02.493014+0000 mon.smithi050 (mon.0) 59 : audit [INF] from='client.? 172.21.15.50:0/3797858961' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:02.981107+0000 mgr.smithi050.baqqjh (mgr.14118) 4 : cephadm [INF] [21/Sep/2024:17:19:02] ENGINE Bus STARTING 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:02.981107+0000 mgr.smithi050.baqqjh (mgr.14118) 4 : cephadm [INF] [21/Sep/2024:17:19:02] ENGINE Bus STARTING 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:03.105801+0000 mgr.smithi050.baqqjh (mgr.14118) 5 : cephadm [INF] [21/Sep/2024:17:19:03] ENGINE Serving on https://172.21.15.50:7150 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:03.105801+0000 mgr.smithi050.baqqjh (mgr.14118) 5 : cephadm [INF] [21/Sep/2024:17:19:03] ENGINE Serving on https://172.21.15.50:7150 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:03.109726+0000 mgr.smithi050.baqqjh (mgr.14118) 6 : cephadm [ERR] [21/Sep/2024:17:19:03] ENGINE Error in HTTPServer.serve 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: Traceback (most recent call last): 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: self._connections.run(self.expiration_interval) 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: self._run(expiration_interval) 2024-09-21T17:19:03.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T17:19:03.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T17:19:03.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T17:19:03.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T17:19:03.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: s = self.context.wrap_socket( 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: return self.sslsocket_class._create( 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: self.do_handshake() 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: self._sslobj.do_handshake() 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:03.109726+0000 mgr.smithi050.baqqjh (mgr.14118) 6 : cephadm [ERR] [21/Sep/2024:17:19:03] ENGINE Error in HTTPServer.serve 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: Traceback (most recent call last): 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: self._connections.run(self.expiration_interval) 2024-09-21T17:19:03.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: self._run(expiration_interval) 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: s = self.context.wrap_socket( 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: return self.sslsocket_class._create( 2024-09-21T17:19:03.739 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: self.do_handshake() 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: self._sslobj.do_handshake() 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:03.206803+0000 mgr.smithi050.baqqjh (mgr.14118) 7 : cephadm [INF] [21/Sep/2024:17:19:03] ENGINE Serving on http://172.21.15.50:8765 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:03.206803+0000 mgr.smithi050.baqqjh (mgr.14118) 7 : cephadm [INF] [21/Sep/2024:17:19:03] ENGINE Serving on http://172.21.15.50:8765 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:03.206910+0000 mgr.smithi050.baqqjh (mgr.14118) 8 : cephadm [INF] [21/Sep/2024:17:19:03] ENGINE Bus STARTED 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: cephadm 2024-09-21T17:19:03.206910+0000 mgr.smithi050.baqqjh (mgr.14118) 8 : cephadm [INF] [21/Sep/2024:17:19:03] ENGINE Bus STARTED 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: audit 2024-09-21T17:19:03.207853+0000 mon.smithi050 (mon.0) 60 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:03.740 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:03 smithi050 bash[19920]: audit 2024-09-21T17:19:03.207853+0000 mon.smithi050 (mon.0) 60 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-21T17:19:03.970 INFO:teuthology.orchestra.run.smithi050.stdout:Setting orchestrator backend to cephadm... 2024-09-21T17:19:04.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:04 smithi050 bash[19920]: audit 2024-09-21T17:19:03.418975+0000 mon.smithi050 (mon.0) 61 : audit [INF] from='client.? 172.21.15.50:0/3797858961' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-21T17:19:04.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:04 smithi050 bash[19920]: audit 2024-09-21T17:19:03.418975+0000 mon.smithi050 (mon.0) 61 : audit [INF] from='client.? 172.21.15.50:0/3797858961' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-21T17:19:04.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:04 smithi050 bash[19920]: cluster 2024-09-21T17:19:03.425645+0000 mon.smithi050 (mon.0) 62 : cluster [DBG] mgrmap e9: smithi050.baqqjh(active, since 3s) 2024-09-21T17:19:04.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:04 smithi050 bash[19920]: cluster 2024-09-21T17:19:03.425645+0000 mon.smithi050 (mon.0) 62 : cluster [DBG] mgrmap e9: smithi050.baqqjh(active, since 3s) 2024-09-21T17:19:06.645 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:06 smithi050 bash[19920]: audit 2024-09-21T17:19:05.309948+0000 mgr.smithi050.baqqjh (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-21T17:19:06.646 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:06 smithi050 bash[19920]: audit 2024-09-21T17:19:05.309948+0000 mgr.smithi050.baqqjh (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-21T17:19:06.646 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:06 smithi050 bash[19920]: audit 2024-09-21T17:19:05.316650+0000 mon.smithi050 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:06.646 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:06 smithi050 bash[19920]: audit 2024-09-21T17:19:05.316650+0000 mon.smithi050 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:06.646 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:06 smithi050 bash[19920]: audit 2024-09-21T17:19:05.334119+0000 mon.smithi050 (mon.0) 64 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:06.646 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:06 smithi050 bash[19920]: audit 2024-09-21T17:19:05.334119+0000 mon.smithi050 (mon.0) 64 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:07.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:07 smithi050 bash[19920]: audit 2024-09-21T17:19:07.218860+0000 mgr.smithi050.baqqjh (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:07.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:07 smithi050 bash[19920]: audit 2024-09-21T17:19:07.218860+0000 mgr.smithi050.baqqjh (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:07.717 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-21T17:19:07.717 INFO:teuthology.orchestra.run.smithi050.stdout:Generating ssh key... 2024-09-21T17:19:09.642 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:09 smithi050 bash[19920]: audit 2024-09-21T17:19:09.047762+0000 mgr.smithi050.baqqjh (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:09.642 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:09 smithi050 bash[19920]: audit 2024-09-21T17:19:09.047762+0000 mgr.smithi050.baqqjh (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:09.642 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:09 smithi050 bash[19920]: cephadm 2024-09-21T17:19:09.048033+0000 mgr.smithi050.baqqjh (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-21T17:19:09.642 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:09 smithi050 bash[19920]: cephadm 2024-09-21T17:19:09.048033+0000 mgr.smithi050.baqqjh (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-21T17:19:10.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:10 smithi050 bash[19920]: audit 2024-09-21T17:19:09.398780+0000 mon.smithi050 (mon.0) 65 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:10.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:10 smithi050 bash[19920]: audit 2024-09-21T17:19:09.398780+0000 mon.smithi050 (mon.0) 65 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:10.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:10 smithi050 bash[19920]: audit 2024-09-21T17:19:09.403061+0000 mon.smithi050 (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:10.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:10 smithi050 bash[19920]: audit 2024-09-21T17:19:09.403061+0000 mon.smithi050 (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:11.932 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC0eyECIHviJ/mSXiqrMBcCH5UhJedvJWI+Xd4vBfvT5QimpktmhwyIGDEq6iTjvtc3VyPmeFbHtdz85WysWT/JhMqsJQpxRXH3FjU3+BpFRJ7FnO4RScnt42btXbrHR220b0MYjnUBMdt0P05uNnV4u21rXVDCOIf3HXem8e+kaFEvBg6A62uYth3hpjU6B0yCngEE/4fWfcIUxQPN6/buAMaXZD3B19d9QET6noKuPgNkwrBsbwTPr+CpjdqnLCGdLNTdfls06Q4qKzCGtJebpfUYUPHOKHymEv5jCfPtOhWzBNIw8o6IQ29pOksu1WTmUCW0gVo263Lwehi9bUAtJR0RD49LU7WGSy4qZ9bRxIv9PEMJZc0idsJaCYFltObkI8nPV+TFHp/5jYt0j/7iBDpXTiYHuAQxfWOcp2BR3S5uHiZCxnWDOYHGWLBMbWxRL+zyBVxj+yxLJF/JgExLdCOE52GoOuWXxARMxPz/b9s3/RIvPiSADpVu+sQ1OPM= ceph-58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:19:11.932 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-21T17:19:11.932 INFO:teuthology.orchestra.run.smithi050.stdout:Adding key to root@localhost authorized_keys... 2024-09-21T17:19:11.932 INFO:teuthology.orchestra.run.smithi050.stdout:Adding host smithi050... 2024-09-21T17:19:12.726 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:12 smithi050 bash[19920]: audit 2024-09-21T17:19:11.381435+0000 mgr.smithi050.baqqjh (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:12.727 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:12 smithi050 bash[19920]: audit 2024-09-21T17:19:11.381435+0000 mgr.smithi050.baqqjh (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:14.429 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:14 smithi050 bash[19920]: audit 2024-09-21T17:19:13.278678+0000 mgr.smithi050.baqqjh (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi050", "addr": "172.21.15.50", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:14.429 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:14 smithi050 bash[19920]: audit 2024-09-21T17:19:13.278678+0000 mgr.smithi050.baqqjh (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi050", "addr": "172.21.15.50", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:15.434 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:15 smithi050 bash[19920]: cephadm 2024-09-21T17:19:14.580549+0000 mgr.smithi050.baqqjh (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi050 2024-09-21T17:19:15.434 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:15 smithi050 bash[19920]: cephadm 2024-09-21T17:19:14.580549+0000 mgr.smithi050.baqqjh (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi050 2024-09-21T17:19:18.922 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Added host 'smithi050' with addr '172.21.15.50' 2024-09-21T17:19:18.922 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying mon service with default placement... 2024-09-21T17:19:19.348 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:19 smithi050 bash[19920]: audit 2024-09-21T17:19:18.220733+0000 mon.smithi050 (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:19.349 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:19 smithi050 bash[19920]: audit 2024-09-21T17:19:18.220733+0000 mon.smithi050 (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:19.349 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:19 smithi050 bash[19920]: cephadm 2024-09-21T17:19:18.221246+0000 mgr.smithi050.baqqjh (mgr.14118) 16 : cephadm [INF] Added host smithi050 2024-09-21T17:19:19.349 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:19 smithi050 bash[19920]: cephadm 2024-09-21T17:19:18.221246+0000 mgr.smithi050.baqqjh (mgr.14118) 16 : cephadm [INF] Added host smithi050 2024-09-21T17:19:19.349 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:19 smithi050 bash[19920]: audit 2024-09-21T17:19:18.221617+0000 mon.smithi050 (mon.0) 68 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:19.349 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:19 smithi050 bash[19920]: audit 2024-09-21T17:19:18.221617+0000 mon.smithi050 (mon.0) 68 : audit [DBG] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:20.773 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:20 smithi050 bash[19920]: cluster 2024-09-21T17:19:19.519352+0000 mgr.smithi050.baqqjh (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:20.773 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:20 smithi050 bash[19920]: cluster 2024-09-21T17:19:19.519352+0000 mgr.smithi050.baqqjh (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:21.828 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-21T17:19:21.828 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying mgr service with default placement... 2024-09-21T17:19:22.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:22 smithi050 bash[19920]: audit 2024-09-21T17:19:21.117782+0000 mgr.smithi050.baqqjh (mgr.14118) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:22.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:22 smithi050 bash[19920]: audit 2024-09-21T17:19:21.117782+0000 mgr.smithi050.baqqjh (mgr.14118) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:22.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:22 smithi050 bash[19920]: cephadm 2024-09-21T17:19:21.119019+0000 mgr.smithi050.baqqjh (mgr.14118) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-21T17:19:22.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:22 smithi050 bash[19920]: cephadm 2024-09-21T17:19:21.119019+0000 mgr.smithi050.baqqjh (mgr.14118) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-21T17:19:22.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:22 smithi050 bash[19920]: audit 2024-09-21T17:19:21.123349+0000 mon.smithi050 (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:22.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:22 smithi050 bash[19920]: audit 2024-09-21T17:19:21.123349+0000 mon.smithi050 (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:22.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:22 smithi050 bash[19920]: audit 2024-09-21T17:19:21.597436+0000 mon.smithi050 (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:22.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:22 smithi050 bash[19920]: audit 2024-09-21T17:19:21.597436+0000 mon.smithi050 (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:23.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:23 smithi050 bash[19920]: cluster 2024-09-21T17:19:21.519925+0000 mgr.smithi050.baqqjh (mgr.14118) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:23.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:23 smithi050 bash[19920]: cluster 2024-09-21T17:19:21.519925+0000 mgr.smithi050.baqqjh (mgr.14118) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:23.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:23 smithi050 bash[19920]: audit 2024-09-21T17:19:22.181234+0000 mon.smithi050 (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:23.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:23 smithi050 bash[19920]: audit 2024-09-21T17:19:22.181234+0000 mon.smithi050 (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:23.910 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-21T17:19:23.910 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying crash service with default placement... 2024-09-21T17:19:24.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:24 smithi050 bash[19920]: audit 2024-09-21T17:19:23.328913+0000 mgr.smithi050.baqqjh (mgr.14118) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:24.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:24 smithi050 bash[19920]: audit 2024-09-21T17:19:23.328913+0000 mgr.smithi050.baqqjh (mgr.14118) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:24.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:24 smithi050 bash[19920]: cephadm 2024-09-21T17:19:23.331001+0000 mgr.smithi050.baqqjh (mgr.14118) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-21T17:19:24.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:24 smithi050 bash[19920]: cephadm 2024-09-21T17:19:23.331001+0000 mgr.smithi050.baqqjh (mgr.14118) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-21T17:19:24.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:24 smithi050 bash[19920]: audit 2024-09-21T17:19:23.335582+0000 mon.smithi050 (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:24.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:24 smithi050 bash[19920]: audit 2024-09-21T17:19:23.335582+0000 mon.smithi050 (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:24.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:24 smithi050 bash[19920]: cluster 2024-09-21T17:19:23.520373+0000 mgr.smithi050.baqqjh (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:24.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:24 smithi050 bash[19920]: cluster 2024-09-21T17:19:23.520373+0000 mgr.smithi050.baqqjh (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:25.909 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-21T17:19:25.909 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying ceph-exporter service with default placement... 2024-09-21T17:19:26.675 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:26 smithi050 bash[19920]: audit 2024-09-21T17:19:25.362129+0000 mgr.smithi050.baqqjh (mgr.14118) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:26.675 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:26 smithi050 bash[19920]: audit 2024-09-21T17:19:25.362129+0000 mgr.smithi050.baqqjh (mgr.14118) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:26.675 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:26 smithi050 bash[19920]: cephadm 2024-09-21T17:19:25.364187+0000 mgr.smithi050.baqqjh (mgr.14118) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-21T17:19:26.675 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:26 smithi050 bash[19920]: cephadm 2024-09-21T17:19:25.364187+0000 mgr.smithi050.baqqjh (mgr.14118) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-21T17:19:26.675 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:26 smithi050 bash[19920]: audit 2024-09-21T17:19:25.367788+0000 mon.smithi050 (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:26.675 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:26 smithi050 bash[19920]: audit 2024-09-21T17:19:25.367788+0000 mon.smithi050 (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:26.675 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:26 smithi050 bash[19920]: cluster 2024-09-21T17:19:25.520712+0000 mgr.smithi050.baqqjh (mgr.14118) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:26.676 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:26 smithi050 bash[19920]: cluster 2024-09-21T17:19:25.520712+0000 mgr.smithi050.baqqjh (mgr.14118) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:27.784 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-21T17:19:27.784 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying prometheus service with default placement... 2024-09-21T17:19:28.624 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:28 smithi050 bash[19920]: audit 2024-09-21T17:19:27.245492+0000 mgr.smithi050.baqqjh (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-21T17:19:28.624 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:28 smithi050 bash[19920]: audit 2024-09-21T17:19:27.245492+0000 mgr.smithi050.baqqjh (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-21T17:19:28.624 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:28 smithi050 bash[19920]: cephadm 2024-09-21T17:19:27.246735+0000 mgr.smithi050.baqqjh (mgr.14118) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-21T17:19:28.624 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:28 smithi050 bash[19920]: cephadm 2024-09-21T17:19:27.246735+0000 mgr.smithi050.baqqjh (mgr.14118) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-21T17:19:28.624 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:28 smithi050 bash[19920]: audit 2024-09-21T17:19:27.251080+0000 mon.smithi050 (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:28.624 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:28 smithi050 bash[19920]: audit 2024-09-21T17:19:27.251080+0000 mon.smithi050 (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:28.624 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:28 smithi050 bash[19920]: cluster 2024-09-21T17:19:27.521134+0000 mgr.smithi050.baqqjh (mgr.14118) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:28.624 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:28 smithi050 bash[19920]: cluster 2024-09-21T17:19:27.521134+0000 mgr.smithi050.baqqjh (mgr.14118) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:29.757 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-21T17:19:29.757 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying grafana service with default placement... 2024-09-21T17:19:30.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:30 smithi050 bash[19920]: audit 2024-09-21T17:19:29.212047+0000 mgr.smithi050.baqqjh (mgr.14118) 30 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:30.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:30 smithi050 bash[19920]: audit 2024-09-21T17:19:29.212047+0000 mgr.smithi050.baqqjh (mgr.14118) 30 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:30.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:30 smithi050 bash[19920]: cephadm 2024-09-21T17:19:29.214137+0000 mgr.smithi050.baqqjh (mgr.14118) 31 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-21T17:19:30.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:30 smithi050 bash[19920]: cephadm 2024-09-21T17:19:29.214137+0000 mgr.smithi050.baqqjh (mgr.14118) 31 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-21T17:19:30.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:30 smithi050 bash[19920]: audit 2024-09-21T17:19:29.217863+0000 mon.smithi050 (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:30.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:30 smithi050 bash[19920]: audit 2024-09-21T17:19:29.217863+0000 mon.smithi050 (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:31.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:31 smithi050 bash[19920]: cluster 2024-09-21T17:19:29.521537+0000 mgr.smithi050.baqqjh (mgr.14118) 32 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:31.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:31 smithi050 bash[19920]: cluster 2024-09-21T17:19:29.521537+0000 mgr.smithi050.baqqjh (mgr.14118) 32 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:31.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:31 smithi050 bash[19920]: audit 2024-09-21T17:19:30.419161+0000 mon.smithi050 (mon.0) 76 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:31.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:31 smithi050 bash[19920]: audit 2024-09-21T17:19:30.419161+0000 mon.smithi050 (mon.0) 76 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:31.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:31 smithi050 bash[19920]: audit 2024-09-21T17:19:31.171827+0000 mon.smithi050 (mon.0) 77 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:31.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:31 smithi050 bash[19920]: audit 2024-09-21T17:19:31.171827+0000 mon.smithi050 (mon.0) 77 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:31.796 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-21T17:19:31.796 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying node-exporter service with default placement... 2024-09-21T17:19:32.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:32 smithi050 bash[19920]: audit 2024-09-21T17:19:31.165444+0000 mgr.smithi050.baqqjh (mgr.14118) 33 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:32.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:32 smithi050 bash[19920]: audit 2024-09-21T17:19:31.165444+0000 mgr.smithi050.baqqjh (mgr.14118) 33 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:32.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:32 smithi050 bash[19920]: cephadm 2024-09-21T17:19:31.168247+0000 mgr.smithi050.baqqjh (mgr.14118) 34 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-21T17:19:32.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:32 smithi050 bash[19920]: cephadm 2024-09-21T17:19:31.168247+0000 mgr.smithi050.baqqjh (mgr.14118) 34 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-21T17:19:32.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:32 smithi050 bash[19920]: audit 2024-09-21T17:19:31.584748+0000 mon.smithi050 (mon.0) 78 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:32.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:32 smithi050 bash[19920]: audit 2024-09-21T17:19:31.584748+0000 mon.smithi050 (mon.0) 78 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:33.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:33 smithi050 bash[19920]: cluster 2024-09-21T17:19:31.521822+0000 mgr.smithi050.baqqjh (mgr.14118) 35 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:33.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:33 smithi050 bash[19920]: cluster 2024-09-21T17:19:31.521822+0000 mgr.smithi050.baqqjh (mgr.14118) 35 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:33.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:33 smithi050 bash[19920]: audit 2024-09-21T17:19:33.197123+0000 mon.smithi050 (mon.0) 79 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:33.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:33 smithi050 bash[19920]: audit 2024-09-21T17:19:33.197123+0000 mon.smithi050 (mon.0) 79 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:33.724 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-21T17:19:33.724 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying alertmanager service with default placement... 2024-09-21T17:19:34.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:34 smithi050 bash[19920]: audit 2024-09-21T17:19:33.191078+0000 mgr.smithi050.baqqjh (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-21T17:19:34.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:34 smithi050 bash[19920]: audit 2024-09-21T17:19:33.191078+0000 mgr.smithi050.baqqjh (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-21T17:19:34.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:34 smithi050 bash[19920]: cephadm 2024-09-21T17:19:33.193309+0000 mgr.smithi050.baqqjh (mgr.14118) 37 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-21T17:19:34.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:34 smithi050 bash[19920]: cephadm 2024-09-21T17:19:33.193309+0000 mgr.smithi050.baqqjh (mgr.14118) 37 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-21T17:19:35.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:35 smithi050 bash[19920]: cluster 2024-09-21T17:19:33.522178+0000 mgr.smithi050.baqqjh (mgr.14118) 38 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:35.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:35 smithi050 bash[19920]: cluster 2024-09-21T17:19:33.522178+0000 mgr.smithi050.baqqjh (mgr.14118) 38 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:35.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:35 smithi050 bash[19920]: audit 2024-09-21T17:19:35.130870+0000 mgr.smithi050.baqqjh (mgr.14118) 39 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:35.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:35 smithi050 bash[19920]: audit 2024-09-21T17:19:35.130870+0000 mgr.smithi050.baqqjh (mgr.14118) 39 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:35.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:35 smithi050 bash[19920]: cephadm 2024-09-21T17:19:35.133053+0000 mgr.smithi050.baqqjh (mgr.14118) 40 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-21T17:19:35.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:35 smithi050 bash[19920]: cephadm 2024-09-21T17:19:35.133053+0000 mgr.smithi050.baqqjh (mgr.14118) 40 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-21T17:19:35.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:35 smithi050 bash[19920]: audit 2024-09-21T17:19:35.137808+0000 mon.smithi050 (mon.0) 80 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:35.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:35 smithi050 bash[19920]: audit 2024-09-21T17:19:35.137808+0000 mon.smithi050 (mon.0) 80 : audit [INF] from='mgr.14118 172.21.15.50:0/619159890' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:35.698 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-21T17:19:36.539 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:36 smithi050 bash[19920]: cluster 2024-09-21T17:19:35.522557+0000 mgr.smithi050.baqqjh (mgr.14118) 41 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:36.539 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:36 smithi050 bash[19920]: cluster 2024-09-21T17:19:35.522557+0000 mgr.smithi050.baqqjh (mgr.14118) 41 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:38.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:38 smithi050 bash[19920]: audit 2024-09-21T17:19:37.104045+0000 mon.smithi050 (mon.0) 81 : audit [INF] from='client.? 172.21.15.50:0/2771503196' entity='client.admin' 2024-09-21T17:19:38.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:38 smithi050 bash[19920]: audit 2024-09-21T17:19:37.104045+0000 mon.smithi050 (mon.0) 81 : audit [INF] from='client.? 172.21.15.50:0/2771503196' entity='client.admin' 2024-09-21T17:19:39.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:39 smithi050 bash[19920]: cluster 2024-09-21T17:19:37.522992+0000 mgr.smithi050.baqqjh (mgr.14118) 42 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:39.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:39 smithi050 bash[19920]: cluster 2024-09-21T17:19:37.522992+0000 mgr.smithi050.baqqjh (mgr.14118) 42 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:40.412 INFO:teuthology.orchestra.run.smithi050.stdout:Enabling the dashboard module... 2024-09-21T17:19:41.207 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:40 smithi050 bash[19920]: cluster 2024-09-21T17:19:39.523364+0000 mgr.smithi050.baqqjh (mgr.14118) 43 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:41.208 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:40 smithi050 bash[19920]: cluster 2024-09-21T17:19:39.523364+0000 mgr.smithi050.baqqjh (mgr.14118) 43 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:41.208 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:40 smithi050 bash[19920]: audit 2024-09-21T17:19:39.792063+0000 mon.smithi050 (mon.0) 82 : audit [INF] from='client.? 172.21.15.50:0/3189859413' entity='client.admin' 2024-09-21T17:19:41.208 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:40 smithi050 bash[19920]: audit 2024-09-21T17:19:39.792063+0000 mon.smithi050 (mon.0) 82 : audit [INF] from='client.? 172.21.15.50:0/3189859413' entity='client.admin' 2024-09-21T17:19:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:42 smithi050 bash[19920]: cluster 2024-09-21T17:19:41.523798+0000 mgr.smithi050.baqqjh (mgr.14118) 44 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:42 smithi050 bash[19920]: cluster 2024-09-21T17:19:41.523798+0000 mgr.smithi050.baqqjh (mgr.14118) 44 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:19:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:42 smithi050 bash[19920]: audit 2024-09-21T17:19:41.880492+0000 mon.smithi050 (mon.0) 83 : audit [INF] from='client.? 172.21.15.50:0/2896912335' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-21T17:19:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:42 smithi050 bash[19920]: audit 2024-09-21T17:19:41.880492+0000 mon.smithi050 (mon.0) 83 : audit [INF] from='client.? 172.21.15.50:0/2896912335' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-21T17:19:44.146 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:43 smithi050 bash[19920]: audit 2024-09-21T17:19:42.799966+0000 mon.smithi050 (mon.0) 84 : audit [INF] from='client.? 172.21.15.50:0/2896912335' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-21T17:19:44.146 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:43 smithi050 bash[19920]: audit 2024-09-21T17:19:42.799966+0000 mon.smithi050 (mon.0) 84 : audit [INF] from='client.? 172.21.15.50:0/2896912335' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-21T17:19:44.146 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:43 smithi050 bash[19920]: cluster 2024-09-21T17:19:42.805822+0000 mon.smithi050 (mon.0) 85 : cluster [DBG] mgrmap e10: smithi050.baqqjh(active, since 43s) 2024-09-21T17:19:44.146 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:43 smithi050 bash[19920]: cluster 2024-09-21T17:19:42.805822+0000 mon.smithi050 (mon.0) 85 : cluster [DBG] mgrmap e10: smithi050.baqqjh(active, since 43s) 2024-09-21T17:19:45.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:44 smithi050 bash[19920]: audit 2024-09-21T17:19:44.802062+0000 mon.smithi050 (mon.0) 86 : audit [DBG] from='client.? 172.21.15.50:0/3932263993' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-21T17:19:45.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:44 smithi050 bash[19920]: audit 2024-09-21T17:19:44.802062+0000 mon.smithi050 (mon.0) 86 : audit [DBG] from='client.? 172.21.15.50:0/3932263993' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-21T17:19:45.344 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-21T17:19:45.344 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 10, 2024-09-21T17:19:45.344 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-21T17:19:45.344 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "active_name": "smithi050.baqqjh", 2024-09-21T17:19:45.344 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-21T17:19:45.344 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-21T17:19:45.345 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for the mgr to restart... 2024-09-21T17:19:45.345 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr epoch 10... 2024-09-21T17:19:49.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.153995+0000 mon.smithi050 (mon.0) 87 : cluster [INF] Active manager daemon smithi050.baqqjh restarted 2024-09-21T17:19:49.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.153995+0000 mon.smithi050 (mon.0) 87 : cluster [INF] Active manager daemon smithi050.baqqjh restarted 2024-09-21T17:19:49.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.154469+0000 mon.smithi050 (mon.0) 88 : cluster [INF] Activating manager daemon smithi050.baqqjh 2024-09-21T17:19:49.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.154469+0000 mon.smithi050 (mon.0) 88 : cluster [INF] Activating manager daemon smithi050.baqqjh 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.161942+0000 mon.smithi050 (mon.0) 89 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.161942+0000 mon.smithi050 (mon.0) 89 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.162214+0000 mon.smithi050 (mon.0) 90 : cluster [DBG] mgrmap e11: smithi050.baqqjh(active, starting, since 0.00795074s) 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.162214+0000 mon.smithi050 (mon.0) 90 : cluster [DBG] mgrmap e11: smithi050.baqqjh(active, starting, since 0.00795074s) 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.164272+0000 mon.smithi050 (mon.0) 91 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.164272+0000 mon.smithi050 (mon.0) 91 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.165980+0000 mon.smithi050 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi050.baqqjh", "id": "smithi050.baqqjh"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.165980+0000 mon.smithi050 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi050.baqqjh", "id": "smithi050.baqqjh"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.167199+0000 mon.smithi050 (mon.0) 93 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.167199+0000 mon.smithi050 (mon.0) 93 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.167461+0000 mon.smithi050 (mon.0) 94 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.167461+0000 mon.smithi050 (mon.0) 94 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.167685+0000 mon.smithi050 (mon.0) 95 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:19:49.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: audit 2024-09-21T17:19:49.167685+0000 mon.smithi050 (mon.0) 95 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:19:49.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.195013+0000 mon.smithi050 (mon.0) 96 : cluster [INF] Manager daemon smithi050.baqqjh is now available 2024-09-21T17:19:49.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:49 smithi050 bash[19920]: cluster 2024-09-21T17:19:49.195013+0000 mon.smithi050 (mon.0) 96 : cluster [INF] Manager daemon smithi050.baqqjh is now available 2024-09-21T17:19:50.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:50 smithi050 bash[19920]: audit 2024-09-21T17:19:49.637301+0000 mon.smithi050 (mon.0) 97 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:50.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:50 smithi050 bash[19920]: audit 2024-09-21T17:19:49.637301+0000 mon.smithi050 (mon.0) 97 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:19:50.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:50 smithi050 bash[19920]: audit 2024-09-21T17:19:49.656816+0000 mon.smithi050 (mon.0) 98 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:19:50.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:50 smithi050 bash[19920]: audit 2024-09-21T17:19:49.656816+0000 mon.smithi050 (mon.0) 98 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:19:50.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:50 smithi050 bash[19920]: audit 2024-09-21T17:19:49.659582+0000 mon.smithi050 (mon.0) 99 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:19:50.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:50 smithi050 bash[19920]: audit 2024-09-21T17:19:49.659582+0000 mon.smithi050 (mon.0) 99 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:19:50.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:50 smithi050 bash[19920]: cluster 2024-09-21T17:19:50.163342+0000 mon.smithi050 (mon.0) 100 : cluster [DBG] mgrmap e12: smithi050.baqqjh(active, since 1.00908s) 2024-09-21T17:19:50.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:50 smithi050 bash[19920]: cluster 2024-09-21T17:19:50.163342+0000 mon.smithi050 (mon.0) 100 : cluster [DBG] mgrmap e12: smithi050.baqqjh(active, since 1.00908s) 2024-09-21T17:19:50.791 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-09-21T17:19:50.791 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 12, 2024-09-21T17:19:50.791 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-21T17:19:50.792 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-09-21T17:19:50.792 INFO:teuthology.orchestra.run.smithi050.stdout:mgr epoch 10 is available 2024-09-21T17:19:50.792 INFO:teuthology.orchestra.run.smithi050.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-21T17:19:51.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:51 smithi050 bash[19920]: audit 2024-09-21T17:19:50.164394+0000 mgr.smithi050.baqqjh (mgr.14164) 1 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-21T17:19:51.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:51 smithi050 bash[19920]: audit 2024-09-21T17:19:50.164394+0000 mgr.smithi050.baqqjh (mgr.14164) 1 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-21T17:19:51.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:51 smithi050 bash[19920]: audit 2024-09-21T17:19:50.181644+0000 mgr.smithi050.baqqjh (mgr.14164) 2 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-21T17:19:51.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:51 smithi050 bash[19920]: audit 2024-09-21T17:19:50.181644+0000 mgr.smithi050.baqqjh (mgr.14164) 2 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:50.869362+0000 mgr.smithi050.baqqjh (mgr.14164) 3 : cephadm [INF] [21/Sep/2024:17:19:50] ENGINE Bus STARTING 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:50.869362+0000 mgr.smithi050.baqqjh (mgr.14164) 3 : cephadm [INF] [21/Sep/2024:17:19:50] ENGINE Bus STARTING 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:50.971051+0000 mgr.smithi050.baqqjh (mgr.14164) 4 : cephadm [INF] [21/Sep/2024:17:19:50] ENGINE Serving on http://172.21.15.50:8765 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:50.971051+0000 mgr.smithi050.baqqjh (mgr.14164) 4 : cephadm [INF] [21/Sep/2024:17:19:50] ENGINE Serving on http://172.21.15.50:8765 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:51.096247+0000 mgr.smithi050.baqqjh (mgr.14164) 5 : cephadm [INF] [21/Sep/2024:17:19:51] ENGINE Serving on https://172.21.15.50:7150 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:51.096247+0000 mgr.smithi050.baqqjh (mgr.14164) 5 : cephadm [INF] [21/Sep/2024:17:19:51] ENGINE Serving on https://172.21.15.50:7150 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:51.096392+0000 mgr.smithi050.baqqjh (mgr.14164) 6 : cephadm [INF] [21/Sep/2024:17:19:51] ENGINE Bus STARTED 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:51.096392+0000 mgr.smithi050.baqqjh (mgr.14164) 6 : cephadm [INF] [21/Sep/2024:17:19:51] ENGINE Bus STARTED 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:51.098155+0000 mgr.smithi050.baqqjh (mgr.14164) 7 : cephadm [ERR] [21/Sep/2024:17:19:51] ENGINE Error in HTTPServer.serve 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: Traceback (most recent call last): 2024-09-21T17:19:52.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: self._connections.run(self.expiration_interval) 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: self._run(expiration_interval) 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: s = self.context.wrap_socket( 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: return self.sslsocket_class._create( 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: self.do_handshake() 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T17:19:52.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: self._sslobj.do_handshake() 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cephadm 2024-09-21T17:19:51.098155+0000 mgr.smithi050.baqqjh (mgr.14164) 7 : cephadm [ERR] [21/Sep/2024:17:19:51] ENGINE Error in HTTPServer.serve 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: Traceback (most recent call last): 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: self._connections.run(self.expiration_interval) 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: self._run(expiration_interval) 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: s = self.context.wrap_socket( 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: return self.sslsocket_class._create( 2024-09-21T17:19:52.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T17:19:52.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: self.do_handshake() 2024-09-21T17:19:52.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T17:19:52.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: self._sslobj.do_handshake() 2024-09-21T17:19:52.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T17:19:52.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cluster 2024-09-21T17:19:51.218277+0000 mon.smithi050 (mon.0) 101 : cluster [DBG] mgrmap e13: smithi050.baqqjh(active, since 2s) 2024-09-21T17:19:52.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:52 smithi050 bash[19920]: cluster 2024-09-21T17:19:51.218277+0000 mon.smithi050 (mon.0) 101 : cluster [DBG] mgrmap e13: smithi050.baqqjh(active, since 2s) 2024-09-21T17:19:53.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:53 smithi050 bash[19920]: audit 2024-09-21T17:19:52.258703+0000 mgr.smithi050.baqqjh (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-21T17:19:53.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:53 smithi050 bash[19920]: audit 2024-09-21T17:19:52.258703+0000 mgr.smithi050.baqqjh (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-21T17:19:54.641 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+zCCAuOgAwIBAgIUBz4++0lBOIa5kdaKnHu6xEI8U0cwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkyMTE3MTk1NFoXDTM0\nMDkyMjE3MTk1NFowFzEVMBMGA1UEAwwMMTcyLjIxLjE1LjUwMIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEA5y5sa/2Qyh0rVPN/MN4HG0fo+LJairbkgmUQ\nMiUQC4LUFRKa37eZ8XPkJdwEIq/xfvb27ntKUuk3rPh+vsjDxpsIx+e08KZLoIOe\nsv1YNgk6U4ugzouEvcuBvlcYNs1cMuBAiaRW2FmasBdJ4/CXOd4bTtDXfb6N2PXt\nRyyTZDV9DYgA9M5J3e8ErEG3pd9ZO0BcIbb5Bm64jrmIWc5gHCdxieVK15lfX9wl\nB35U89y7mfhg6tizAfHgJlgrQsKUV/s0G4UsjPj3NpErZDtgepMA049sW3VDY5+c\npFWmnKPrLWUPqPKZ9oF39xvDfwyb4+MqSCDBMHn0LqgjAuMIQeTtR6dKVhwLx9Dx\noCf8Hp7Qa99KlE4aE7lmB0Sncnioc2PasxGBCs9lh5DSXW0p22j6UFYeVdeKou2Y\nLtWOOWfzOcJHQ/fgASQImwNxPBSjaQM3eTT43QShbAsek7yhpq2x30b3aaRiy5Ql\nlrIgpqC9Dhc2L3YsS/MtLkaajCneP5Vmh3YQqO8l+hiJgUkUfzioSSduaCsioVGQ\nuSXW2t6D0xOT75yKkIE6RyLYKf9GrAJp+pC7GuMsPzQglBQAE39uLgmcZupVJ079\npk1xe2rRT3OwW88IijGmzCMmdRlFdZ++fbzIxWIPqLbbGQzDzFWJ9IaH07+xxNg5\nhJDT55ECAwEAAaM/MD0wLQYDVR0RBCYwJIIJc21pdGhpMDUwghFkYXNoYm9hcmRf\nc2VydmVyc4cErBUPMjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQA4\n5s2t9rCP9yL3n/NcOr3jkuLpYwZag16uaEQdBLpHSZfZy39JKhF4p+y+fldDv4Ly\nmbKGO0g2KH75JdDOcUPz1GB8Z+i43fNeP/oqcSQYZvl/lOPsJ2XBCYCQjkzxuRt8\nQt/Pd6yjpk1BI4D4gOTtHO02hocqsz2xxcoLYSQ6CQ0YJZibSSC5WaeWujIcnU7w\noDj/8yir0Luo+k57+lR4SD8Fm7yApJTOpKyy7cyMqdUILQxQvWN3pgWRLYI1v/n0\nxW7VVNJoVzmb2SmlDFNRj9YmVwCqmOQRxINx0g339+8JNTXyk6VZ/o66Vnmg2gv7\nW3EbKstfxbsdtN4I43af8jBDh4fZ5c4VD2fh1gkEjKxOzd/lFDfFmiEmXxGCZd9D\n7zEaRGWJIJ3PyKhqJlngienwbBbdi3e8lS+voFIT6T0sCA9kTys+PYiA73qH2kw+\noEUi5xfnGxv2mKb9PHVbzX3R6X4S53k08d1Cb0G1xHbGdxKRgn14F5NUULjSBCW2\nAPMUQ5ZkhMMaRahgBMJtdOQ42Ixb3PLE0P3uvT7V2GliKtxmTXDwpM+fKursXul0\nJNVus3kSKhBJNhc8vbKkAGw6Q3I6Yt22io7eWvXr1Ol6AAg9NOrjRtPSUWbGUgvy\nSubvhGUx4xb0CkNGIq4OM5DxlRwxfhR0ckO2nJ6NAg==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJJwIBAAKCAgEA5y5sa/2Qyh0rVPN/MN4HG0fo+LJairbkgmUQMiUQC4LUFRKa\n37eZ8XPkJdwEIq/xfvb27ntKUuk3rPh+vsjDxpsIx+e08KZLoIOesv1YNgk6U4ug\nzouEvcuBvlcYNs1cMuBAiaRW2FmasBdJ4/CXOd4bTtDXfb6N2PXtRyyTZDV9DYgA\n9M5J3e8ErEG3pd9ZO0BcIbb5Bm64jrmIWc5gHCdxieVK15lfX9wlB35U89y7mfhg\n6tizAfHgJlgrQsKUV/s0G4UsjPj3NpErZDtgepMA049sW3VDY5+cpFWmnKPrLWUP\nqPKZ9oF39xvDfwyb4+MqSCDBMHn0LqgjAuMIQeTtR6dKVhwLx9DxoCf8Hp7Qa99K\nlE4aE7lmB0Sncnioc2PasxGBCs9lh5DSXW0p22j6UFYeVdeKou2YLtWOOWfzOcJH\nQ/fgASQImwNxPBSjaQM3eTT43QShbAsek7yhpq2x30b3aaRiy5QllrIgpqC9Dhc2\nL3YsS/MtLkaajCneP5Vmh3YQqO8l+hiJgUkUfzioSSduaCsioVGQuSXW2t6D0xOT\n75yKkIE6RyLYKf9GrAJp+pC7GuMsPzQglBQAE39uLgmcZupVJ079pk1xe2rRT3Ow\nW88IijGmzCMmdRlFdZ++fbzIxWIPqLbbGQzDzFWJ9IaH07+xxNg5hJDT55ECAwEA\nAQKCAgAEVZu9S5gFHhZjpZwXIbaO5aKB1TA65RJ0OmpbElRSbu3EhmCGfMYDX6mh\npxYhw1w7BezbzE54rvw2/0K7F38KMHpx6w96qpeE5yrYzsSyYKpqChZmAPooZ9Ij\nLDVdQ6zsnEVBf2YMcOOkVQ9y2V4wfNBUwjgkGKhGrte3y6doy9LwJ8Ji1KJQaayU\nAThtAPrGkF6Z2DkjjHxj2qkqi+LD7F5l2Dl2wN6nqLQ+B3mWx+bxjFVe2djDWtJZ\nzbHj8st+ucxAjtbmvr091etzGeTlb2+mx8vfjBuLGOFCOIPi8HTWmUw5nfDSjRtf\nc/MOpQEgPPBcQVb17ndsT4U2huSu9HkzpyC+vLRVesX3ZfuUlfaFqvAosDlCfW+3\nubUQBJ+A0xLLanYzPBJTpsFJLRq/1KKAx6vicfcQ/kQWoFLKCVorA7yq5Q949r0G\nGGa50vZJz0a9N9zi0ewhVC6few9xj7ai7GnFIT9FIyTLqmKF8FTrm0TjnMcQF4oH\nyBFat7rHdlw4AcPXZ0IltiEHQKM5dSMWVsJwTM1imu69jbxi83wc42ZShnmT/luy\nvHJDrsKUeT+V6DE2QyW0NJWxT6SJ4YIb09ZeBg5PnM1gtQ+m+pTGvirqRhXQgoTk\nNVejcZzV7QbNRa2imd79KqJkSxvEk5yG/h7OGoGuGRHxMDdS1QKCAQEA9QC9M09G\n0XMOMtXLXRDO/EutAw+VBhrX0DrzRWfH1olERlCQf0cdlhSQFbooRvtmzfe0ITeY\ndTKfwf7PS05HNZMCvDpMFqh9qpsl9LsRSjx7PGMQfK4tqosQDQ6AinfBo+Fc6UWJ\nmAIyxjAkr4TgmGhYH1eEIININcip+GhZ5iwUyPDNjsIT1PY937l7KHbzyEjkOq2/\nO7mUzBx4CU/rqkCXkT6GMo8ZHt132eMGyPmMRv6l+XR93BtepPqmDd4Qu3FDr90U\nM/lfBRL2nHc7ooaUDJ58IyS2qPrirgtuZ7aj/91nNVCHeTgPCn0AHrdhDtCzLl3T\n+K36ghuJ+eLTJQKCAQEA8Y7daJhiy35HhzPOjZEjCmgSQeKiR/SrEohvAYhUtKjo\nrg1J16HL1SSlyzcOePX0z9wIWg5aPqmw6QRTvCpOxnbZB3iZ+WmCs4Fjd9t3KSyW\nrSQ0gk86+xgGnIRLuPoAtw/DuRCBZ87iyKj4t7jtEyRWF287KO8zbcfUPHVuZ9gL\nn15DaZqyP9Vs4+paDfk/UaIEO+quMp00qkIz/aci5lRXyfWXFUUR1LPF09E5So9T\n9R4bf91bsI8cZbWaaLW4YLcaYnUGrv8xAk0gNWh0Ibi4mgdQBQq23pS9FYIzLKEy\nbZHAb6JEyJUhpIrn6tvI5iK05CjpKNMEQWD1gR2M/QKCAQBASgJbrWjK2yMVqc4k\nTJ3TzFPI4tTa9j49MMrXIoVowTo+LTPNgi68TAcG/INHJP7z+xS0Rq9lyXPsZt2k\nSBUddMcZ9z4yD+Jx2yZZkqDV1wsLbH9OCDKJdtYuZujJ7OTOCPvlZk7VqXYDVWy6\n9eYtd+vvxXoxQeG340Deoxs778NAexelZz3m+vp/c19i3dvYaXAiCaeNl4P5D1tc\nLjGLykk7Xqm+KJiR5dFmRlFoeTsbAgUxcST5leD+75qVNvkzBmSZiCyd+si5PyGh\nKxRl8GR27ztpyV949eR3gR5mbqGYKVPExK3X3CLuQKDAbqQ0TAVInGxb6+M5MtrA\nzIlVAoIBAAzZSpGruWWVm/xnFw+UrsZ47q+ufG9TZl4f/7eXJtpNOcM4VbswkgUO\nY/tBPHXWr2T3EUKpDMfUguKCJmoV3gbUf4rUMWyA3kDqGv5fICGCi6k+CcT8reh5\nSLC+oMCAG9Wg8wo/BIMfEBUYV9J99a5U+ndYpU7yGkw2muV0YaEIbuXVP8S4Q879\nbUNaTdv8bA/NjGgbfZSXpBuCVf2iDEswJVNKyvSIrgAgZ99ye5eptA+PwGq2vY/Q\nrPQECuiS8fHDC5Y9H1Pjoxm6PIJawgKhLsCSrwD1pvCD/OLOACbZlDMb056chQge\nVqHH+boWYsNLCVAxlOVlBA7uN2Dcz4kCggEAPU7mJsdOD10ZctbLnH6nhfeyrqyz\nwAo2HCdkpt0FKQxywniW4KJyKrd7LaCm0XWWbn2RA+NaqcIjtCk0DQWADGfpXkhl\nE1WqzMst0GUZjBxs7KTumP8MIODxVus8naJ7tD0y1yvtlR91Tn3r+5pTzLkh2As0\nM1M2BlSzOU7AEkdOu+2Qsaw8+4sVrCq8hB4nGrxG1fjsSWatzWOGDKe3YRDhEvaa\nZaJYV++2oyJ01lWJl0TkAu+mfvmM6eJ3Io04iB87FB8Q8bVdsfoXer9WYw3TFV7v\nJ0n2v70oI1wkbsCwCkyeNgLy58dTQP3XN0Fbt+37Dq7RyEVYmxy2OG13UA==\n-----END RSA PRIVATE KEY-----\n"} 2024-09-21T17:19:56.625 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-21T17:19:57.470 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:57 smithi050 bash[19920]: audit 2024-09-21T17:19:56.081569+0000 mgr.smithi050.baqqjh (mgr.14164) 9 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:57.470 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:57 smithi050 bash[19920]: audit 2024-09-21T17:19:56.081569+0000 mgr.smithi050.baqqjh (mgr.14164) 9 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:57.470 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:57 smithi050 bash[19920]: audit 2024-09-21T17:19:56.084490+0000 mon.smithi050 (mon.0) 102 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:57.470 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:57 smithi050 bash[19920]: audit 2024-09-21T17:19:56.084490+0000 mon.smithi050 (mon.0) 102 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:58.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:58 smithi050 bash[19920]: audit 2024-09-21T17:19:57.262799+0000 mon.smithi050 (mon.0) 103 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:58.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:58 smithi050 bash[19920]: audit 2024-09-21T17:19:57.262799+0000 mon.smithi050 (mon.0) 103 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:58.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:58 smithi050 bash[19920]: audit 2024-09-21T17:19:58.031856+0000 mon.smithi050 (mon.0) 104 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:58.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:58 smithi050 bash[19920]: audit 2024-09-21T17:19:58.031856+0000 mon.smithi050 (mon.0) 104 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:58.590 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-21T17:19:58.590 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial admin user... 2024-09-21T17:19:59.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:59 smithi050 bash[19920]: audit 2024-09-21T17:19:58.026963+0000 mgr.smithi050.baqqjh (mgr.14164) 10 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:59.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:59 smithi050 bash[19920]: audit 2024-09-21T17:19:58.026963+0000 mgr.smithi050.baqqjh (mgr.14164) 10 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:19:59.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:59 smithi050 bash[19920]: audit 2024-09-21T17:19:58.343086+0000 mon.smithi050 (mon.0) 105 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:19:59.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:19:59 smithi050 bash[19920]: audit 2024-09-21T17:19:58.343086+0000 mon.smithi050 (mon.0) 105 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:00.865 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$OvUEsIHbJNSN3phScc70b.EPcP8wuJzQ9BrT.gRHwh6qhpyw2t/SG", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726939200, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-21T17:20:00.866 INFO:teuthology.orchestra.run.smithi050.stdout:Fetching dashboard port number... 2024-09-21T17:20:01.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:01 smithi050 bash[19920]: audit 2024-09-21T17:20:00.070407+0000 mgr.smithi050.baqqjh (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-21T17:20:01.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:01 smithi050 bash[19920]: audit 2024-09-21T17:20:00.070407+0000 mgr.smithi050.baqqjh (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-21T17:20:01.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:01 smithi050 bash[19920]: audit 2024-09-21T17:20:00.330263+0000 mon.smithi050 (mon.0) 106 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:01.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:01 smithi050 bash[19920]: audit 2024-09-21T17:20:00.330263+0000 mon.smithi050 (mon.0) 106 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:02.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:02 smithi050 bash[19920]: cluster 2024-09-21T17:20:01.336767+0000 mon.smithi050 (mon.0) 107 : cluster [DBG] mgrmap e14: smithi050.baqqjh(active, since 12s) 2024-09-21T17:20:02.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:02 smithi050 bash[19920]: cluster 2024-09-21T17:20:01.336767+0000 mon.smithi050 (mon.0) 107 : cluster [DBG] mgrmap e14: smithi050.baqqjh(active, since 12s) 2024-09-21T17:20:02.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:02 smithi050 bash[19920]: audit 2024-09-21T17:20:02.298043+0000 mon.smithi050 (mon.0) 108 : audit [DBG] from='client.? 172.21.15.50:0/2854637084' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-21T17:20:02.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:02 smithi050 bash[19920]: audit 2024-09-21T17:20:02.298043+0000 mon.smithi050 (mon.0) 108 : audit [DBG] from='client.? 172.21.15.50:0/2854637084' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-21T17:20:02.855 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 8443 2024-09-21T17:20:02.855 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld does not appear to be present 2024-09-21T17:20:02.855 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-21T17:20:02.858 INFO:teuthology.orchestra.run.smithi050.stdout:Ceph Dashboard is now available at: 2024-09-21T17:20:02.858 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:02.858 INFO:teuthology.orchestra.run.smithi050.stdout: URL: https://smithi050.front.sepia.ceph.com:8443/ 2024-09-21T17:20:02.859 INFO:teuthology.orchestra.run.smithi050.stdout: User: admin 2024-09-21T17:20:02.859 INFO:teuthology.orchestra.run.smithi050.stdout: Password: ofn1fgipa8 2024-09-21T17:20:02.859 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:02.859 INFO:teuthology.orchestra.run.smithi050.stdout:Saving cluster configuration to /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config directory 2024-09-21T17:20:05.504 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-21T17:20:05.504 INFO:teuthology.orchestra.run.smithi050.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-21T17:20:05.504 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:05.504 INFO:teuthology.orchestra.run.smithi050.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-21T17:20:05.504 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:05.504 INFO:teuthology.orchestra.run.smithi050.stdout:Or, if you are only running a single cluster on this host: 2024-09-21T17:20:05.504 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:05.504 INFO:teuthology.orchestra.run.smithi050.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout: ceph telemetry on 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout:For more information see: 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:05.505 INFO:teuthology.orchestra.run.smithi050.stdout:Bootstrap complete. 2024-09-21T17:20:05.576 INFO:tasks.cephadm:Fetching config... 2024-09-21T17:20:05.577 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:20:05.577 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-21T17:20:05.582 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-21T17:20:05.582 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:20:05.582 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-21T17:20:05.634 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-21T17:20:05.634 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:20:05.634 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/keyring of=/dev/stdout 2024-09-21T17:20:05.688 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-21T17:20:05.688 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:20:05.688 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-21T17:20:05.734 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-21T17:20:05.734 DEBUG:teuthology.orchestra.run.smithi050:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC0eyECIHviJ/mSXiqrMBcCH5UhJedvJWI+Xd4vBfvT5QimpktmhwyIGDEq6iTjvtc3VyPmeFbHtdz85WysWT/JhMqsJQpxRXH3FjU3+BpFRJ7FnO4RScnt42btXbrHR220b0MYjnUBMdt0P05uNnV4u21rXVDCOIf3HXem8e+kaFEvBg6A62uYth3hpjU6B0yCngEE/4fWfcIUxQPN6/buAMaXZD3B19d9QET6noKuPgNkwrBsbwTPr+CpjdqnLCGdLNTdfls06Q4qKzCGtJebpfUYUPHOKHymEv5jCfPtOhWzBNIw8o6IQ29pOksu1WTmUCW0gVo263Lwehi9bUAtJR0RD49LU7WGSy4qZ9bRxIv9PEMJZc0idsJaCYFltObkI8nPV+TFHp/5jYt0j/7iBDpXTiYHuAQxfWOcp2BR3S5uHiZCxnWDOYHGWLBMbWxRL+zyBVxj+yxLJF/JgExLdCOE52GoOuWXxARMxPz/b9s3/RIvPiSADpVu+sQ1OPM= ceph-58e4c4c0-783d-11ef-baf6-efdc52797490' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-21T17:20:05.802 INFO:teuthology.orchestra.run.smithi050.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC0eyECIHviJ/mSXiqrMBcCH5UhJedvJWI+Xd4vBfvT5QimpktmhwyIGDEq6iTjvtc3VyPmeFbHtdz85WysWT/JhMqsJQpxRXH3FjU3+BpFRJ7FnO4RScnt42btXbrHR220b0MYjnUBMdt0P05uNnV4u21rXVDCOIf3HXem8e+kaFEvBg6A62uYth3hpjU6B0yCngEE/4fWfcIUxQPN6/buAMaXZD3B19d9QET6noKuPgNkwrBsbwTPr+CpjdqnLCGdLNTdfls06Q4qKzCGtJebpfUYUPHOKHymEv5jCfPtOhWzBNIw8o6IQ29pOksu1WTmUCW0gVo263Lwehi9bUAtJR0RD49LU7WGSy4qZ9bRxIv9PEMJZc0idsJaCYFltObkI8nPV+TFHp/5jYt0j/7iBDpXTiYHuAQxfWOcp2BR3S5uHiZCxnWDOYHGWLBMbWxRL+zyBVxj+yxLJF/JgExLdCOE52GoOuWXxARMxPz/b9s3/RIvPiSADpVu+sQ1OPM= ceph-58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:20:05.811 DEBUG:teuthology.orchestra.run.smithi170:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC0eyECIHviJ/mSXiqrMBcCH5UhJedvJWI+Xd4vBfvT5QimpktmhwyIGDEq6iTjvtc3VyPmeFbHtdz85WysWT/JhMqsJQpxRXH3FjU3+BpFRJ7FnO4RScnt42btXbrHR220b0MYjnUBMdt0P05uNnV4u21rXVDCOIf3HXem8e+kaFEvBg6A62uYth3hpjU6B0yCngEE/4fWfcIUxQPN6/buAMaXZD3B19d9QET6noKuPgNkwrBsbwTPr+CpjdqnLCGdLNTdfls06Q4qKzCGtJebpfUYUPHOKHymEv5jCfPtOhWzBNIw8o6IQ29pOksu1WTmUCW0gVo263Lwehi9bUAtJR0RD49LU7WGSy4qZ9bRxIv9PEMJZc0idsJaCYFltObkI8nPV+TFHp/5jYt0j/7iBDpXTiYHuAQxfWOcp2BR3S5uHiZCxnWDOYHGWLBMbWxRL+zyBVxj+yxLJF/JgExLdCOE52GoOuWXxARMxPz/b9s3/RIvPiSADpVu+sQ1OPM= ceph-58e4c4c0-783d-11ef-baf6-efdc52797490' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-21T17:20:05.836 INFO:teuthology.orchestra.run.smithi170.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC0eyECIHviJ/mSXiqrMBcCH5UhJedvJWI+Xd4vBfvT5QimpktmhwyIGDEq6iTjvtc3VyPmeFbHtdz85WysWT/JhMqsJQpxRXH3FjU3+BpFRJ7FnO4RScnt42btXbrHR220b0MYjnUBMdt0P05uNnV4u21rXVDCOIf3HXem8e+kaFEvBg6A62uYth3hpjU6B0yCngEE/4fWfcIUxQPN6/buAMaXZD3B19d9QET6noKuPgNkwrBsbwTPr+CpjdqnLCGdLNTdfls06Q4qKzCGtJebpfUYUPHOKHymEv5jCfPtOhWzBNIw8o6IQ29pOksu1WTmUCW0gVo263Lwehi9bUAtJR0RD49LU7WGSy4qZ9bRxIv9PEMJZc0idsJaCYFltObkI8nPV+TFHp/5jYt0j/7iBDpXTiYHuAQxfWOcp2BR3S5uHiZCxnWDOYHGWLBMbWxRL+zyBVxj+yxLJF/JgExLdCOE52GoOuWXxARMxPz/b9s3/RIvPiSADpVu+sQ1OPM= ceph-58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:20:05.845 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-21T17:20:05.862 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:05 smithi050 bash[19920]: audit 2024-09-21T17:20:04.774836+0000 mon.smithi050 (mon.0) 109 : audit [INF] from='client.? 172.21.15.50:0/2854409639' entity='client.admin' 2024-09-21T17:20:05.862 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:05 smithi050 bash[19920]: audit 2024-09-21T17:20:04.774836+0000 mon.smithi050 (mon.0) 109 : audit [INF] from='client.? 172.21.15.50:0/2854409639' entity='client.admin' 2024-09-21T17:20:09.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.690496+0000 mon.smithi050 (mon.0) 110 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.690496+0000 mon.smithi050 (mon.0) 110 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.694626+0000 mon.smithi050 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.694626+0000 mon.smithi050 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.696058+0000 mon.smithi050 (mon.0) 112 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"} : dispatch 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.696058+0000 mon.smithi050 (mon.0) 112 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"} : dispatch 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.701455+0000 mon.smithi050 (mon.0) 113 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.701455+0000 mon.smithi050 (mon.0) 113 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.703446+0000 mon.smithi050 (mon.0) 114 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.703446+0000 mon.smithi050 (mon.0) 114 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.704431+0000 mon.smithi050 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.704431+0000 mon.smithi050 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.707730+0000 mon.smithi050 (mon.0) 116 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:20:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: audit 2024-09-21T17:20:08.707730+0000 mon.smithi050 (mon.0) 116 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:20:09.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: cephadm 2024-09-21T17:20:08.708831+0000 mgr.smithi050.baqqjh (mgr.14164) 12 : cephadm [INF] Deploying daemon ceph-exporter.smithi050 on smithi050 2024-09-21T17:20:09.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:09 smithi050 bash[19920]: cephadm 2024-09-21T17:20:08.708831+0000 mgr.smithi050.baqqjh (mgr.14164) 12 : cephadm [INF] Deploying daemon ceph-exporter.smithi050 on smithi050 2024-09-21T17:20:10.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:10 smithi050 bash[19920]: cluster 2024-09-21T17:20:09.168780+0000 mgr.smithi050.baqqjh (mgr.14164) 13 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:10.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:10 smithi050 bash[19920]: cluster 2024-09-21T17:20:09.168780+0000 mgr.smithi050.baqqjh (mgr.14164) 13 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:12.041 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:20:12.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:12 smithi050 bash[19920]: cluster 2024-09-21T17:20:11.169224+0000 mgr.smithi050.baqqjh (mgr.14164) 14 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:12.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:12 smithi050 bash[19920]: cluster 2024-09-21T17:20:11.169224+0000 mgr.smithi050.baqqjh (mgr.14164) 14 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:14.334 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-21T17:20:14.334 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-21T17:20:14.611 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:14 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:14.611 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:14 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:14.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:14 smithi050 bash[19920]: cluster 2024-09-21T17:20:13.169631+0000 mgr.smithi050.baqqjh (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:14.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:14 smithi050 bash[19920]: cluster 2024-09-21T17:20:13.169631+0000 mgr.smithi050.baqqjh (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:14.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:14 smithi050 bash[19920]: audit 2024-09-21T17:20:13.618590+0000 mon.smithi050 (mon.0) 117 : audit [INF] from='client.? 172.21.15.50:0/1050842214' entity='client.admin' 2024-09-21T17:20:14.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:14 smithi050 bash[19920]: audit 2024-09-21T17:20:13.618590+0000 mon.smithi050 (mon.0) 117 : audit [INF] from='client.? 172.21.15.50:0/1050842214' entity='client.admin' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.650272+0000 mon.smithi050 (mon.0) 118 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.650272+0000 mon.smithi050 (mon.0) 118 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.652491+0000 mon.smithi050 (mon.0) 119 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.652491+0000 mon.smithi050 (mon.0) 119 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.654851+0000 mon.smithi050 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.654851+0000 mon.smithi050 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.656808+0000 mon.smithi050 (mon.0) 121 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.656808+0000 mon.smithi050 (mon.0) 121 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.657847+0000 mon.smithi050 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.657847+0000 mon.smithi050 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:20:15.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.658411+0000 mon.smithi050 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T17:20:15.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.658411+0000 mon.smithi050 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T17:20:15.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.659976+0000 mon.smithi050 (mon.0) 124 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:20:15.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: audit 2024-09-21T17:20:14.659976+0000 mon.smithi050 (mon.0) 124 : audit [DBG] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:20:15.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: cephadm 2024-09-21T17:20:14.660725+0000 mgr.smithi050.baqqjh (mgr.14164) 16 : cephadm [INF] Deploying daemon crash.smithi050 on smithi050 2024-09-21T17:20:15.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:15 smithi050 bash[19920]: cephadm 2024-09-21T17:20:14.660725+0000 mgr.smithi050.baqqjh (mgr.14164) 16 : cephadm [INF] Deploying daemon crash.smithi050 on smithi050 2024-09-21T17:20:16.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:16 smithi050 bash[19920]: cluster 2024-09-21T17:20:15.169907+0000 mgr.smithi050.baqqjh (mgr.14164) 17 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:16.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:16 smithi050 bash[19920]: cluster 2024-09-21T17:20:15.169907+0000 mgr.smithi050.baqqjh (mgr.14164) 17 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:17.462 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:17 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:17.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:17 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:18.929 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:18.929 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: cluster 2024-09-21T17:20:17.170283+0000 mgr.smithi050.baqqjh (mgr.14164) 18 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: cluster 2024-09-21T17:20:17.170283+0000 mgr.smithi050.baqqjh (mgr.14164) 18 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: audit 2024-09-21T17:20:17.740232+0000 mon.smithi050 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: audit 2024-09-21T17:20:17.740232+0000 mon.smithi050 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: audit 2024-09-21T17:20:17.742758+0000 mon.smithi050 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: audit 2024-09-21T17:20:17.742758+0000 mon.smithi050 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: audit 2024-09-21T17:20:17.745162+0000 mon.smithi050 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: audit 2024-09-21T17:20:17.745162+0000 mon.smithi050 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: audit 2024-09-21T17:20:17.747218+0000 mon.smithi050 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: audit 2024-09-21T17:20:17.747218+0000 mon.smithi050 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: cephadm 2024-09-21T17:20:17.748544+0000 mgr.smithi050.baqqjh (mgr.14164) 19 : cephadm [INF] Deploying daemon node-exporter.smithi050 on smithi050 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 bash[19920]: cephadm 2024-09-21T17:20:17.748544+0000 mgr.smithi050.baqqjh (mgr.14164) 19 : cephadm [INF] Deploying daemon node-exporter.smithi050 on smithi050 2024-09-21T17:20:18.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:18 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:19.976 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:18.977721+0000 mon.smithi050 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.976 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:18.977721+0000 mon.smithi050 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.976 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:18.979990+0000 mon.smithi050 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.976 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:18.979990+0000 mon.smithi050 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:18.982149+0000 mon.smithi050 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:18.982149+0000 mon.smithi050 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:18.984038+0000 mon.smithi050 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:18.984038+0000 mon.smithi050 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: cephadm 2024-09-21T17:20:18.992991+0000 mgr.smithi050.baqqjh (mgr.14164) 20 : cephadm [INF] Deploying daemon alertmanager.smithi050 on smithi050 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: cephadm 2024-09-21T17:20:18.992991+0000 mgr.smithi050.baqqjh (mgr.14164) 20 : cephadm [INF] Deploying daemon alertmanager.smithi050 on smithi050 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: cluster 2024-09-21T17:20:19.170665+0000 mgr.smithi050.baqqjh (mgr.14164) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: cluster 2024-09-21T17:20:19.170665+0000 mgr.smithi050.baqqjh (mgr.14164) 21 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:19.658588+0000 mon.smithi050 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:19.977 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:19 smithi050 bash[19920]: audit 2024-09-21T17:20:19.658588+0000 mon.smithi050 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:21.112 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:20:22.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:22 smithi050 bash[19920]: cluster 2024-09-21T17:20:21.170982+0000 mgr.smithi050.baqqjh (mgr.14164) 22 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:22.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:22 smithi050 bash[19920]: cluster 2024-09-21T17:20:21.170982+0000 mgr.smithi050.baqqjh (mgr.14164) 22 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:24.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:24 smithi050 bash[19920]: cluster 2024-09-21T17:20:23.171373+0000 mgr.smithi050.baqqjh (mgr.14164) 23 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:24.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:24 smithi050 bash[19920]: cluster 2024-09-21T17:20:23.171373+0000 mgr.smithi050.baqqjh (mgr.14164) 23 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:25.541 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:25 smithi050 bash[19920]: audit 2024-09-21T17:20:24.284874+0000 mgr.smithi050.baqqjh (mgr.14164) 24 : 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-21T17:20:25.541 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:25 smithi050 bash[19920]: audit 2024-09-21T17:20:24.284874+0000 mgr.smithi050.baqqjh (mgr.14164) 24 : 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-21T17:20:25.542 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:25 smithi050 bash[19920]: audit 2024-09-21T17:20:24.289624+0000 mon.smithi050 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:25.542 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:25 smithi050 bash[19920]: audit 2024-09-21T17:20:24.289624+0000 mon.smithi050 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:25.543 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi170 2024-09-21T17:20:25.543 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:20:25.543 DEBUG:teuthology.orchestra.run.smithi170:> dd of=/etc/ceph/ceph.conf 2024-09-21T17:20:25.549 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:20:25.549 DEBUG:teuthology.orchestra.run.smithi170:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:20:25.596 INFO:tasks.cephadm:Adding host smithi170 to orchestrator... 2024-09-21T17:20:25.596 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch host add smithi170 2024-09-21T17:20:26.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:26 smithi050 bash[19920]: cluster 2024-09-21T17:20:25.171795+0000 mgr.smithi050.baqqjh (mgr.14164) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:26.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:26 smithi050 bash[19920]: cluster 2024-09-21T17:20:25.171795+0000 mgr.smithi050.baqqjh (mgr.14164) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:28.617 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:28 smithi050 bash[19920]: cluster 2024-09-21T17:20:27.172181+0000 mgr.smithi050.baqqjh (mgr.14164) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:28.617 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:28 smithi050 bash[19920]: cluster 2024-09-21T17:20:27.172181+0000 mgr.smithi050.baqqjh (mgr.14164) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:30.174 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:29 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:30.344 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:20:30.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:30 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:30.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:30 smithi050 bash[19920]: cluster 2024-09-21T17:20:29.172580+0000 mgr.smithi050.baqqjh (mgr.14164) 27 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:30.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:30 smithi050 bash[19920]: cluster 2024-09-21T17:20:29.172580+0000 mgr.smithi050.baqqjh (mgr.14164) 27 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:30.343768+0000 mon.smithi050 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:30.343768+0000 mon.smithi050 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:30.346713+0000 mon.smithi050 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:30.346713+0000 mon.smithi050 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:30.349946+0000 mon.smithi050 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:30.349946+0000 mon.smithi050 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:30.352878+0000 mon.smithi050 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:30.352878+0000 mon.smithi050 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: cephadm 2024-09-21T17:20:30.354020+0000 mgr.smithi050.baqqjh (mgr.14164) 28 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: cephadm 2024-09-21T17:20:30.354020+0000 mgr.smithi050.baqqjh (mgr.14164) 28 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.212570+0000 mon.smithi050 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.212570+0000 mon.smithi050 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.217087+0000 mon.smithi050 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.217087+0000 mon.smithi050 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.220571+0000 mon.smithi050 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.220571+0000 mon.smithi050 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.224305+0000 mon.smithi050 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.224305+0000 mon.smithi050 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.233958+0000 mon.smithi050 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.233958+0000 mon.smithi050 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.237125+0000 mon.smithi050 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:31 smithi050 bash[19920]: audit 2024-09-21T17:20:31.237125+0000 mon.smithi050 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:32.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:32 smithi050 bash[19920]: cluster 2024-09-21T17:20:31.172849+0000 mgr.smithi050.baqqjh (mgr.14164) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:32.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:32 smithi050 bash[19920]: cluster 2024-09-21T17:20:31.172849+0000 mgr.smithi050.baqqjh (mgr.14164) 29 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:32.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:32 smithi050 bash[19920]: audit 2024-09-21T17:20:31.221030+0000 mgr.smithi050.baqqjh (mgr.14164) 30 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-21T17:20:32.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:32 smithi050 bash[19920]: audit 2024-09-21T17:20:31.221030+0000 mgr.smithi050.baqqjh (mgr.14164) 30 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-21T17:20:32.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:32 smithi050 bash[19920]: cephadm 2024-09-21T17:20:31.251559+0000 mgr.smithi050.baqqjh (mgr.14164) 31 : cephadm [INF] Deploying daemon grafana.smithi050 on smithi050 2024-09-21T17:20:32.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:32 smithi050 bash[19920]: cephadm 2024-09-21T17:20:31.251559+0000 mgr.smithi050.baqqjh (mgr.14164) 31 : cephadm [INF] Deploying daemon grafana.smithi050 on smithi050 2024-09-21T17:20:33.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:33 smithi050 bash[19920]: audit 2024-09-21T17:20:32.149677+0000 mgr.smithi050.baqqjh (mgr.14164) 32 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi170", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:20:33.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:33 smithi050 bash[19920]: audit 2024-09-21T17:20:32.149677+0000 mgr.smithi050.baqqjh (mgr.14164) 32 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi170", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:20:34.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:34 smithi050 bash[19920]: cluster 2024-09-21T17:20:33.173106+0000 mgr.smithi050.baqqjh (mgr.14164) 33 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:34 smithi050 bash[19920]: cluster 2024-09-21T17:20:33.173106+0000 mgr.smithi050.baqqjh (mgr.14164) 33 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:34 smithi050 bash[19920]: cephadm 2024-09-21T17:20:33.367431+0000 mgr.smithi050.baqqjh (mgr.14164) 34 : cephadm [INF] Deploying cephadm binary to smithi170 2024-09-21T17:20:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:34 smithi050 bash[19920]: cephadm 2024-09-21T17:20:33.367431+0000 mgr.smithi050.baqqjh (mgr.14164) 34 : cephadm [INF] Deploying cephadm binary to smithi170 2024-09-21T17:20:35.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:35 smithi050 bash[19920]: audit 2024-09-21T17:20:34.665654+0000 mon.smithi050 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:35.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:35 smithi050 bash[19920]: audit 2024-09-21T17:20:34.665654+0000 mon.smithi050 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:36.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:36 smithi050 bash[19920]: cluster 2024-09-21T17:20:35.173395+0000 mgr.smithi050.baqqjh (mgr.14164) 35 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:36.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:36 smithi050 bash[19920]: cluster 2024-09-21T17:20:35.173395+0000 mgr.smithi050.baqqjh (mgr.14164) 35 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:37.186 INFO:teuthology.orchestra.run.smithi050.stdout:Added host 'smithi170' with addr '172.21.15.170' 2024-09-21T17:20:38.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:38 smithi050 bash[19920]: cluster 2024-09-21T17:20:37.173848+0000 mgr.smithi050.baqqjh (mgr.14164) 36 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:38.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:38 smithi050 bash[19920]: cluster 2024-09-21T17:20:37.173848+0000 mgr.smithi050.baqqjh (mgr.14164) 36 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:38.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:38 smithi050 bash[19920]: audit 2024-09-21T17:20:37.186727+0000 mon.smithi050 (mon.0) 146 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:38.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:38 smithi050 bash[19920]: audit 2024-09-21T17:20:37.186727+0000 mon.smithi050 (mon.0) 146 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:38.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:38 smithi050 bash[19920]: cephadm 2024-09-21T17:20:37.187639+0000 mgr.smithi050.baqqjh (mgr.14164) 37 : cephadm [INF] Added host smithi170 2024-09-21T17:20:38.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:38 smithi050 bash[19920]: cephadm 2024-09-21T17:20:37.187639+0000 mgr.smithi050.baqqjh (mgr.14164) 37 : cephadm [INF] Added host smithi170 2024-09-21T17:20:39.893 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch host ls --format=json 2024-09-21T17:20:40.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:40 smithi050 bash[19920]: cluster 2024-09-21T17:20:39.174269+0000 mgr.smithi050.baqqjh (mgr.14164) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:40.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:40 smithi050 bash[19920]: cluster 2024-09-21T17:20:39.174269+0000 mgr.smithi050.baqqjh (mgr.14164) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:42.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:42 smithi050 bash[19920]: cluster 2024-09-21T17:20:41.174752+0000 mgr.smithi050.baqqjh (mgr.14164) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:42.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:42 smithi050 bash[19920]: cluster 2024-09-21T17:20:41.174752+0000 mgr.smithi050.baqqjh (mgr.14164) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:44.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:44 smithi050 bash[19920]: cluster 2024-09-21T17:20:43.175187+0000 mgr.smithi050.baqqjh (mgr.14164) 40 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:44.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:44 smithi050 bash[19920]: cluster 2024-09-21T17:20:43.175187+0000 mgr.smithi050.baqqjh (mgr.14164) 40 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:44.689 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:20:46.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:46 smithi050 bash[19920]: cluster 2024-09-21T17:20:45.175622+0000 mgr.smithi050.baqqjh (mgr.14164) 41 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:46.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:46 smithi050 bash[19920]: cluster 2024-09-21T17:20:45.175622+0000 mgr.smithi050.baqqjh (mgr.14164) 41 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:46.828 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:20:46.829 INFO:teuthology.orchestra.run.smithi050.stdout:[{"addr": "172.21.15.50", "hostname": "smithi050", "labels": [], "status": ""}, {"addr": "172.21.15.170", "hostname": "smithi170", "labels": [], "status": ""}] 2024-09-21T17:20:47.453 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:47 smithi050 bash[19920]: audit 2024-09-21T17:20:46.828696+0000 mgr.smithi050.baqqjh (mgr.14164) 42 : audit [DBG] from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:20:47.453 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:47 smithi050 bash[19920]: audit 2024-09-21T17:20:46.828696+0000 mgr.smithi050.baqqjh (mgr.14164) 42 : audit [DBG] from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:20:47.736 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-21T17:20:47.737 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd crush tunables default 2024-09-21T17:20:48.480 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:48 smithi050 bash[19920]: cluster 2024-09-21T17:20:47.176009+0000 mgr.smithi050.baqqjh (mgr.14164) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:48.480 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:48 smithi050 bash[19920]: cluster 2024-09-21T17:20:47.176009+0000 mgr.smithi050.baqqjh (mgr.14164) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:49.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:49 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:49.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:49 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:20:50.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: cluster 2024-09-21T17:20:49.176380+0000 mgr.smithi050.baqqjh (mgr.14164) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:50.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: cluster 2024-09-21T17:20:49.176380+0000 mgr.smithi050.baqqjh (mgr.14164) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:50.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.636413+0000 mon.smithi050 (mon.0) 147 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.636413+0000 mon.smithi050 (mon.0) 147 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.638998+0000 mon.smithi050 (mon.0) 148 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.638998+0000 mon.smithi050 (mon.0) 148 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.646419+0000 mon.smithi050 (mon.0) 149 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.646419+0000 mon.smithi050 (mon.0) 149 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.648718+0000 mon.smithi050 (mon.0) 150 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.648718+0000 mon.smithi050 (mon.0) 150 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.651380+0000 mon.smithi050 (mon.0) 151 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.651380+0000 mon.smithi050 (mon.0) 151 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.654251+0000 mon.smithi050 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.654251+0000 mon.smithi050 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.657159+0000 mon.smithi050 (mon.0) 153 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.657159+0000 mon.smithi050 (mon.0) 153 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.659290+0000 mon.smithi050 (mon.0) 154 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.659290+0000 mon.smithi050 (mon.0) 154 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.668928+0000 mon.smithi050 (mon.0) 155 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:50 smithi050 bash[19920]: audit 2024-09-21T17:20:49.668928+0000 mon.smithi050 (mon.0) 155 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:20:51.917 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:51 smithi050 bash[19920]: cephadm 2024-09-21T17:20:49.922796+0000 mgr.smithi050.baqqjh (mgr.14164) 45 : cephadm [INF] Deploying daemon prometheus.smithi050 on smithi050 2024-09-21T17:20:51.917 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:51 smithi050 bash[19920]: cephadm 2024-09-21T17:20:49.922796+0000 mgr.smithi050.baqqjh (mgr.14164) 45 : cephadm [INF] Deploying daemon prometheus.smithi050 on smithi050 2024-09-21T17:20:52.514 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:20:52.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:52 smithi050 bash[19920]: cluster 2024-09-21T17:20:51.176830+0000 mgr.smithi050.baqqjh (mgr.14164) 46 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:52.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:52 smithi050 bash[19920]: cluster 2024-09-21T17:20:51.176830+0000 mgr.smithi050.baqqjh (mgr.14164) 46 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:54.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:54 smithi050 bash[19920]: cluster 2024-09-21T17:20:53.177213+0000 mgr.smithi050.baqqjh (mgr.14164) 47 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:54.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:54 smithi050 bash[19920]: cluster 2024-09-21T17:20:53.177213+0000 mgr.smithi050.baqqjh (mgr.14164) 47 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:56.643 INFO:teuthology.orchestra.run.smithi050.stderr:adjusted tunables profile to default 2024-09-21T17:20:56.976 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:56 smithi050 bash[19920]: cluster 2024-09-21T17:20:55.177639+0000 mgr.smithi050.baqqjh (mgr.14164) 48 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:56.976 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:56 smithi050 bash[19920]: cluster 2024-09-21T17:20:55.177639+0000 mgr.smithi050.baqqjh (mgr.14164) 48 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:56.976 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:56 smithi050 bash[19920]: audit 2024-09-21T17:20:56.642817+0000 mon.smithi050 (mon.0) 156 : audit [INF] from='client.? 172.21.15.50:0/3538617568' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-21T17:20:56.976 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:56 smithi050 bash[19920]: audit 2024-09-21T17:20:56.642817+0000 mon.smithi050 (mon.0) 156 : audit [INF] from='client.? 172.21.15.50:0/3538617568' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-21T17:20:57.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:57 smithi050 bash[19920]: audit 2024-09-21T17:20:56.644350+0000 mon.smithi050 (mon.0) 157 : audit [INF] from='client.? 172.21.15.50:0/3538617568' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-21T17:20:57.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:57 smithi050 bash[19920]: audit 2024-09-21T17:20:56.644350+0000 mon.smithi050 (mon.0) 157 : audit [INF] from='client.? 172.21.15.50:0/3538617568' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-21T17:20:57.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:57 smithi050 bash[19920]: cluster 2024-09-21T17:20:56.646716+0000 mon.smithi050 (mon.0) 158 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-21T17:20:57.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:57 smithi050 bash[19920]: cluster 2024-09-21T17:20:56.646716+0000 mon.smithi050 (mon.0) 158 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-21T17:20:58.741 INFO:tasks.cephadm:Adding mon.smithi050 on smithi050 2024-09-21T17:20:58.741 INFO:tasks.cephadm:Adding mon.smithi170 on smithi170 2024-09-21T17:20:58.741 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch apply mon '2;smithi050:172.21.15.50=smithi050;smithi170:172.21.15.170=smithi170' 2024-09-21T17:20:58.793 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:58 smithi050 bash[19920]: cluster 2024-09-21T17:20:57.178059+0000 mgr.smithi050.baqqjh (mgr.14164) 49 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:58.793 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:20:58 smithi050 bash[19920]: cluster 2024-09-21T17:20:57.178059+0000 mgr.smithi050.baqqjh (mgr.14164) 49 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:20:59.971 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:00.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:00 smithi050 bash[19920]: cluster 2024-09-21T17:20:59.178451+0000 mgr.smithi050.baqqjh (mgr.14164) 50 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:00.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:00 smithi050 bash[19920]: cluster 2024-09-21T17:20:59.178451+0000 mgr.smithi050.baqqjh (mgr.14164) 50 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:01.014 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:02.375 INFO:teuthology.orchestra.run.smithi170.stdout:Scheduled mon update... 2024-09-21T17:21:02.934 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:02 smithi050 bash[19920]: cluster 2024-09-21T17:21:01.178884+0000 mgr.smithi050.baqqjh (mgr.14164) 51 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:02.934 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:02 smithi050 bash[19920]: cluster 2024-09-21T17:21:01.178884+0000 mgr.smithi050.baqqjh (mgr.14164) 51 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:02.934 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:02 smithi050 bash[19920]: audit 2024-09-21T17:21:02.374689+0000 mon.smithi050 (mon.0) 159 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:02.934 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:02 smithi050 bash[19920]: audit 2024-09-21T17:21:02.374689+0000 mon.smithi050 (mon.0) 159 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:02.979 DEBUG:teuthology.orchestra.run.smithi170:mon.smithi170> sudo journalctl -f -n 0 -u ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi170.service 2024-09-21T17:21:02.982 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T17:21:02.982 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T17:21:03.763 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:03 smithi050 bash[19920]: audit 2024-09-21T17:21:02.364298+0000 mgr.smithi050.baqqjh (mgr.14164) 52 : audit [DBG] from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi050:172.21.15.50=smithi050;smithi170:172.21.15.170=smithi170", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:21:03.763 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:03 smithi050 bash[19920]: audit 2024-09-21T17:21:02.364298+0000 mgr.smithi050.baqqjh (mgr.14164) 52 : audit [DBG] from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi050:172.21.15.50=smithi050;smithi170:172.21.15.170=smithi170", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:21:03.763 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:03 smithi050 bash[19920]: cephadm 2024-09-21T17:21:02.369304+0000 mgr.smithi050.baqqjh (mgr.14164) 53 : cephadm [INF] Saving service mon spec with placement smithi050:172.21.15.50=smithi050;smithi170:172.21.15.170=smithi170;count:2 2024-09-21T17:21:03.764 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:03 smithi050 bash[19920]: cephadm 2024-09-21T17:21:02.369304+0000 mgr.smithi050.baqqjh (mgr.14164) 53 : cephadm [INF] Saving service mon spec with placement smithi050:172.21.15.50=smithi050;smithi170:172.21.15.170=smithi170;count:2 2024-09-21T17:21:04.239 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:04.961 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:04 smithi050 bash[19920]: cluster 2024-09-21T17:21:03.179353+0000 mgr.smithi050.baqqjh (mgr.14164) 54 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:04.962 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:04 smithi050 bash[19920]: cluster 2024-09-21T17:21:03.179353+0000 mgr.smithi050.baqqjh (mgr.14164) 54 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:05.282 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:06.578 INFO:teuthology.orchestra.run.smithi170.stderr:dumped monmap epoch 1 2024-09-21T17:21:06.578 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-09-21T17:21:06.578 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":1,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","modified":"2024-09-21T17:18:27.556920Z","created":"2024-09-21T17:18:27.556920Z","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":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T17:21:06.846 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:06 smithi050 bash[19920]: cluster 2024-09-21T17:21:05.179784+0000 mgr.smithi050.baqqjh (mgr.14164) 55 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:06.847 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:06 smithi050 bash[19920]: cluster 2024-09-21T17:21:05.179784+0000 mgr.smithi050.baqqjh (mgr.14164) 55 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:06.847 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:06 smithi050 bash[19920]: audit 2024-09-21T17:21:06.577843+0000 mon.smithi050 (mon.0) 160 : audit [DBG] from='client.? 172.21.15.170:0/2586525016' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:06.847 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:06 smithi050 bash[19920]: audit 2024-09-21T17:21:06.577843+0000 mon.smithi050 (mon.0) 160 : audit [DBG] from='client.? 172.21.15.170:0/2586525016' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:07.358 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:07 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:21:07.629 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:07 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:21:08.176 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T17:21:08.177 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T17:21:08.895 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: cluster 2024-09-21T17:21:07.180199+0000 mgr.smithi050.baqqjh (mgr.14164) 56 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: cluster 2024-09-21T17:21:07.180199+0000 mgr.smithi050.baqqjh (mgr.14164) 56 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: audit 2024-09-21T17:21:07.645500+0000 mon.smithi050 (mon.0) 161 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: audit 2024-09-21T17:21:07.645500+0000 mon.smithi050 (mon.0) 161 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: audit 2024-09-21T17:21:07.648149+0000 mon.smithi050 (mon.0) 162 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: audit 2024-09-21T17:21:07.648149+0000 mon.smithi050 (mon.0) 162 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: audit 2024-09-21T17:21:07.650737+0000 mon.smithi050 (mon.0) 163 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: audit 2024-09-21T17:21:07.650737+0000 mon.smithi050 (mon.0) 163 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: audit 2024-09-21T17:21:07.653355+0000 mon.smithi050 (mon.0) 164 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-21T17:21:08.896 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:08 smithi050 bash[19920]: audit 2024-09-21T17:21:07.653355+0000 mon.smithi050 (mon.0) 164 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-21T17:21:09.402 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:09.702 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:09 smithi050 bash[19920]: audit 2024-09-21T17:21:08.653288+0000 mon.smithi050 (mon.0) 165 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-21T17:21:09.702 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:09 smithi050 bash[19920]: audit 2024-09-21T17:21:08.653288+0000 mon.smithi050 (mon.0) 165 : audit [INF] from='mgr.14164 172.21.15.50:0/3540413783' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-21T17:21:09.702 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:09 smithi050 bash[19920]: cluster 2024-09-21T17:21:08.659030+0000 mon.smithi050 (mon.0) 166 : cluster [DBG] mgrmap e15: smithi050.baqqjh(active, since 79s) 2024-09-21T17:21:09.702 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:09 smithi050 bash[19920]: cluster 2024-09-21T17:21:08.659030+0000 mon.smithi050 (mon.0) 166 : cluster [DBG] mgrmap e15: smithi050.baqqjh(active, since 79s) 2024-09-21T17:21:10.445 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:11.813 INFO:teuthology.orchestra.run.smithi170.stderr:dumped monmap epoch 1 2024-09-21T17:21:11.813 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-09-21T17:21:11.813 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":1,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","modified":"2024-09-21T17:18:27.556920Z","created":"2024-09-21T17:18:27.556920Z","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":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T17:21:12.111 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:11 smithi050 bash[19920]: audit 2024-09-21T17:21:11.812785+0000 mon.smithi050 (mon.0) 167 : audit [DBG] from='client.? 172.21.15.170:0/742434807' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:12.111 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:11 smithi050 bash[19920]: audit 2024-09-21T17:21:11.812785+0000 mon.smithi050 (mon.0) 167 : audit [DBG] from='client.? 172.21.15.170:0/742434807' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:13.385 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T17:21:13.385 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T17:21:14.608 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:15.226 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.070184+0000 mon.smithi050 (mon.0) 168 : cluster [INF] Active manager daemon smithi050.baqqjh restarted 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.070184+0000 mon.smithi050 (mon.0) 168 : cluster [INF] Active manager daemon smithi050.baqqjh restarted 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.070888+0000 mon.smithi050 (mon.0) 169 : cluster [INF] Activating manager daemon smithi050.baqqjh 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.070888+0000 mon.smithi050 (mon.0) 169 : cluster [INF] Activating manager daemon smithi050.baqqjh 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.078204+0000 mon.smithi050 (mon.0) 170 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.078204+0000 mon.smithi050 (mon.0) 170 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.078497+0000 mon.smithi050 (mon.0) 171 : cluster [DBG] mgrmap e16: smithi050.baqqjh(active, starting, since 0.00794057s) 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.078497+0000 mon.smithi050 (mon.0) 171 : cluster [DBG] mgrmap e16: smithi050.baqqjh(active, starting, since 0.00794057s) 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.080497+0000 mon.smithi050 (mon.0) 172 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.080497+0000 mon.smithi050 (mon.0) 172 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.082357+0000 mon.smithi050 (mon.0) 173 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi050.baqqjh", "id": "smithi050.baqqjh"} : dispatch 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.082357+0000 mon.smithi050 (mon.0) 173 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi050.baqqjh", "id": "smithi050.baqqjh"} : dispatch 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.083618+0000 mon.smithi050 (mon.0) 174 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.083618+0000 mon.smithi050 (mon.0) 174 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T17:21:15.227 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.083964+0000 mon.smithi050 (mon.0) 175 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:21:15.228 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.083964+0000 mon.smithi050 (mon.0) 175 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T17:21:15.228 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.084078+0000 mon.smithi050 (mon.0) 176 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:21:15.228 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: audit 2024-09-21T17:21:15.084078+0000 mon.smithi050 (mon.0) 176 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T17:21:15.228 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.114062+0000 mon.smithi050 (mon.0) 177 : cluster [INF] Manager daemon smithi050.baqqjh is now available 2024-09-21T17:21:15.228 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:15 smithi050 bash[19920]: cluster 2024-09-21T17:21:15.114062+0000 mon.smithi050 (mon.0) 177 : cluster [INF] Manager daemon smithi050.baqqjh is now available 2024-09-21T17:21:15.654 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:16.285 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.541898+0000 mon.smithi050 (mon.0) 178 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:21:16.285 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.541898+0000 mon.smithi050 (mon.0) 178 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:21:16.285 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.563142+0000 mon.smithi050 (mon.0) 179 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:16.285 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.563142+0000 mon.smithi050 (mon.0) 179 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.567063+0000 mon.smithi050 (mon.0) 180 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.567063+0000 mon.smithi050 (mon.0) 180 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.567988+0000 mon.smithi050 (mon.0) 181 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.567988+0000 mon.smithi050 (mon.0) 181 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.582169+0000 mon.smithi050 (mon.0) 182 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.582169+0000 mon.smithi050 (mon.0) 182 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.589636+0000 mon.smithi050 (mon.0) 183 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: audit 2024-09-21T17:21:15.589636+0000 mon.smithi050 (mon.0) 183 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: cluster 2024-09-21T17:21:16.084218+0000 mon.smithi050 (mon.0) 184 : cluster [DBG] mgrmap e17: smithi050.baqqjh(active, since 1.01366s) 2024-09-21T17:21:16.286 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:16 smithi050 bash[19920]: cluster 2024-09-21T17:21:16.084218+0000 mon.smithi050 (mon.0) 184 : cluster [DBG] mgrmap e17: smithi050.baqqjh(active, since 1.01366s) 2024-09-21T17:21:17.066 INFO:teuthology.orchestra.run.smithi170.stderr:dumped monmap epoch 1 2024-09-21T17:21:17.067 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-09-21T17:21:17.067 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":1,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","modified":"2024-09-21T17:18:27.556920Z","created":"2024-09-21T17:18:27.556920Z","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":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T17:21:17.622 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:17 smithi050 bash[19920]: audit 2024-09-21T17:21:16.086227+0000 mgr.smithi050.baqqjh (mgr.14203) 1 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:21:17.622 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:17 smithi050 bash[19920]: audit 2024-09-21T17:21:16.086227+0000 mgr.smithi050.baqqjh (mgr.14203) 1 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:21:17.622 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:17 smithi050 bash[19920]: audit 2024-09-21T17:21:16.482914+0000 mon.smithi050 (mon.0) 185 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:17.622 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:17 smithi050 bash[19920]: audit 2024-09-21T17:21:16.482914+0000 mon.smithi050 (mon.0) 185 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:17.622 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:17 smithi050 bash[19920]: audit 2024-09-21T17:21:17.066499+0000 mon.smithi050 (mon.0) 186 : audit [DBG] from='client.? 172.21.15.170:0/3208074652' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:17.622 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:17 smithi050 bash[19920]: audit 2024-09-21T17:21:17.066499+0000 mon.smithi050 (mon.0) 186 : audit [DBG] from='client.? 172.21.15.170:0/3208074652' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:18.647 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T17:21:18.648 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T17:21:18.665 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:18 smithi050 bash[19920]: cluster 2024-09-21T17:21:17.491705+0000 mon.smithi050 (mon.0) 187 : cluster [DBG] mgrmap e18: smithi050.baqqjh(active, since 2s) 2024-09-21T17:21:18.665 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:18 smithi050 bash[19920]: cluster 2024-09-21T17:21:17.491705+0000 mon.smithi050 (mon.0) 187 : cluster [DBG] mgrmap e18: smithi050.baqqjh(active, since 2s) 2024-09-21T17:21:19.771 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:19 smithi050 bash[19920]: audit 2024-09-21T17:21:18.637892+0000 mon.smithi050 (mon.0) 188 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:19.771 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:19 smithi050 bash[19920]: audit 2024-09-21T17:21:18.637892+0000 mon.smithi050 (mon.0) 188 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:19.873 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:20.820 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:18.885727+0000 mgr.smithi050.baqqjh (mgr.14203) 2 : cephadm [INF] [21/Sep/2024:17:21:18] ENGINE Bus STARTING 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:18.885727+0000 mgr.smithi050.baqqjh (mgr.14203) 2 : cephadm [INF] [21/Sep/2024:17:21:18] ENGINE Bus STARTING 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:18.987572+0000 mgr.smithi050.baqqjh (mgr.14203) 3 : cephadm [INF] [21/Sep/2024:17:21:18] ENGINE Serving on http://172.21.15.50:8765 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:18.987572+0000 mgr.smithi050.baqqjh (mgr.14203) 3 : cephadm [INF] [21/Sep/2024:17:21:18] ENGINE Serving on http://172.21.15.50:8765 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:19.109869+0000 mgr.smithi050.baqqjh (mgr.14203) 4 : cephadm [INF] [21/Sep/2024:17:21:19] ENGINE Serving on https://172.21.15.50:7150 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:19.109869+0000 mgr.smithi050.baqqjh (mgr.14203) 4 : cephadm [INF] [21/Sep/2024:17:21:19] ENGINE Serving on https://172.21.15.50:7150 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:19.110106+0000 mgr.smithi050.baqqjh (mgr.14203) 5 : cephadm [INF] [21/Sep/2024:17:21:19] ENGINE Bus STARTED 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:19.110106+0000 mgr.smithi050.baqqjh (mgr.14203) 5 : cephadm [INF] [21/Sep/2024:17:21:19] ENGINE Bus STARTED 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:19.112304+0000 mgr.smithi050.baqqjh (mgr.14203) 6 : cephadm [ERR] [21/Sep/2024:17:21:19] ENGINE Error in HTTPServer.serve 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: Traceback (most recent call last): 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: self._connections.run(self.expiration_interval) 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: self._run(expiration_interval) 2024-09-21T17:21:20.821 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: s = self.context.wrap_socket( 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: return self.sslsocket_class._create( 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: self.do_handshake() 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: self._sslobj.do_handshake() 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: cephadm 2024-09-21T17:21:19.112304+0000 mgr.smithi050.baqqjh (mgr.14203) 6 : cephadm [ERR] [21/Sep/2024:17:21:19] ENGINE Error in HTTPServer.serve 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: Traceback (most recent call last): 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T17:21:20.822 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: self._connections.run(self.expiration_interval) 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: self._run(expiration_interval) 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: s = self.context.wrap_socket( 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T17:21:20.823 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: return self.sslsocket_class._create( 2024-09-21T17:21:20.824 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T17:21:20.824 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: self.do_handshake() 2024-09-21T17:21:20.824 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T17:21:20.824 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: self._sslobj.do_handshake() 2024-09-21T17:21:20.824 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T17:21:20.824 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: audit 2024-09-21T17:21:19.795093+0000 mon.smithi050 (mon.0) 189 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:20.824 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:20 smithi050 bash[19920]: audit 2024-09-21T17:21:19.795093+0000 mon.smithi050 (mon.0) 189 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:20.911 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T17:21:22.704 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-09-21T17:21:22.704 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":1,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","modified":"2024-09-21T17:18:27.556920Z","created":"2024-09-21T17:18:27.556920Z","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":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T17:21:22.705 INFO:teuthology.orchestra.run.smithi170.stderr:dumped monmap epoch 1 2024-09-21T17:21:22.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:22 smithi050 bash[19920]: audit 2024-09-21T17:21:21.811315+0000 mon.smithi050 (mon.0) 190 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:22.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:22 smithi050 bash[19920]: audit 2024-09-21T17:21:21.811315+0000 mon.smithi050 (mon.0) 190 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:22.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:22 smithi050 bash[19920]: audit 2024-09-21T17:21:21.814197+0000 mon.smithi050 (mon.0) 191 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:22.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:22 smithi050 bash[19920]: audit 2024-09-21T17:21:21.814197+0000 mon.smithi050 (mon.0) 191 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:22.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:22 smithi050 bash[19920]: audit 2024-09-21T17:21:22.704291+0000 mon.smithi050 (mon.0) 192 : audit [DBG] from='client.? 172.21.15.170:0/268212874' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:22.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:22 smithi050 bash[19920]: audit 2024-09-21T17:21:22.704291+0000 mon.smithi050 (mon.0) 192 : audit [DBG] from='client.? 172.21.15.170:0/268212874' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:24.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:24 smithi050 bash[19920]: audit 2024-09-21T17:21:23.009293+0000 mon.smithi050 (mon.0) 193 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:24.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:24 smithi050 bash[19920]: audit 2024-09-21T17:21:23.009293+0000 mon.smithi050 (mon.0) 193 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:24.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:24 smithi050 bash[19920]: audit 2024-09-21T17:21:23.013716+0000 mon.smithi050 (mon.0) 194 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:24.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:24 smithi050 bash[19920]: audit 2024-09-21T17:21:23.013716+0000 mon.smithi050 (mon.0) 194 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:24.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:24 smithi050 bash[19920]: audit 2024-09-21T17:21:23.015644+0000 mon.smithi050 (mon.0) 195 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"} : dispatch 2024-09-21T17:21:24.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:24 smithi050 bash[19920]: audit 2024-09-21T17:21:23.015644+0000 mon.smithi050 (mon.0) 195 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"} : dispatch 2024-09-21T17:21:24.687 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T17:21:24.687 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T17:21:26.877 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:27.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.979585+0000 mon.smithi050 (mon.0) 196 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.979585+0000 mon.smithi050 (mon.0) 196 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.985171+0000 mon.smithi050 (mon.0) 197 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.985171+0000 mon.smithi050 (mon.0) 197 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.992236+0000 mon.smithi050 (mon.0) 198 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.992236+0000 mon.smithi050 (mon.0) 198 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.997562+0000 mon.smithi050 (mon.0) 199 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.997562+0000 mon.smithi050 (mon.0) 199 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.999248+0000 mon.smithi050 (mon.0) 200 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi170", "name": "osd_memory_target"} : dispatch 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:25.999248+0000 mon.smithi050 (mon.0) 200 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi170", "name": "osd_memory_target"} : dispatch 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.001430+0000 mon.smithi050 (mon.0) 201 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:27.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.001430+0000 mon.smithi050 (mon.0) 201 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:27.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.003198+0000 mon.smithi050 (mon.0) 202 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:21:27.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.003198+0000 mon.smithi050 (mon.0) 202 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:21:27.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.005846+0000 mgr.smithi050.baqqjh (mgr.14203) 7 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.conf 2024-09-21T17:21:27.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.005846+0000 mgr.smithi050.baqqjh (mgr.14203) 7 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.conf 2024-09-21T17:21:27.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.006219+0000 mgr.smithi050.baqqjh (mgr.14203) 8 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.conf 2024-09-21T17:21:27.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.006219+0000 mgr.smithi050.baqqjh (mgr.14203) 8 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.conf 2024-09-21T17:21:27.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.145581+0000 mgr.smithi050.baqqjh (mgr.14203) 9 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:27.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.145581+0000 mgr.smithi050.baqqjh (mgr.14203) 9 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.150668+0000 mgr.smithi050.baqqjh (mgr.14203) 10 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.150668+0000 mgr.smithi050.baqqjh (mgr.14203) 10 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.236144+0000 mgr.smithi050.baqqjh (mgr.14203) 11 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.236144+0000 mgr.smithi050.baqqjh (mgr.14203) 11 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.247924+0000 mgr.smithi050.baqqjh (mgr.14203) 12 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.247924+0000 mgr.smithi050.baqqjh (mgr.14203) 12 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.320960+0000 mgr.smithi050.baqqjh (mgr.14203) 13 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.320960+0000 mgr.smithi050.baqqjh (mgr.14203) 13 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.340056+0000 mgr.smithi050.baqqjh (mgr.14203) 14 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.340056+0000 mgr.smithi050.baqqjh (mgr.14203) 14 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.408228+0000 mon.smithi050 (mon.0) 203 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.408228+0000 mon.smithi050 (mon.0) 203 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.412997+0000 mon.smithi050 (mon.0) 204 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.412997+0000 mon.smithi050 (mon.0) 204 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.428726+0000 mon.smithi050 (mon.0) 205 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.428726+0000 mon.smithi050 (mon.0) 205 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.432504+0000 mon.smithi050 (mon.0) 206 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.432504+0000 mon.smithi050 (mon.0) 206 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.436543+0000 mon.smithi050 (mon.0) 207 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.436543+0000 mon.smithi050 (mon.0) 207 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.439347+0000 mon.smithi050 (mon.0) 208 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.439347+0000 mon.smithi050 (mon.0) 208 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.440296+0000 mon.smithi050 (mon.0) 209 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.440296+0000 mon.smithi050 (mon.0) 209 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.442775+0000 mon.smithi050 (mon.0) 210 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: audit 2024-09-21T17:21:26.442775+0000 mon.smithi050 (mon.0) 210 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.444523+0000 mgr.smithi050.baqqjh (mgr.14203) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi170 on smithi170 2024-09-21T17:21:27.237 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:26 smithi050 bash[19920]: cephadm 2024-09-21T17:21:26.444523+0000 mgr.smithi050.baqqjh (mgr.14203) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi170 on smithi170 2024-09-21T17:21:28.658 INFO:teuthology.orchestra.run.smithi170.stderr:dumped monmap epoch 1 2024-09-21T17:21:28.658 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-09-21T17:21:28.658 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":1,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","modified":"2024-09-21T17:18:27.556920Z","created":"2024-09-21T17:18:27.556920Z","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":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T17:21:28.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:28 smithi050 bash[19920]: audit 2024-09-21T17:21:28.657728+0000 mon.smithi050 (mon.0) 211 : audit [DBG] from='client.? 172.21.15.170:0/395646281' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:28.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:28 smithi050 bash[19920]: audit 2024-09-21T17:21:28.657728+0000 mon.smithi050 (mon.0) 211 : audit [DBG] from='client.? 172.21.15.170:0/395646281' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:30.391 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T17:21:30.392 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T17:21:31.598 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:31.661 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.372430+0000 mon.smithi050 (mon.0) 212 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.661 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.372430+0000 mon.smithi050 (mon.0) 212 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.661 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.378542+0000 mon.smithi050 (mon.0) 213 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.378542+0000 mon.smithi050 (mon.0) 213 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.384829+0000 mon.smithi050 (mon.0) 214 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.384829+0000 mon.smithi050 (mon.0) 214 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.390674+0000 mon.smithi050 (mon.0) 215 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.390674+0000 mon.smithi050 (mon.0) 215 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.393550+0000 mon.smithi050 (mon.0) 216 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.393550+0000 mon.smithi050 (mon.0) 216 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.395357+0000 mon.smithi050 (mon.0) 217 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.395357+0000 mon.smithi050 (mon.0) 217 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.400123+0000 mon.smithi050 (mon.0) 218 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.400123+0000 mon.smithi050 (mon.0) 218 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: cephadm 2024-09-21T17:21:30.402098+0000 mgr.smithi050.baqqjh (mgr.14203) 16 : cephadm [INF] Deploying daemon crash.smithi170 on smithi170 2024-09-21T17:21:31.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: cephadm 2024-09-21T17:21:30.402098+0000 mgr.smithi050.baqqjh (mgr.14203) 16 : cephadm [INF] Deploying daemon crash.smithi170 on smithi170 2024-09-21T17:21:31.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.563952+0000 mon.smithi050 (mon.0) 219 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.563952+0000 mon.smithi050 (mon.0) 219 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:31.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.568043+0000 mon.smithi050 (mon.0) 220 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:31.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:31 smithi050 bash[19920]: audit 2024-09-21T17:21:30.568043+0000 mon.smithi050 (mon.0) 220 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:33.754 INFO:teuthology.orchestra.run.smithi170.stderr:dumped monmap epoch 1 2024-09-21T17:21:33.755 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-09-21T17:21:33.755 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":1,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","modified":"2024-09-21T17:18:27.556920Z","created":"2024-09-21T17:18:27.556920Z","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":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T17:21:34.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:33 smithi050 bash[19920]: audit 2024-09-21T17:21:33.754654+0000 mon.smithi050 (mon.0) 221 : audit [DBG] from='client.? 172.21.15.170:0/885099277' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:34.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:33 smithi050 bash[19920]: audit 2024-09-21T17:21:33.754654+0000 mon.smithi050 (mon.0) 221 : audit [DBG] from='client.? 172.21.15.170:0/885099277' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:35.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: audit 2024-09-21T17:21:34.124448+0000 mon.smithi050 (mon.0) 222 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:35.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: audit 2024-09-21T17:21:34.124448+0000 mon.smithi050 (mon.0) 222 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:35.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: audit 2024-09-21T17:21:34.130665+0000 mon.smithi050 (mon.0) 223 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:35.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: audit 2024-09-21T17:21:34.130665+0000 mon.smithi050 (mon.0) 223 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:35.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: audit 2024-09-21T17:21:34.136987+0000 mon.smithi050 (mon.0) 224 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:35.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: audit 2024-09-21T17:21:34.136987+0000 mon.smithi050 (mon.0) 224 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:35.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: audit 2024-09-21T17:21:34.142731+0000 mon.smithi050 (mon.0) 225 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:35.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: audit 2024-09-21T17:21:34.142731+0000 mon.smithi050 (mon.0) 225 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:35.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: cephadm 2024-09-21T17:21:34.145867+0000 mgr.smithi050.baqqjh (mgr.14203) 17 : cephadm [INF] Deploying daemon node-exporter.smithi170 on smithi170 2024-09-21T17:21:35.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:35 smithi050 bash[19920]: cephadm 2024-09-21T17:21:34.145867+0000 mgr.smithi050.baqqjh (mgr.14203) 17 : cephadm [INF] Deploying daemon node-exporter.smithi170 on smithi170 2024-09-21T17:21:35.779 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T17:21:35.780 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: cluster 2024-09-21T17:21:35.085275+0000 mgr.smithi050.baqqjh (mgr.14203) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: cluster 2024-09-21T17:21:35.085275+0000 mgr.smithi050.baqqjh (mgr.14203) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.478656+0000 mon.smithi050 (mon.0) 226 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.478656+0000 mon.smithi050 (mon.0) 226 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.484518+0000 mon.smithi050 (mon.0) 227 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.484518+0000 mon.smithi050 (mon.0) 227 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.490398+0000 mon.smithi050 (mon.0) 228 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.490398+0000 mon.smithi050 (mon.0) 228 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.495875+0000 mon.smithi050 (mon.0) 229 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.495875+0000 mon.smithi050 (mon.0) 229 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.500206+0000 mon.smithi050 (mon.0) 230 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.500206+0000 mon.smithi050 (mon.0) 230 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.501882+0000 mon.smithi050 (mon.0) 231 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.501882+0000 mon.smithi050 (mon.0) 231 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.506386+0000 mon.smithi050 (mon.0) 232 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.506386+0000 mon.smithi050 (mon.0) 232 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.508307+0000 mon.smithi050 (mon.0) 233 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.508307+0000 mon.smithi050 (mon.0) 233 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: cephadm 2024-09-21T17:21:35.510337+0000 mgr.smithi050.baqqjh (mgr.14203) 19 : cephadm [INF] Deploying daemon mgr.smithi170.lejafv on smithi170 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: cephadm 2024-09-21T17:21:35.510337+0000 mgr.smithi050.baqqjh (mgr.14203) 19 : cephadm [INF] Deploying daemon mgr.smithi170.lejafv on smithi170 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.570151+0000 mon.smithi050 (mon.0) 234 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:36.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:36 smithi050 bash[19920]: audit 2024-09-21T17:21:35.570151+0000 mon.smithi050 (mon.0) 234 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:38 smithi050 bash[19920]: cluster 2024-09-21T17:21:37.085706+0000 mgr.smithi050.baqqjh (mgr.14203) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:38 smithi050 bash[19920]: cluster 2024-09-21T17:21:37.085706+0000 mgr.smithi050.baqqjh (mgr.14203) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:39.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:39 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:21:40.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:38.986958+0000 mon.smithi050 (mon.0) 235 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:40.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:38.986958+0000 mon.smithi050 (mon.0) 235 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:40.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:38.993320+0000 mon.smithi050 (mon.0) 236 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:40.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:38.993320+0000 mon.smithi050 (mon.0) 236 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:40.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:38.999376+0000 mon.smithi050 (mon.0) 237 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:40.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:38.999376+0000 mon.smithi050 (mon.0) 237 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:40.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:39.005084+0000 mon.smithi050 (mon.0) 238 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:40.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:39.005084+0000 mon.smithi050 (mon.0) 238 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:40.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:39.008458+0000 mon.smithi050 (mon.0) 239 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:21:40.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:39.008458+0000 mon.smithi050 (mon.0) 239 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:21:40.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:39.010309+0000 mon.smithi050 (mon.0) 240 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:40.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: audit 2024-09-21T17:21:39.010309+0000 mon.smithi050 (mon.0) 240 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:40.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: cephadm 2024-09-21T17:21:39.012322+0000 mgr.smithi050.baqqjh (mgr.14203) 21 : cephadm [INF] Deploying daemon mon.smithi170 on smithi170 2024-09-21T17:21:40.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: cephadm 2024-09-21T17:21:39.012322+0000 mgr.smithi050.baqqjh (mgr.14203) 21 : cephadm [INF] Deploying daemon mon.smithi170 on smithi170 2024-09-21T17:21:40.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: cluster 2024-09-21T17:21:39.086098+0000 mgr.smithi050.baqqjh (mgr.14203) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:40.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:39 smithi050 bash[19920]: cluster 2024-09-21T17:21:39.086098+0000 mgr.smithi050.baqqjh (mgr.14203) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:40.488 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:41 smithi050 bash[19920]: audit 2024-09-21T17:21:40.576668+0000 mon.smithi050 (mon.0) 241 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:41 smithi050 bash[19920]: audit 2024-09-21T17:21:40.576668+0000 mon.smithi050 (mon.0) 241 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:42.342 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-09-21T17:21:42.342 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":1,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","modified":"2024-09-21T17:18:27.556920Z","created":"2024-09-21T17:18:27.556920Z","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":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T17:21:42.343 INFO:teuthology.orchestra.run.smithi170.stderr:dumped monmap epoch 1 2024-09-21T17:21:42.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:42 smithi050 bash[19920]: cluster 2024-09-21T17:21:41.086520+0000 mgr.smithi050.baqqjh (mgr.14203) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:42.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:42 smithi050 bash[19920]: cluster 2024-09-21T17:21:41.086520+0000 mgr.smithi050.baqqjh (mgr.14203) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:42.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:42 smithi050 bash[19920]: audit 2024-09-21T17:21:42.341736+0000 mon.smithi050 (mon.0) 242 : audit [DBG] from='client.? 172.21.15.170:0/21585079' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:42.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:42 smithi050 bash[19920]: audit 2024-09-21T17:21:42.341736+0000 mon.smithi050 (mon.0) 242 : audit [DBG] from='client.? 172.21.15.170:0/21585079' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:44.396 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T17:21:44.396 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T17:21:44.975 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:44 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:21:44.975 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:44 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:21:44.975 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:44 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:21:44.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:44 smithi050 bash[19920]: cluster 2024-09-21T17:21:43.086965+0000 mgr.smithi050.baqqjh (mgr.14203) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:44.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:44 smithi050 bash[19920]: cluster 2024-09-21T17:21:43.086965+0000 mgr.smithi050.baqqjh (mgr.14203) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:45.295 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:45 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:21:45.295 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:45 smithi170 systemd[1]: Started Ceph mon.smithi170 for 58e4c4c0-783d-11ef-baf6-efdc52797490. 2024-09-21T17:21:46.307 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.294+0000 7fe2167f1c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-21T17:21:46.307 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.294+0000 7fe2167f1c80 0 ceph version 19.3.0-5129-g0ecbb435 (0ecbb435437226bc091a0c2d4549ba25bf724efe) squid (dev), process ceph-mon, pid 7 2024-09-21T17:21:46.307 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.294+0000 7fe2167f1c80 0 pidfile_write: ignore empty --pid-file 2024-09-21T17:21:46.307 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 0 load: jerasure load: lrc 2024-09-21T17:21:46.307 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-21T17:21:46.307 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Git sha 0 2024-09-21T17:21:46.307 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Compile date 2024-09-21 14:38:11 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: DB SUMMARY 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: DB Session ID: LXL857ZU2VHSMVCBP5WW 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: CURRENT file: CURRENT 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi170/store.db dir, Total Num: 0, files: 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi170/store.db: 000004.log size: 511 ; 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.error_if_exists: 0 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.create_if_missing: 0 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.env: 0x556d09f16120 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-21T17:21:46.308 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.info_log: 0x556d0c70d8e0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.statistics: (nil) 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.use_fsync: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.db_log_dir: 2024-09-21T17:21:46.309 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.wal_dir: 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.write_buffer_manager: 0x556d0c711b80 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-21T17:21:46.310 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.unordered_write: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.row_cache: None 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.wal_filter: None 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.two_write_queues: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.wal_compression: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.atomic_flush: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-21T17:21:46.311 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-21T17:21:46.312 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-21T17:21:46.312 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-21T17:21:46.312 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-21T17:21:46.312 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-21T17:21:46.312 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-21T17:21:46.312 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-21T17:21:46.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_open_files: -1 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Compression algorithms supported: 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: kZSTD supported: 0 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: kXpressCompression supported: 0 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-21T17:21:46.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: kZlibCompression supported: 1 2024-09-21T17:21:46.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-21T17:21:46.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-21T17:21:46.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-21T17:21:46.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-21T17:21:46.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi170/store.db/MANIFEST-000005 2024-09-21T17:21:46.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-21T17:21:46.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.merge_operator: 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_filter: None 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x556d0c70d540) 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cache_index_and_filter_blocks: 1 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: pin_top_level_index_and_filter: 1 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: index_type: 0 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: data_block_index_type: 0 2024-09-21T17:21:46.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: index_shortening: 1 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: data_block_hash_table_util_ratio: 0.750000 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: checksum: 4 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: no_block_cache: 0 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: block_cache: 0x556d0c703610 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: block_cache_name: BinnedLRUCache 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: block_cache_options: 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: capacity : 536870912 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: num_shard_bits : 4 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: strict_capacity_limit : 0 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: high_pri_pool_ratio: 0.000 2024-09-21T17:21:46.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: block_cache_compressed: (nil) 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: persistent_cache: (nil) 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: block_size: 4096 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: block_size_deviation: 10 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: block_restart_interval: 16 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: index_block_restart_interval: 1 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: metadata_block_size: 4096 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: partition_filters: 0 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: use_delta_encoding: 1 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: filter_policy: bloomfilter 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: whole_key_filtering: 1 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: verify_compression: 0 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: read_amp_bytes_per_bit: 0 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: format_version: 5 2024-09-21T17:21:46.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: enable_index_compression: 1 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: block_align: 0 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: max_auto_readahead_size: 262144 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: prepopulate_block_cache: 0 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: initial_auto_readahead_size: 8192 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: num_file_reads_for_auto_readahead: 2 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression: NoCompression 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.num_levels: 7 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-21T17:21:46.615 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-21T17:21:46.616 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-21T17:21:46.617 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-21T17:21:46.618 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-21T17:21:46.620 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-21T17:21:46.620 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-21T17:21:46.620 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-21T17:21:46.620 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-21T17:21:46.620 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-21T17:21:46.620 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.bloom_locality: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-21T17:21:46.621 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.ttl: 2592000 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.enable_blob_files: false 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.min_blob_size: 0 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi170/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-21T17:21:46.622 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: a9741ebe-7e8c-4cfc-8265-de2b5c375c60 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726939306303893, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726939306304381, "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": 1726939306, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "a9741ebe-7e8c-4cfc-8265-de2b5c375c60", "db_session_id": "LXL857ZU2VHSMVCBP5WW", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726939306304496, "job": 1, "event": "recovery_finished"} 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.298+0000 7fe2167f1c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe2167f1c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi170/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe2167f1c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x556d0c730e00 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe2167f1c80 4 rocksdb: DB pointer 0x556d0c834000 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe2167f1c80 0 mon.smithi170 does not exist in monmap, will attempt to join an existing cluster 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe20c5b9640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe20c5b9640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: ** DB Stats ** 2024-09-21T17:21:46.623 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: 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-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: 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-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: ** Compaction Stats [default] ** 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: 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-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: ** Compaction Stats [default] ** 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: 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-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-21T17:21:46.624 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: AddFile(Total Files): cumulative 0, interval 0 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: AddFile(Keys): cumulative 0, interval 0 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Cumulative compaction: 0.00 GB write, 0.43 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Interval compaction: 0.00 GB write, 0.43 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: 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-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Block cache BinnedLRUCache@0x556d0c703610#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: 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-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: ** File Read Latency Histogram By Level [default] ** 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe2167f1c80 0 using public_addr v2:172.21.15.170:0/0 -> [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe2167f1c80 0 starting mon.smithi170 rank -1 at public addrs [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] at bind addrs [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi170 fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:21:46.625 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.302+0000 7fe2167f1c80 1 mon.smithi170@-1(???) e0 preinit fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 0 mon.smithi170@-1(synchronizing).mds e1 new map 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 0 mon.smithi170@-1(synchronizing).mds e1 print_map 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: e1 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: btime 2024-09-21T17:18:32:320237+0000 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: 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-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: legacy client fscid: -1 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: No filesystems configured 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 1 mon.smithi170@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 1 mon.smithi170@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 1 mon.smithi170@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 1 mon.smithi170@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 1 mon.smithi170@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-21T17:21:46.626 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 1 mon.smithi170@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 1 mon.smithi170@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 0 mon.smithi170@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 0 mon.smithi170@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 0 mon.smithi170@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.334+0000 7fe20f5bf640 0 mon.smithi170@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.541898+0000 mon.smithi050 (mon.0) 178 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.541898+0000 mon.smithi050 (mon.0) 178 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.563142+0000 mon.smithi050 (mon.0) 179 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.563142+0000 mon.smithi050 (mon.0) 179 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.567063+0000 mon.smithi050 (mon.0) 180 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.567063+0000 mon.smithi050 (mon.0) 180 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.567988+0000 mon.smithi050 (mon.0) 181 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.567988+0000 mon.smithi050 (mon.0) 181 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.582169+0000 mon.smithi050 (mon.0) 182 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.582169+0000 mon.smithi050 (mon.0) 182 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/mirror_snapshot_schedule"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.589636+0000 mon.smithi050 (mon.0) 183 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:21:46.627 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:15.589636+0000 mon.smithi050 (mon.0) 183 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi050.baqqjh/trash_purge_schedule"} : dispatch 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:16.084218+0000 mon.smithi050 (mon.0) 184 : cluster [DBG] mgrmap e17: smithi050.baqqjh(active, since 1.01366s) 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:16.084218+0000 mon.smithi050 (mon.0) 184 : cluster [DBG] mgrmap e17: smithi050.baqqjh(active, since 1.01366s) 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:16.086227+0000 mgr.smithi050.baqqjh (mgr.14203) 1 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:16.086227+0000 mgr.smithi050.baqqjh (mgr.14203) 1 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:16.482914+0000 mon.smithi050 (mon.0) 185 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:16.482914+0000 mon.smithi050 (mon.0) 185 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:17.066499+0000 mon.smithi050 (mon.0) 186 : audit [DBG] from='client.? 172.21.15.170:0/3208074652' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:17.066499+0000 mon.smithi050 (mon.0) 186 : audit [DBG] from='client.? 172.21.15.170:0/3208074652' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:17.491705+0000 mon.smithi050 (mon.0) 187 : cluster [DBG] mgrmap e18: smithi050.baqqjh(active, since 2s) 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:17.491705+0000 mon.smithi050 (mon.0) 187 : cluster [DBG] mgrmap e18: smithi050.baqqjh(active, since 2s) 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:18.637892+0000 mon.smithi050 (mon.0) 188 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:18.637892+0000 mon.smithi050 (mon.0) 188 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:18.885727+0000 mgr.smithi050.baqqjh (mgr.14203) 2 : cephadm [INF] [21/Sep/2024:17:21:18] ENGINE Bus STARTING 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:18.885727+0000 mgr.smithi050.baqqjh (mgr.14203) 2 : cephadm [INF] [21/Sep/2024:17:21:18] ENGINE Bus STARTING 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:18.987572+0000 mgr.smithi050.baqqjh (mgr.14203) 3 : cephadm [INF] [21/Sep/2024:17:21:18] ENGINE Serving on http://172.21.15.50:8765 2024-09-21T17:21:46.628 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:18.987572+0000 mgr.smithi050.baqqjh (mgr.14203) 3 : cephadm [INF] [21/Sep/2024:17:21:18] ENGINE Serving on http://172.21.15.50:8765 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:19.109869+0000 mgr.smithi050.baqqjh (mgr.14203) 4 : cephadm [INF] [21/Sep/2024:17:21:19] ENGINE Serving on https://172.21.15.50:7150 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:19.109869+0000 mgr.smithi050.baqqjh (mgr.14203) 4 : cephadm [INF] [21/Sep/2024:17:21:19] ENGINE Serving on https://172.21.15.50:7150 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:19.110106+0000 mgr.smithi050.baqqjh (mgr.14203) 5 : cephadm [INF] [21/Sep/2024:17:21:19] ENGINE Bus STARTED 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:19.110106+0000 mgr.smithi050.baqqjh (mgr.14203) 5 : cephadm [INF] [21/Sep/2024:17:21:19] ENGINE Bus STARTED 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:19.112304+0000 mgr.smithi050.baqqjh (mgr.14203) 6 : cephadm [ERR] [21/Sep/2024:17:21:19] ENGINE Error in HTTPServer.serve 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Traceback (most recent call last): 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: self._connections.run(self.expiration_interval) 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: self._run(expiration_interval) 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: s = self.context.wrap_socket( 2024-09-21T17:21:46.629 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: return self.sslsocket_class._create( 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: self.do_handshake() 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: self._sslobj.do_handshake() 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:19.112304+0000 mgr.smithi050.baqqjh (mgr.14203) 6 : cephadm [ERR] [21/Sep/2024:17:21:19] ENGINE Error in HTTPServer.serve 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: Traceback (most recent call last): 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: self._connections.run(self.expiration_interval) 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: self._run(expiration_interval) 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T17:21:46.630 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: s = self.context.wrap_socket( 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: return self.sslsocket_class._create( 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: self.do_handshake() 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: self._sslobj.do_handshake() 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:19.795093+0000 mon.smithi050 (mon.0) 189 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:19.795093+0000 mon.smithi050 (mon.0) 189 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:21.811315+0000 mon.smithi050 (mon.0) 190 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:21.811315+0000 mon.smithi050 (mon.0) 190 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:21.814197+0000 mon.smithi050 (mon.0) 191 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.631 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:21.814197+0000 mon.smithi050 (mon.0) 191 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:22.704291+0000 mon.smithi050 (mon.0) 192 : audit [DBG] from='client.? 172.21.15.170:0/268212874' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:22.704291+0000 mon.smithi050 (mon.0) 192 : audit [DBG] from='client.? 172.21.15.170:0/268212874' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:23.009293+0000 mon.smithi050 (mon.0) 193 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:23.009293+0000 mon.smithi050 (mon.0) 193 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:23.013716+0000 mon.smithi050 (mon.0) 194 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:23.013716+0000 mon.smithi050 (mon.0) 194 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:23.015644+0000 mon.smithi050 (mon.0) 195 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"} : dispatch 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:23.015644+0000 mon.smithi050 (mon.0) 195 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"} : dispatch 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.979585+0000 mon.smithi050 (mon.0) 196 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.979585+0000 mon.smithi050 (mon.0) 196 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.985171+0000 mon.smithi050 (mon.0) 197 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.985171+0000 mon.smithi050 (mon.0) 197 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.992236+0000 mon.smithi050 (mon.0) 198 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.992236+0000 mon.smithi050 (mon.0) 198 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.997562+0000 mon.smithi050 (mon.0) 199 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.997562+0000 mon.smithi050 (mon.0) 199 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.632 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.999248+0000 mon.smithi050 (mon.0) 200 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi170", "name": "osd_memory_target"} : dispatch 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:25.999248+0000 mon.smithi050 (mon.0) 200 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd/host:smithi170", "name": "osd_memory_target"} : dispatch 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.001430+0000 mon.smithi050 (mon.0) 201 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.001430+0000 mon.smithi050 (mon.0) 201 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.003198+0000 mon.smithi050 (mon.0) 202 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.003198+0000 mon.smithi050 (mon.0) 202 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.005846+0000 mgr.smithi050.baqqjh (mgr.14203) 7 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.conf 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.005846+0000 mgr.smithi050.baqqjh (mgr.14203) 7 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.conf 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.006219+0000 mgr.smithi050.baqqjh (mgr.14203) 8 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.conf 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.006219+0000 mgr.smithi050.baqqjh (mgr.14203) 8 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.conf 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.145581+0000 mgr.smithi050.baqqjh (mgr.14203) 9 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.145581+0000 mgr.smithi050.baqqjh (mgr.14203) 9 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.150668+0000 mgr.smithi050.baqqjh (mgr.14203) 10 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.150668+0000 mgr.smithi050.baqqjh (mgr.14203) 10 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.236144+0000 mgr.smithi050.baqqjh (mgr.14203) 11 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.236144+0000 mgr.smithi050.baqqjh (mgr.14203) 11 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:21:46.633 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.247924+0000 mgr.smithi050.baqqjh (mgr.14203) 12 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.247924+0000 mgr.smithi050.baqqjh (mgr.14203) 12 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.320960+0000 mgr.smithi050.baqqjh (mgr.14203) 13 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.320960+0000 mgr.smithi050.baqqjh (mgr.14203) 13 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.340056+0000 mgr.smithi050.baqqjh (mgr.14203) 14 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.340056+0000 mgr.smithi050.baqqjh (mgr.14203) 14 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.408228+0000 mon.smithi050 (mon.0) 203 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.408228+0000 mon.smithi050 (mon.0) 203 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.412997+0000 mon.smithi050 (mon.0) 204 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.412997+0000 mon.smithi050 (mon.0) 204 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.428726+0000 mon.smithi050 (mon.0) 205 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.428726+0000 mon.smithi050 (mon.0) 205 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.432504+0000 mon.smithi050 (mon.0) 206 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.432504+0000 mon.smithi050 (mon.0) 206 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.436543+0000 mon.smithi050 (mon.0) 207 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.436543+0000 mon.smithi050 (mon.0) 207 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.634 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.439347+0000 mon.smithi050 (mon.0) 208 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.439347+0000 mon.smithi050 (mon.0) 208 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.440296+0000 mon.smithi050 (mon.0) 209 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.440296+0000 mon.smithi050 (mon.0) 209 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.442775+0000 mon.smithi050 (mon.0) 210 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:26.442775+0000 mon.smithi050 (mon.0) 210 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.444523+0000 mgr.smithi050.baqqjh (mgr.14203) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi170 on smithi170 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:26.444523+0000 mgr.smithi050.baqqjh (mgr.14203) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi170 on smithi170 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:28.657728+0000 mon.smithi050 (mon.0) 211 : audit [DBG] from='client.? 172.21.15.170:0/395646281' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:28.657728+0000 mon.smithi050 (mon.0) 211 : audit [DBG] from='client.? 172.21.15.170:0/395646281' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.372430+0000 mon.smithi050 (mon.0) 212 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.372430+0000 mon.smithi050 (mon.0) 212 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.378542+0000 mon.smithi050 (mon.0) 213 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.378542+0000 mon.smithi050 (mon.0) 213 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.384829+0000 mon.smithi050 (mon.0) 214 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.635 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.384829+0000 mon.smithi050 (mon.0) 214 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.390674+0000 mon.smithi050 (mon.0) 215 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.390674+0000 mon.smithi050 (mon.0) 215 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.393550+0000 mon.smithi050 (mon.0) 216 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.393550+0000 mon.smithi050 (mon.0) 216 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.395357+0000 mon.smithi050 (mon.0) 217 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.395357+0000 mon.smithi050 (mon.0) 217 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.400123+0000 mon.smithi050 (mon.0) 218 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.400123+0000 mon.smithi050 (mon.0) 218 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:30.402098+0000 mgr.smithi050.baqqjh (mgr.14203) 16 : cephadm [INF] Deploying daemon crash.smithi170 on smithi170 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:30.402098+0000 mgr.smithi050.baqqjh (mgr.14203) 16 : cephadm [INF] Deploying daemon crash.smithi170 on smithi170 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.563952+0000 mon.smithi050 (mon.0) 219 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.563952+0000 mon.smithi050 (mon.0) 219 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.568043+0000 mon.smithi050 (mon.0) 220 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:30.568043+0000 mon.smithi050 (mon.0) 220 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:46.636 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:33.754654+0000 mon.smithi050 (mon.0) 221 : audit [DBG] from='client.? 172.21.15.170:0/885099277' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:33.754654+0000 mon.smithi050 (mon.0) 221 : audit [DBG] from='client.? 172.21.15.170:0/885099277' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:34.124448+0000 mon.smithi050 (mon.0) 222 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:34.124448+0000 mon.smithi050 (mon.0) 222 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:34.130665+0000 mon.smithi050 (mon.0) 223 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:34.130665+0000 mon.smithi050 (mon.0) 223 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:34.136987+0000 mon.smithi050 (mon.0) 224 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:34.136987+0000 mon.smithi050 (mon.0) 224 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:34.142731+0000 mon.smithi050 (mon.0) 225 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:34.142731+0000 mon.smithi050 (mon.0) 225 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:34.145867+0000 mgr.smithi050.baqqjh (mgr.14203) 17 : cephadm [INF] Deploying daemon node-exporter.smithi170 on smithi170 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:34.145867+0000 mgr.smithi050.baqqjh (mgr.14203) 17 : cephadm [INF] Deploying daemon node-exporter.smithi170 on smithi170 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:35.085275+0000 mgr.smithi050.baqqjh (mgr.14203) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:35.085275+0000 mgr.smithi050.baqqjh (mgr.14203) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.478656+0000 mon.smithi050 (mon.0) 226 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.478656+0000 mon.smithi050 (mon.0) 226 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.637 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.484518+0000 mon.smithi050 (mon.0) 227 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.484518+0000 mon.smithi050 (mon.0) 227 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.490398+0000 mon.smithi050 (mon.0) 228 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.490398+0000 mon.smithi050 (mon.0) 228 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.495875+0000 mon.smithi050 (mon.0) 229 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.495875+0000 mon.smithi050 (mon.0) 229 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.500206+0000 mon.smithi050 (mon.0) 230 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.500206+0000 mon.smithi050 (mon.0) 230 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.501882+0000 mon.smithi050 (mon.0) 231 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.501882+0000 mon.smithi050 (mon.0) 231 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.506386+0000 mon.smithi050 (mon.0) 232 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.506386+0000 mon.smithi050 (mon.0) 232 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.508307+0000 mon.smithi050 (mon.0) 233 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.508307+0000 mon.smithi050 (mon.0) 233 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:35.510337+0000 mgr.smithi050.baqqjh (mgr.14203) 19 : cephadm [INF] Deploying daemon mgr.smithi170.lejafv on smithi170 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:35.510337+0000 mgr.smithi050.baqqjh (mgr.14203) 19 : cephadm [INF] Deploying daemon mgr.smithi170.lejafv on smithi170 2024-09-21T17:21:46.638 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.570151+0000 mon.smithi050 (mon.0) 234 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:35.570151+0000 mon.smithi050 (mon.0) 234 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:37.085706+0000 mgr.smithi050.baqqjh (mgr.14203) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:37.085706+0000 mgr.smithi050.baqqjh (mgr.14203) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:38.986958+0000 mon.smithi050 (mon.0) 235 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:38.986958+0000 mon.smithi050 (mon.0) 235 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:38.993320+0000 mon.smithi050 (mon.0) 236 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:38.993320+0000 mon.smithi050 (mon.0) 236 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:38.999376+0000 mon.smithi050 (mon.0) 237 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:38.999376+0000 mon.smithi050 (mon.0) 237 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:39.005084+0000 mon.smithi050 (mon.0) 238 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:39.005084+0000 mon.smithi050 (mon.0) 238 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:39.008458+0000 mon.smithi050 (mon.0) 239 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:39.008458+0000 mon.smithi050 (mon.0) 239 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:39.010309+0000 mon.smithi050 (mon.0) 240 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.639 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:39.010309+0000 mon.smithi050 (mon.0) 240 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:39.012322+0000 mgr.smithi050.baqqjh (mgr.14203) 21 : cephadm [INF] Deploying daemon mon.smithi170 on smithi170 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cephadm 2024-09-21T17:21:39.012322+0000 mgr.smithi050.baqqjh (mgr.14203) 21 : cephadm [INF] Deploying daemon mon.smithi170 on smithi170 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:39.086098+0000 mgr.smithi050.baqqjh (mgr.14203) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:39.086098+0000 mgr.smithi050.baqqjh (mgr.14203) 22 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:40.576668+0000 mon.smithi050 (mon.0) 241 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:40.576668+0000 mon.smithi050 (mon.0) 241 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:41.086520+0000 mgr.smithi050.baqqjh (mgr.14203) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:41.086520+0000 mgr.smithi050.baqqjh (mgr.14203) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:42.341736+0000 mon.smithi050 (mon.0) 242 : audit [DBG] from='client.? 172.21.15.170:0/21585079' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:42.341736+0000 mon.smithi050 (mon.0) 242 : audit [DBG] from='client.? 172.21.15.170:0/21585079' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:43.086965+0000 mgr.smithi050.baqqjh (mgr.14203) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:43.086965+0000 mgr.smithi050.baqqjh (mgr.14203) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.640 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:45.087398+0000 mgr.smithi050.baqqjh (mgr.14203) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: cluster 2024-09-21T17:21:45.087398+0000 mgr.smithi050.baqqjh (mgr.14203) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.243078+0000 mon.smithi050 (mon.0) 243 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.243078+0000 mon.smithi050 (mon.0) 243 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.249231+0000 mon.smithi050 (mon.0) 244 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.249231+0000 mon.smithi050 (mon.0) 244 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.255181+0000 mon.smithi050 (mon.0) 245 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.255181+0000 mon.smithi050 (mon.0) 245 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.260986+0000 mon.smithi050 (mon.0) 246 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.260986+0000 mon.smithi050 (mon.0) 246 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.270593+0000 mon.smithi050 (mon.0) 247 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.270593+0000 mon.smithi050 (mon.0) 247 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.302958+0000 mon.smithi050 (mon.0) 248 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.302958+0000 mon.smithi050 (mon.0) 248 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.568446+0000 mon.smithi050 (mon.0) 249 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.568446+0000 mon.smithi050 (mon.0) 249 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.598021+0000 mon.smithi050 (mon.0) 250 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.641 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: audit 2024-09-21T17:21:45.598021+0000 mon.smithi050 (mon.0) 250 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.642 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:46 smithi170 bash[24572]: debug 2024-09-21T17:21:46.338+0000 7fe20f5bf640 1 mon.smithi170@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: cluster 2024-09-21T17:21:45.087398+0000 mgr.smithi050.baqqjh (mgr.14203) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: cluster 2024-09-21T17:21:45.087398+0000 mgr.smithi050.baqqjh (mgr.14203) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.243078+0000 mon.smithi050 (mon.0) 243 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.243078+0000 mon.smithi050 (mon.0) 243 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.249231+0000 mon.smithi050 (mon.0) 244 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.249231+0000 mon.smithi050 (mon.0) 244 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.255181+0000 mon.smithi050 (mon.0) 245 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.255181+0000 mon.smithi050 (mon.0) 245 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.260986+0000 mon.smithi050 (mon.0) 246 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.260986+0000 mon.smithi050 (mon.0) 246 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.270593+0000 mon.smithi050 (mon.0) 247 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.270593+0000 mon.smithi050 (mon.0) 247 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.302958+0000 mon.smithi050 (mon.0) 248 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.302958+0000 mon.smithi050 (mon.0) 248 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.568446+0000 mon.smithi050 (mon.0) 249 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.568446+0000 mon.smithi050 (mon.0) 249 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.598021+0000 mon.smithi050 (mon.0) 250 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:46 smithi050 bash[19920]: audit 2024-09-21T17:21:45.598021+0000 mon.smithi050 (mon.0) 250 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:50.153 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi170/config 2024-09-21T17:21:51.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:46.349603+0000 mon.smithi050 (mon.0) 251 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:46.349603+0000 mon.smithi050 (mon.0) 251 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:46.354562+0000 mon.smithi050 (mon.0) 252 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:21:51.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:46.354562+0000 mon.smithi050 (mon.0) 252 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:21:51.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:46.354936+0000 mon.smithi050 (mon.0) 253 : cluster [INF] mon.smithi050 calling monitor election 2024-09-21T17:21:51.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:46.354936+0000 mon.smithi050 (mon.0) 253 : cluster [INF] mon.smithi050 calling monitor election 2024-09-21T17:21:51.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:46.373017+0000 mon.smithi050 (mon.0) 254 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:46.373017+0000 mon.smithi050 (mon.0) 254 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:47.087913+0000 mgr.smithi050.baqqjh (mgr.14203) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:47.087913+0000 mgr.smithi050.baqqjh (mgr.14203) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:47.349924+0000 mon.smithi050 (mon.0) 255 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:47.349924+0000 mon.smithi050 (mon.0) 255 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:47.735217+0000 mon.smithi050 (mon.0) 256 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi170.lejafv/crt"} : dispatch 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:47.735217+0000 mon.smithi050 (mon.0) 256 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi170.lejafv/crt"} : dispatch 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:48.350077+0000 mon.smithi050 (mon.0) 257 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:48.350077+0000 mon.smithi050 (mon.0) 257 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:48.350861+0000 mon.smithi170 (mon.1) 1 : cluster [INF] mon.smithi170 calling monitor election 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:48.350861+0000 mon.smithi170 (mon.1) 1 : cluster [INF] mon.smithi170 calling monitor election 2024-09-21T17:21:51.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:49.088331+0000 mgr.smithi050.baqqjh (mgr.14203) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:49.088331+0000 mgr.smithi050.baqqjh (mgr.14203) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:49.350084+0000 mon.smithi050 (mon.0) 258 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:49.350084+0000 mon.smithi050 (mon.0) 258 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:50.349771+0000 mon.smithi050 (mon.0) 259 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:50.349771+0000 mon.smithi050 (mon.0) 259 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.349760+0000 mon.smithi050 (mon.0) 260 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.349760+0000 mon.smithi050 (mon.0) 260 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.399443+0000 mon.smithi050 (mon.0) 261 : cluster [INF] mon.smithi050 is new leader, mons smithi050,smithi170 in quorum (ranks 0,1) 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.399443+0000 mon.smithi050 (mon.0) 261 : cluster [INF] mon.smithi050 is new leader, mons smithi050,smithi170 in quorum (ranks 0,1) 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405065+0000 mon.smithi050 (mon.0) 262 : cluster [DBG] monmap epoch 2 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405065+0000 mon.smithi050 (mon.0) 262 : cluster [DBG] monmap epoch 2 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405097+0000 mon.smithi050 (mon.0) 263 : cluster [DBG] fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405097+0000 mon.smithi050 (mon.0) 263 : cluster [DBG] fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:21:51.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405115+0000 mon.smithi050 (mon.0) 264 : cluster [DBG] last_changed 2024-09-21T17:21:46.349017+0000 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405115+0000 mon.smithi050 (mon.0) 264 : cluster [DBG] last_changed 2024-09-21T17:21:46.349017+0000 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405135+0000 mon.smithi050 (mon.0) 265 : cluster [DBG] created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405135+0000 mon.smithi050 (mon.0) 265 : cluster [DBG] created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405161+0000 mon.smithi050 (mon.0) 266 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405161+0000 mon.smithi050 (mon.0) 266 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405182+0000 mon.smithi050 (mon.0) 267 : cluster [DBG] election_strategy: 1 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405182+0000 mon.smithi050 (mon.0) 267 : cluster [DBG] election_strategy: 1 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405203+0000 mon.smithi050 (mon.0) 268 : cluster [DBG] 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405203+0000 mon.smithi050 (mon.0) 268 : cluster [DBG] 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405226+0000 mon.smithi050 (mon.0) 269 : cluster [DBG] 1: [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] mon.smithi170 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.405226+0000 mon.smithi050 (mon.0) 269 : cluster [DBG] 1: [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] mon.smithi170 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.424724+0000 mon.smithi050 (mon.0) 270 : cluster [DBG] fsmap 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.424724+0000 mon.smithi050 (mon.0) 270 : cluster [DBG] fsmap 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.424776+0000 mon.smithi050 (mon.0) 271 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T17:21:51.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.424776+0000 mon.smithi050 (mon.0) 271 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.425057+0000 mon.smithi050 (mon.0) 272 : cluster [DBG] mgrmap e18: smithi050.baqqjh(active, since 36s) 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.425057+0000 mon.smithi050 (mon.0) 272 : cluster [DBG] mgrmap e18: smithi050.baqqjh(active, since 36s) 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.425305+0000 mon.smithi050 (mon.0) 273 : cluster [INF] overall HEALTH_OK 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.425305+0000 mon.smithi050 (mon.0) 273 : cluster [INF] overall HEALTH_OK 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.426037+0000 mon.smithi050 (mon.0) 274 : cluster [DBG] Standby manager daemon smithi170.lejafv started 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.426037+0000 mon.smithi050 (mon.0) 274 : cluster [DBG] Standby manager daemon smithi170.lejafv started 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.432919+0000 mon.smithi050 (mon.0) 275 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.432919+0000 mon.smithi050 (mon.0) 275 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.434133+0000 mon.smithi050 (mon.0) 276 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.434133+0000 mon.smithi050 (mon.0) 276 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.437058+0000 mon.smithi050 (mon.0) 277 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi170.lejafv/key"} : dispatch 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.437058+0000 mon.smithi050 (mon.0) 277 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi170.lejafv/key"} : dispatch 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.437848+0000 mon.smithi050 (mon.0) 278 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.437848+0000 mon.smithi050 (mon.0) 278 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-21T17:21:51.613 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.441484+0000 mon.smithi050 (mon.0) 279 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:51.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.441484+0000 mon.smithi050 (mon.0) 279 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:51.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.443921+0000 mon.smithi050 (mon.0) 280 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:51.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.443921+0000 mon.smithi050 (mon.0) 280 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:51.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.458745+0000 mon.smithi050 (mon.0) 281 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:21:51.614 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:51 smithi170 bash[24572]: audit 2024-09-21T17:21:51.458745+0000 mon.smithi050 (mon.0) 281 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:21:51.729 INFO:teuthology.orchestra.run.smithi170.stderr:dumped monmap epoch 2 2024-09-21T17:21:51.729 INFO:teuthology.orchestra.run.smithi170.stdout: 2024-09-21T17:21:51.729 INFO:teuthology.orchestra.run.smithi170.stdout:{"epoch":2,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","modified":"2024-09-21T17:21:46.349017Z","created":"2024-09-21T17:18:27.556920Z","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":"smithi050","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi170","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:3300","nonce":0},{"type":"v1","addr":"172.21.15.170:6789","nonce":0}]},"addr":"172.21.15.170:6789/0","public_addr":"172.21.15.170:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-21T17:21:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:46.349603+0000 mon.smithi050 (mon.0) 251 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:46.349603+0000 mon.smithi050 (mon.0) 251 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:46.354562+0000 mon.smithi050 (mon.0) 252 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:21:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:46.354562+0000 mon.smithi050 (mon.0) 252 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:21:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:46.354936+0000 mon.smithi050 (mon.0) 253 : cluster [INF] mon.smithi050 calling monitor election 2024-09-21T17:21:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:46.354936+0000 mon.smithi050 (mon.0) 253 : cluster [INF] mon.smithi050 calling monitor election 2024-09-21T17:21:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:46.373017+0000 mon.smithi050 (mon.0) 254 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:46.373017+0000 mon.smithi050 (mon.0) 254 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:47.087913+0000 mgr.smithi050.baqqjh (mgr.14203) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:47.087913+0000 mgr.smithi050.baqqjh (mgr.14203) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:47.349924+0000 mon.smithi050 (mon.0) 255 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:47.349924+0000 mon.smithi050 (mon.0) 255 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:47.735217+0000 mon.smithi050 (mon.0) 256 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi170.lejafv/crt"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:47.735217+0000 mon.smithi050 (mon.0) 256 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi170.lejafv/crt"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:48.350077+0000 mon.smithi050 (mon.0) 257 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:48.350077+0000 mon.smithi050 (mon.0) 257 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:48.350861+0000 mon.smithi170 (mon.1) 1 : cluster [INF] mon.smithi170 calling monitor election 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:48.350861+0000 mon.smithi170 (mon.1) 1 : cluster [INF] mon.smithi170 calling monitor election 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:49.088331+0000 mgr.smithi050.baqqjh (mgr.14203) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:49.088331+0000 mgr.smithi050.baqqjh (mgr.14203) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:49.350084+0000 mon.smithi050 (mon.0) 258 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:49.350084+0000 mon.smithi050 (mon.0) 258 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:50.349771+0000 mon.smithi050 (mon.0) 259 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:50.349771+0000 mon.smithi050 (mon.0) 259 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.349760+0000 mon.smithi050 (mon.0) 260 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.349760+0000 mon.smithi050 (mon.0) 260 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.399443+0000 mon.smithi050 (mon.0) 261 : cluster [INF] mon.smithi050 is new leader, mons smithi050,smithi170 in quorum (ranks 0,1) 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.399443+0000 mon.smithi050 (mon.0) 261 : cluster [INF] mon.smithi050 is new leader, mons smithi050,smithi170 in quorum (ranks 0,1) 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405065+0000 mon.smithi050 (mon.0) 262 : cluster [DBG] monmap epoch 2 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405065+0000 mon.smithi050 (mon.0) 262 : cluster [DBG] monmap epoch 2 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405097+0000 mon.smithi050 (mon.0) 263 : cluster [DBG] fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405097+0000 mon.smithi050 (mon.0) 263 : cluster [DBG] fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405115+0000 mon.smithi050 (mon.0) 264 : cluster [DBG] last_changed 2024-09-21T17:21:46.349017+0000 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405115+0000 mon.smithi050 (mon.0) 264 : cluster [DBG] last_changed 2024-09-21T17:21:46.349017+0000 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405135+0000 mon.smithi050 (mon.0) 265 : cluster [DBG] created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405135+0000 mon.smithi050 (mon.0) 265 : cluster [DBG] created 2024-09-21T17:18:27.556920+0000 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405161+0000 mon.smithi050 (mon.0) 266 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405161+0000 mon.smithi050 (mon.0) 266 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405182+0000 mon.smithi050 (mon.0) 267 : cluster [DBG] election_strategy: 1 2024-09-21T17:21:51.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405182+0000 mon.smithi050 (mon.0) 267 : cluster [DBG] election_strategy: 1 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405203+0000 mon.smithi050 (mon.0) 268 : cluster [DBG] 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405203+0000 mon.smithi050 (mon.0) 268 : cluster [DBG] 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.smithi050 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405226+0000 mon.smithi050 (mon.0) 269 : cluster [DBG] 1: [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] mon.smithi170 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.405226+0000 mon.smithi050 (mon.0) 269 : cluster [DBG] 1: [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] mon.smithi170 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.424724+0000 mon.smithi050 (mon.0) 270 : cluster [DBG] fsmap 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.424724+0000 mon.smithi050 (mon.0) 270 : cluster [DBG] fsmap 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.424776+0000 mon.smithi050 (mon.0) 271 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.424776+0000 mon.smithi050 (mon.0) 271 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.425057+0000 mon.smithi050 (mon.0) 272 : cluster [DBG] mgrmap e18: smithi050.baqqjh(active, since 36s) 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.425057+0000 mon.smithi050 (mon.0) 272 : cluster [DBG] mgrmap e18: smithi050.baqqjh(active, since 36s) 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.425305+0000 mon.smithi050 (mon.0) 273 : cluster [INF] overall HEALTH_OK 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.425305+0000 mon.smithi050 (mon.0) 273 : cluster [INF] overall HEALTH_OK 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.426037+0000 mon.smithi050 (mon.0) 274 : cluster [DBG] Standby manager daemon smithi170.lejafv started 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.426037+0000 mon.smithi050 (mon.0) 274 : cluster [DBG] Standby manager daemon smithi170.lejafv started 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.432919+0000 mon.smithi050 (mon.0) 275 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:51.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.432919+0000 mon.smithi050 (mon.0) 275 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.434133+0000 mon.smithi050 (mon.0) 276 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.434133+0000 mon.smithi050 (mon.0) 276 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.437058+0000 mon.smithi050 (mon.0) 277 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi170.lejafv/key"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.437058+0000 mon.smithi050 (mon.0) 277 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi170.lejafv/key"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.437848+0000 mon.smithi050 (mon.0) 278 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.437848+0000 mon.smithi050 (mon.0) 278 : audit [DBG] from='mgr.? 172.21.15.170:0/1405649684' entity='mgr.smithi170.lejafv' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.441484+0000 mon.smithi050 (mon.0) 279 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.441484+0000 mon.smithi050 (mon.0) 279 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.443921+0000 mon.smithi050 (mon.0) 280 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.443921+0000 mon.smithi050 (mon.0) 280 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.458745+0000 mon.smithi050 (mon.0) 281 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:21:51.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:51 smithi050 bash[19920]: audit 2024-09-21T17:21:51.458745+0000 mon.smithi050 (mon.0) 281 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:21:52.353 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-21T17:21:52.353 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph config generate-minimal-conf 2024-09-21T17:21:52.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.088702+0000 mgr.smithi050.baqqjh (mgr.14203) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:52.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.088702+0000 mgr.smithi050.baqqjh (mgr.14203) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.461110+0000 mgr.smithi050.baqqjh (mgr.14203) 29 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.conf 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.461110+0000 mgr.smithi050.baqqjh (mgr.14203) 29 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.conf 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.461648+0000 mgr.smithi050.baqqjh (mgr.14203) 30 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.conf 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.461648+0000 mgr.smithi050.baqqjh (mgr.14203) 30 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.conf 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.500118+0000 mon.smithi050 (mon.0) 282 : cluster [DBG] mgrmap e19: smithi050.baqqjh(active, since 36s), standbys: smithi170.lejafv 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cluster 2024-09-21T17:21:51.500118+0000 mon.smithi050 (mon.0) 282 : cluster [DBG] mgrmap e19: smithi050.baqqjh(active, since 36s), standbys: smithi170.lejafv 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.500773+0000 mon.smithi050 (mon.0) 283 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi170.lejafv", "id": "smithi170.lejafv"} : dispatch 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.500773+0000 mon.smithi050 (mon.0) 283 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi170.lejafv", "id": "smithi170.lejafv"} : dispatch 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.621917+0000 mgr.smithi050.baqqjh (mgr.14203) 31 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.621917+0000 mgr.smithi050.baqqjh (mgr.14203) 31 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.622235+0000 mgr.smithi050.baqqjh (mgr.14203) 32 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.622235+0000 mgr.smithi050.baqqjh (mgr.14203) 32 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:52.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.712874+0000 mon.smithi050 (mon.0) 284 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.712874+0000 mon.smithi050 (mon.0) 284 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.718783+0000 mon.smithi050 (mon.0) 285 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.718783+0000 mon.smithi050 (mon.0) 285 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.722626+0000 mon.smithi050 (mon.0) 286 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.722626+0000 mon.smithi050 (mon.0) 286 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.728050+0000 mon.smithi050 (mon.0) 287 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.728050+0000 mon.smithi050 (mon.0) 287 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.728565+0000 mon.smithi050 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.170:0/4106196176' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.728565+0000 mon.smithi050 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.170:0/4106196176' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.732813+0000 mon.smithi050 (mon.0) 289 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.732813+0000 mon.smithi050 (mon.0) 289 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.758579+0000 mon.smithi050 (mon.0) 290 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.758579+0000 mon.smithi050 (mon.0) 290 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.759642+0000 mon.smithi050 (mon.0) 291 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T17:21:52.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.759642+0000 mon.smithi050 (mon.0) 291 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T17:21:52.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.760693+0000 mon.smithi050 (mon.0) 292 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:52.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:51.760693+0000 mon.smithi050 (mon.0) 292 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:52.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:52.350595+0000 mon.smithi050 (mon.0) 293 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:52.612 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:52 smithi170 bash[24572]: audit 2024-09-21T17:21:52.350595+0000 mon.smithi050 (mon.0) 293 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:52.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.088702+0000 mgr.smithi050.baqqjh (mgr.14203) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:52.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.088702+0000 mgr.smithi050.baqqjh (mgr.14203) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:52.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.461110+0000 mgr.smithi050.baqqjh (mgr.14203) 29 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.conf 2024-09-21T17:21:52.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.461110+0000 mgr.smithi050.baqqjh (mgr.14203) 29 : cephadm [INF] Updating smithi050:/etc/ceph/ceph.conf 2024-09-21T17:21:52.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.461648+0000 mgr.smithi050.baqqjh (mgr.14203) 30 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.conf 2024-09-21T17:21:52.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.461648+0000 mgr.smithi050.baqqjh (mgr.14203) 30 : cephadm [INF] Updating smithi170:/etc/ceph/ceph.conf 2024-09-21T17:21:52.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.500118+0000 mon.smithi050 (mon.0) 282 : cluster [DBG] mgrmap e19: smithi050.baqqjh(active, since 36s), standbys: smithi170.lejafv 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cluster 2024-09-21T17:21:51.500118+0000 mon.smithi050 (mon.0) 282 : cluster [DBG] mgrmap e19: smithi050.baqqjh(active, since 36s), standbys: smithi170.lejafv 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.500773+0000 mon.smithi050 (mon.0) 283 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi170.lejafv", "id": "smithi170.lejafv"} : dispatch 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.500773+0000 mon.smithi050 (mon.0) 283 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr metadata", "who": "smithi170.lejafv", "id": "smithi170.lejafv"} : dispatch 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.621917+0000 mgr.smithi050.baqqjh (mgr.14203) 31 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.621917+0000 mgr.smithi050.baqqjh (mgr.14203) 31 : cephadm [INF] Updating smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.622235+0000 mgr.smithi050.baqqjh (mgr.14203) 32 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.622235+0000 mgr.smithi050.baqqjh (mgr.14203) 32 : cephadm [INF] Updating smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.712874+0000 mon.smithi050 (mon.0) 284 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.712874+0000 mon.smithi050 (mon.0) 284 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.718783+0000 mon.smithi050 (mon.0) 285 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.718783+0000 mon.smithi050 (mon.0) 285 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.722626+0000 mon.smithi050 (mon.0) 286 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.722626+0000 mon.smithi050 (mon.0) 286 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.728050+0000 mon.smithi050 (mon.0) 287 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.728050+0000 mon.smithi050 (mon.0) 287 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.728565+0000 mon.smithi050 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.170:0/4106196176' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.728565+0000 mon.smithi050 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.170:0/4106196176' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T17:21:52.737 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.732813+0000 mon.smithi050 (mon.0) 289 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.732813+0000 mon.smithi050 (mon.0) 289 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.758579+0000 mon.smithi050 (mon.0) 290 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.758579+0000 mon.smithi050 (mon.0) 290 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.759642+0000 mon.smithi050 (mon.0) 291 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.759642+0000 mon.smithi050 (mon.0) 291 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.760693+0000 mon.smithi050 (mon.0) 292 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:51.760693+0000 mon.smithi050 (mon.0) 292 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:52.350595+0000 mon.smithi050 (mon.0) 293 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:52.738 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:52 smithi050 bash[19920]: audit 2024-09-21T17:21:52.350595+0000 mon.smithi050 (mon.0) 293 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:21:53.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:53 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.758141+0000 mgr.smithi050.baqqjh (mgr.14203) 33 : cephadm [INF] Reconfiguring mon.smithi050 (unknown last config time)... 2024-09-21T17:21:53.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:53 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.758141+0000 mgr.smithi050.baqqjh (mgr.14203) 33 : cephadm [INF] Reconfiguring mon.smithi050 (unknown last config time)... 2024-09-21T17:21:53.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:53 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.761731+0000 mgr.smithi050.baqqjh (mgr.14203) 34 : cephadm [INF] Reconfiguring daemon mon.smithi050 on smithi050 2024-09-21T17:21:53.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:53 smithi050 bash[19920]: cephadm 2024-09-21T17:21:51.761731+0000 mgr.smithi050.baqqjh (mgr.14203) 34 : cephadm [INF] Reconfiguring daemon mon.smithi050 on smithi050 2024-09-21T17:21:53.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:53 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.758141+0000 mgr.smithi050.baqqjh (mgr.14203) 33 : cephadm [INF] Reconfiguring mon.smithi050 (unknown last config time)... 2024-09-21T17:21:53.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:53 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.758141+0000 mgr.smithi050.baqqjh (mgr.14203) 33 : cephadm [INF] Reconfiguring mon.smithi050 (unknown last config time)... 2024-09-21T17:21:53.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:53 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.761731+0000 mgr.smithi050.baqqjh (mgr.14203) 34 : cephadm [INF] Reconfiguring daemon mon.smithi050 on smithi050 2024-09-21T17:21:53.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:53 smithi170 bash[24572]: cephadm 2024-09-21T17:21:51.761731+0000 mgr.smithi050.baqqjh (mgr.14203) 34 : cephadm [INF] Reconfiguring daemon mon.smithi050 on smithi050 2024-09-21T17:21:54.829 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: cluster 2024-09-21T17:21:53.089152+0000 mgr.smithi050.baqqjh (mgr.14203) 35 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: cluster 2024-09-21T17:21:53.089152+0000 mgr.smithi050.baqqjh (mgr.14203) 35 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.227193+0000 mon.smithi050 (mon.0) 294 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.227193+0000 mon.smithi050 (mon.0) 294 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.236181+0000 mon.smithi050 (mon.0) 295 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.236181+0000 mon.smithi050 (mon.0) 295 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.238772+0000 mon.smithi050 (mon.0) 296 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi050.baqqjh", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.238772+0000 mon.smithi050 (mon.0) 296 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi050.baqqjh", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.240496+0000 mon.smithi050 (mon.0) 297 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:21:54.830 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.240496+0000 mon.smithi050 (mon.0) 297 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:21:54.831 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.241880+0000 mon.smithi050 (mon.0) 298 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:54.831 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:54 smithi050 bash[19920]: audit 2024-09-21T17:21:54.241880+0000 mon.smithi050 (mon.0) 298 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: cluster 2024-09-21T17:21:53.089152+0000 mgr.smithi050.baqqjh (mgr.14203) 35 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: cluster 2024-09-21T17:21:53.089152+0000 mgr.smithi050.baqqjh (mgr.14203) 35 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.227193+0000 mon.smithi050 (mon.0) 294 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.227193+0000 mon.smithi050 (mon.0) 294 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.236181+0000 mon.smithi050 (mon.0) 295 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.236181+0000 mon.smithi050 (mon.0) 295 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.238772+0000 mon.smithi050 (mon.0) 296 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi050.baqqjh", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:21:54.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.238772+0000 mon.smithi050 (mon.0) 296 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi050.baqqjh", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:21:54.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.240496+0000 mon.smithi050 (mon.0) 297 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:21:54.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.240496+0000 mon.smithi050 (mon.0) 297 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:21:54.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.241880+0000 mon.smithi050 (mon.0) 298 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:54.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:54 smithi170 bash[24572]: audit 2024-09-21T17:21:54.241880+0000 mon.smithi050 (mon.0) 298 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:55.804 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:55 smithi050 bash[19920]: cephadm 2024-09-21T17:21:54.238045+0000 mgr.smithi050.baqqjh (mgr.14203) 36 : cephadm [INF] Reconfiguring mgr.smithi050.baqqjh (unknown last config time)... 2024-09-21T17:21:55.804 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:55 smithi050 bash[19920]: cephadm 2024-09-21T17:21:54.238045+0000 mgr.smithi050.baqqjh (mgr.14203) 36 : cephadm [INF] Reconfiguring mgr.smithi050.baqqjh (unknown last config time)... 2024-09-21T17:21:55.804 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:55 smithi050 bash[19920]: cephadm 2024-09-21T17:21:54.243575+0000 mgr.smithi050.baqqjh (mgr.14203) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi050.baqqjh on smithi050 2024-09-21T17:21:55.804 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:55 smithi050 bash[19920]: cephadm 2024-09-21T17:21:54.243575+0000 mgr.smithi050.baqqjh (mgr.14203) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi050.baqqjh on smithi050 2024-09-21T17:21:55.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:55 smithi170 bash[24572]: cephadm 2024-09-21T17:21:54.238045+0000 mgr.smithi050.baqqjh (mgr.14203) 36 : cephadm [INF] Reconfiguring mgr.smithi050.baqqjh (unknown last config time)... 2024-09-21T17:21:55.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:55 smithi170 bash[24572]: cephadm 2024-09-21T17:21:54.238045+0000 mgr.smithi050.baqqjh (mgr.14203) 36 : cephadm [INF] Reconfiguring mgr.smithi050.baqqjh (unknown last config time)... 2024-09-21T17:21:55.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:55 smithi170 bash[24572]: cephadm 2024-09-21T17:21:54.243575+0000 mgr.smithi050.baqqjh (mgr.14203) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi050.baqqjh on smithi050 2024-09-21T17:21:55.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:55 smithi170 bash[24572]: cephadm 2024-09-21T17:21:54.243575+0000 mgr.smithi050.baqqjh (mgr.14203) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi050.baqqjh on smithi050 2024-09-21T17:21:56.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:56 smithi050 bash[19920]: cluster 2024-09-21T17:21:55.089574+0000 mgr.smithi050.baqqjh (mgr.14203) 38 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:56.838 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:56 smithi050 bash[19920]: cluster 2024-09-21T17:21:55.089574+0000 mgr.smithi050.baqqjh (mgr.14203) 38 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:56.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:56 smithi170 bash[24572]: cluster 2024-09-21T17:21:55.089574+0000 mgr.smithi050.baqqjh (mgr.14203) 38 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:56.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:56 smithi170 bash[24572]: cluster 2024-09-21T17:21:55.089574+0000 mgr.smithi050.baqqjh (mgr.14203) 38 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:57.132 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:21:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: audit 2024-09-21T17:21:56.562333+0000 mon.smithi050 (mon.0) 299 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: audit 2024-09-21T17:21:56.562333+0000 mon.smithi050 (mon.0) 299 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: audit 2024-09-21T17:21:56.570807+0000 mon.smithi050 (mon.0) 300 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: audit 2024-09-21T17:21:56.570807+0000 mon.smithi050 (mon.0) 300 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: cephadm 2024-09-21T17:21:56.572835+0000 mgr.smithi050.baqqjh (mgr.14203) 39 : cephadm [INF] Reconfiguring ceph-exporter.smithi050 (monmap changed)... 2024-09-21T17:21:57.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: cephadm 2024-09-21T17:21:56.572835+0000 mgr.smithi050.baqqjh (mgr.14203) 39 : cephadm [INF] Reconfiguring ceph-exporter.smithi050 (monmap changed)... 2024-09-21T17:21:57.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: audit 2024-09-21T17:21:56.573474+0000 mon.smithi050 (mon.0) 301 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:21:57.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: audit 2024-09-21T17:21:56.573474+0000 mon.smithi050 (mon.0) 301 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:21:57.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: audit 2024-09-21T17:21:56.575419+0000 mon.smithi050 (mon.0) 302 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:57.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: audit 2024-09-21T17:21:56.575419+0000 mon.smithi050 (mon.0) 302 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:57.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: cephadm 2024-09-21T17:21:56.577265+0000 mgr.smithi050.baqqjh (mgr.14203) 40 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi050 on smithi050 2024-09-21T17:21:57.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:57 smithi050 bash[19920]: cephadm 2024-09-21T17:21:56.577265+0000 mgr.smithi050.baqqjh (mgr.14203) 40 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi050 on smithi050 2024-09-21T17:21:57.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: audit 2024-09-21T17:21:56.562333+0000 mon.smithi050 (mon.0) 299 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:57.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: audit 2024-09-21T17:21:56.562333+0000 mon.smithi050 (mon.0) 299 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:57.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: audit 2024-09-21T17:21:56.570807+0000 mon.smithi050 (mon.0) 300 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:57.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: audit 2024-09-21T17:21:56.570807+0000 mon.smithi050 (mon.0) 300 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:21:57.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: cephadm 2024-09-21T17:21:56.572835+0000 mgr.smithi050.baqqjh (mgr.14203) 39 : cephadm [INF] Reconfiguring ceph-exporter.smithi050 (monmap changed)... 2024-09-21T17:21:57.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: cephadm 2024-09-21T17:21:56.572835+0000 mgr.smithi050.baqqjh (mgr.14203) 39 : cephadm [INF] Reconfiguring ceph-exporter.smithi050 (monmap changed)... 2024-09-21T17:21:57.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: audit 2024-09-21T17:21:56.573474+0000 mon.smithi050 (mon.0) 301 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:21:57.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: audit 2024-09-21T17:21:56.573474+0000 mon.smithi050 (mon.0) 301 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi050", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:21:57.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: audit 2024-09-21T17:21:56.575419+0000 mon.smithi050 (mon.0) 302 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:57.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: audit 2024-09-21T17:21:56.575419+0000 mon.smithi050 (mon.0) 302 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:57.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: cephadm 2024-09-21T17:21:56.577265+0000 mgr.smithi050.baqqjh (mgr.14203) 40 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi050 on smithi050 2024-09-21T17:21:57.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:57 smithi170 bash[24572]: cephadm 2024-09-21T17:21:56.577265+0000 mgr.smithi050.baqqjh (mgr.14203) 40 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi050 on smithi050 2024-09-21T17:21:58.825 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:58 smithi050 bash[19920]: cluster 2024-09-21T17:21:57.089890+0000 mgr.smithi050.baqqjh (mgr.14203) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:58.826 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:58 smithi050 bash[19920]: cluster 2024-09-21T17:21:57.089890+0000 mgr.smithi050.baqqjh (mgr.14203) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:58.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:58 smithi170 bash[24572]: cluster 2024-09-21T17:21:57.089890+0000 mgr.smithi050.baqqjh (mgr.14203) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:58.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:58 smithi170 bash[24572]: cluster 2024-09-21T17:21:57.089890+0000 mgr.smithi050.baqqjh (mgr.14203) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:21:59.222 INFO:teuthology.orchestra.run.smithi050.stdout:# minimal ceph.conf for 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:21:59.222 INFO:teuthology.orchestra.run.smithi050.stdout:[global] 2024-09-21T17:21:59.222 INFO:teuthology.orchestra.run.smithi050.stdout: fsid = 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:21:59.222 INFO:teuthology.orchestra.run.smithi050.stdout: mon_host = [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] [v2:172.21.15.170:3300/0,v1:172.21.15.170:6789/0] 2024-09-21T17:21:59.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:59 smithi170 bash[24572]: audit 2024-09-21T17:21:59.221033+0000 mon.smithi050 (mon.0) 303 : audit [DBG] from='client.? 172.21.15.50:0/240376713' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:59.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:21:59 smithi170 bash[24572]: audit 2024-09-21T17:21:59.221033+0000 mon.smithi050 (mon.0) 303 : audit [DBG] from='client.? 172.21.15.50:0/240376713' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:59 smithi050 bash[19920]: audit 2024-09-21T17:21:59.221033+0000 mon.smithi050 (mon.0) 303 : audit [DBG] from='client.? 172.21.15.50:0/240376713' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:21:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:21:59 smithi050 bash[19920]: audit 2024-09-21T17:21:59.221033+0000 mon.smithi050 (mon.0) 303 : audit [DBG] from='client.? 172.21.15.50:0/240376713' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:00.113 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-21T17:22:00.114 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:22:00.114 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.conf 2024-09-21T17:22:00.127 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:22:00.127 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:22:00.183 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:22:00.184 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/ceph/ceph.conf 2024-09-21T17:22:00.198 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:22:00.198 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-21T17:22:00.254 DEBUG:tasks.cephadm:set 0 configs 2024-09-21T17:22:00.254 INFO:tasks.cephadm:Deploying OSDs... 2024-09-21T17:22:00.254 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:22:00.254 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T17:22:00.260 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-21T17:22:00.260 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/nvme1n1 2024-09-21T17:22:00.308 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/nvme1n1 2024-09-21T17:22:00.309 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T17:22:00.309 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 969 Links: 1 Device type: 103,2 2024-09-21T17:22:00.309 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T17:22:00.309 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-21 17:20:07.332321964 +0000 2024-09-21T17:22:00.309 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-21 17:17:13.362170496 +0000 2024-09-21T17:22:00.309 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-21 17:17:13.362170496 +0000 2024-09-21T17:22:00.309 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-09-21T17:22:00.309 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-21T17:22:00.362 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-21T17:22:00.363 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-21T17:22:00.363 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000277471 s, 1.8 MB/s 2024-09-21T17:22:00.364 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-21T17:22:00.414 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/nvme2n1 2024-09-21T17:22:00.459 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/nvme2n1 2024-09-21T17:22:00.460 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T17:22:00.460 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 978 Links: 1 Device type: 103,4 2024-09-21T17:22:00.460 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T17:22:00.460 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-21 17:20:07.348321821 +0000 2024-09-21T17:22:00.460 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-21 17:17:13.454127446 +0000 2024-09-21T17:22:00.460 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-21 17:17:13.454127446 +0000 2024-09-21T17:22:00.460 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-09-21T17:22:00.460 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-21T17:22:00.512 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-21T17:22:00.513 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-21T17:22:00.513 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000227789 s, 2.2 MB/s 2024-09-21T17:22:00.514 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-21T17:22:00.562 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/nvme3n1 2024-09-21T17:22:00.608 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/nvme3n1 2024-09-21T17:22:00.608 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T17:22:00.609 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 987 Links: 1 Device type: 103,6 2024-09-21T17:22:00.609 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T17:22:00.609 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-21 17:20:07.360321714 +0000 2024-09-21T17:22:00.609 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-21 17:17:13.550082525 +0000 2024-09-21T17:22:00.609 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-21 17:17:13.550082525 +0000 2024-09-21T17:22:00.609 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-09-21T17:22:00.609 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-21T17:22:00.662 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-21T17:22:00.662 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-21T17:22:00.662 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000300134 s, 1.7 MB/s 2024-09-21T17:22:00.663 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-21T17:22:00.710 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/nvme4n1 2024-09-21T17:22:00.756 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/nvme4n1 2024-09-21T17:22:00.757 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T17:22:00.757 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 996 Links: 1 Device type: 103,8 2024-09-21T17:22:00.757 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T17:22:00.757 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-09-21 17:20:07.376321571 +0000 2024-09-21T17:22:00.757 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-09-21 17:17:13.642039475 +0000 2024-09-21T17:22:00.757 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-09-21 17:17:13.642039475 +0000 2024-09-21T17:22:00.757 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: - 2024-09-21T17:22:00.757 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-21T17:22:00.809 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-09-21T17:22:00.809 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-09-21T17:22:00.809 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000258999 s, 2.0 MB/s 2024-09-21T17:22:00.810 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-21T17:22:00.859 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:22:00.868 DEBUG:teuthology.orchestra.run.smithi170:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T17:22:00.874 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-21T17:22:00.874 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/nvme1n1 2024-09-21T17:22:00.923 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/nvme1n1 2024-09-21T17:22:00.923 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T17:22:00.923 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 973 Links: 1 Device type: 103,2 2024-09-21T17:22:00.923 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T17:22:00.923 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-09-21 17:21:24.875421843 +0000 2024-09-21T17:22:00.924 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-09-21 17:17:14.608746359 +0000 2024-09-21T17:22:00.924 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-09-21 17:17:14.608746359 +0000 2024-09-21T17:22:00.924 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-09-21T17:22:00.924 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-21T17:22:00.975 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: cluster 2024-09-21T17:21:59.090233+0000 mgr.smithi050.baqqjh (mgr.14203) 42 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: cluster 2024-09-21T17:21:59.090233+0000 mgr.smithi050.baqqjh (mgr.14203) 42 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:21:59.722342+0000 mon.smithi050 (mon.0) 304 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:21:59.722342+0000 mon.smithi050 (mon.0) 304 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:21:59.731493+0000 mon.smithi050 (mon.0) 305 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:21:59.731493+0000 mon.smithi050 (mon.0) 305 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:21:59.733796+0000 mon.smithi050 (mon.0) 306 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:21:59.733796+0000 mon.smithi050 (mon.0) 306 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:21:59.735413+0000 mon.smithi050 (mon.0) 307 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:21:59.735413+0000 mon.smithi050 (mon.0) 307 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:00.976 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:22:00.568561+0000 mon.smithi050 (mon.0) 308 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:00.977 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:00 smithi170 bash[24572]: audit 2024-09-21T17:22:00.568561+0000 mon.smithi050 (mon.0) 308 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:00.977 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-09-21T17:22:00.977 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-09-21T17:22:00.977 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000385052 s, 1.3 MB/s 2024-09-21T17:22:00.979 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-21T17:22:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: cluster 2024-09-21T17:21:59.090233+0000 mgr.smithi050.baqqjh (mgr.14203) 42 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: cluster 2024-09-21T17:21:59.090233+0000 mgr.smithi050.baqqjh (mgr.14203) 42 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:21:59.722342+0000 mon.smithi050 (mon.0) 304 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:21:59.722342+0000 mon.smithi050 (mon.0) 304 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:21:59.731493+0000 mon.smithi050 (mon.0) 305 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:21:59.731493+0000 mon.smithi050 (mon.0) 305 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:21:59.733796+0000 mon.smithi050 (mon.0) 306 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:22:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:21:59.733796+0000 mon.smithi050 (mon.0) 306 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi050", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:22:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:21:59.735413+0000 mon.smithi050 (mon.0) 307 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:21:59.735413+0000 mon.smithi050 (mon.0) 307 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:22:00.568561+0000 mon.smithi050 (mon.0) 308 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:00 smithi050 bash[19920]: audit 2024-09-21T17:22:00.568561+0000 mon.smithi050 (mon.0) 308 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:01.028 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/nvme2n1 2024-09-21T17:22:01.078 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/nvme2n1 2024-09-21T17:22:01.078 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T17:22:01.078 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 982 Links: 1 Device type: 103,4 2024-09-21T17:22:01.078 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T17:22:01.079 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-09-21 17:21:24.887421471 +0000 2024-09-21T17:22:01.079 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-09-21 17:17:14.708745466 +0000 2024-09-21T17:22:01.079 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-09-21 17:17:14.708745466 +0000 2024-09-21T17:22:01.079 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-09-21T17:22:01.079 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-21T17:22:01.133 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-09-21T17:22:01.133 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-09-21T17:22:01.133 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000368177 s, 1.4 MB/s 2024-09-21T17:22:01.135 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-21T17:22:01.184 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/nvme3n1 2024-09-21T17:22:01.230 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/nvme3n1 2024-09-21T17:22:01.230 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T17:22:01.230 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 991 Links: 1 Device type: 103,6 2024-09-21T17:22:01.230 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T17:22:01.231 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-09-21 17:21:24.895421224 +0000 2024-09-21T17:22:01.231 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-09-21 17:17:14.804744608 +0000 2024-09-21T17:22:01.231 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-09-21 17:17:14.804744608 +0000 2024-09-21T17:22:01.231 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-09-21T17:22:01.231 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-21T17:22:01.284 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-09-21T17:22:01.284 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-09-21T17:22:01.284 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000340859 s, 1.5 MB/s 2024-09-21T17:22:01.286 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-21T17:22:01.336 DEBUG:teuthology.orchestra.run.smithi170:> stat /dev/nvme4n1 2024-09-21T17:22:01.382 INFO:teuthology.orchestra.run.smithi170.stdout: File: /dev/nvme4n1 2024-09-21T17:22:01.382 INFO:teuthology.orchestra.run.smithi170.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T17:22:01.382 INFO:teuthology.orchestra.run.smithi170.stdout:Device: 5h/5d Inode: 1000 Links: 1 Device type: 103,8 2024-09-21T17:22:01.382 INFO:teuthology.orchestra.run.smithi170.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T17:22:01.382 INFO:teuthology.orchestra.run.smithi170.stdout:Access: 2024-09-21 17:21:24.903420977 +0000 2024-09-21T17:22:01.382 INFO:teuthology.orchestra.run.smithi170.stdout:Modify: 2024-09-21 17:17:14.904743716 +0000 2024-09-21T17:22:01.382 INFO:teuthology.orchestra.run.smithi170.stdout:Change: 2024-09-21 17:17:14.904743716 +0000 2024-09-21T17:22:01.383 INFO:teuthology.orchestra.run.smithi170.stdout: Birth: - 2024-09-21T17:22:01.383 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-21T17:22:01.436 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records in 2024-09-21T17:22:01.436 INFO:teuthology.orchestra.run.smithi170.stderr:1+0 records out 2024-09-21T17:22:01.436 INFO:teuthology.orchestra.run.smithi170.stderr:512 bytes copied, 0.000271928 s, 1.9 MB/s 2024-09-21T17:22:01.437 DEBUG:teuthology.orchestra.run.smithi170:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-21T17:22:01.487 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch apply osd --all-available-devices 2024-09-21T17:22:01.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:01 smithi170 bash[24572]: cephadm 2024-09-21T17:21:59.733130+0000 mgr.smithi050.baqqjh (mgr.14203) 43 : cephadm [INF] Reconfiguring crash.smithi050 (monmap changed)... 2024-09-21T17:22:01.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:01 smithi170 bash[24572]: cephadm 2024-09-21T17:21:59.733130+0000 mgr.smithi050.baqqjh (mgr.14203) 43 : cephadm [INF] Reconfiguring crash.smithi050 (monmap changed)... 2024-09-21T17:22:01.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:01 smithi170 bash[24572]: cephadm 2024-09-21T17:21:59.737166+0000 mgr.smithi050.baqqjh (mgr.14203) 44 : cephadm [INF] Reconfiguring daemon crash.smithi050 on smithi050 2024-09-21T17:22:01.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:01 smithi170 bash[24572]: cephadm 2024-09-21T17:21:59.737166+0000 mgr.smithi050.baqqjh (mgr.14203) 44 : cephadm [INF] Reconfiguring daemon crash.smithi050 on smithi050 2024-09-21T17:22:01.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:01 smithi050 bash[19920]: cephadm 2024-09-21T17:21:59.733130+0000 mgr.smithi050.baqqjh (mgr.14203) 43 : cephadm [INF] Reconfiguring crash.smithi050 (monmap changed)... 2024-09-21T17:22:01.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:01 smithi050 bash[19920]: cephadm 2024-09-21T17:21:59.733130+0000 mgr.smithi050.baqqjh (mgr.14203) 43 : cephadm [INF] Reconfiguring crash.smithi050 (monmap changed)... 2024-09-21T17:22:01.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:01 smithi050 bash[19920]: cephadm 2024-09-21T17:21:59.737166+0000 mgr.smithi050.baqqjh (mgr.14203) 44 : cephadm [INF] Reconfiguring daemon crash.smithi050 on smithi050 2024-09-21T17:22:01.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:01 smithi050 bash[19920]: cephadm 2024-09-21T17:21:59.737166+0000 mgr.smithi050.baqqjh (mgr.14203) 44 : cephadm [INF] Reconfiguring daemon crash.smithi050 on smithi050 2024-09-21T17:22:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:02 smithi050 bash[19920]: cluster 2024-09-21T17:22:01.090730+0000 mgr.smithi050.baqqjh (mgr.14203) 45 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:02 smithi050 bash[19920]: cluster 2024-09-21T17:22:01.090730+0000 mgr.smithi050.baqqjh (mgr.14203) 45 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:02 smithi050 bash[19920]: audit 2024-09-21T17:22:02.100984+0000 mon.smithi050 (mon.0) 309 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:02 smithi050 bash[19920]: audit 2024-09-21T17:22:02.100984+0000 mon.smithi050 (mon.0) 309 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:02 smithi050 bash[19920]: audit 2024-09-21T17:22:02.110227+0000 mon.smithi050 (mon.0) 310 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:02.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:02 smithi050 bash[19920]: audit 2024-09-21T17:22:02.110227+0000 mon.smithi050 (mon.0) 310 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:03.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:02 smithi170 bash[24572]: cluster 2024-09-21T17:22:01.090730+0000 mgr.smithi050.baqqjh (mgr.14203) 45 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:03.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:02 smithi170 bash[24572]: cluster 2024-09-21T17:22:01.090730+0000 mgr.smithi050.baqqjh (mgr.14203) 45 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:03.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:02 smithi170 bash[24572]: audit 2024-09-21T17:22:02.100984+0000 mon.smithi050 (mon.0) 309 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:03.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:02 smithi170 bash[24572]: audit 2024-09-21T17:22:02.100984+0000 mon.smithi050 (mon.0) 309 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:03.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:02 smithi170 bash[24572]: audit 2024-09-21T17:22:02.110227+0000 mon.smithi050 (mon.0) 310 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:03.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:02 smithi170 bash[24572]: audit 2024-09-21T17:22:02.110227+0000 mon.smithi050 (mon.0) 310 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:03.993 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:03 smithi050 bash[19920]: cephadm 2024-09-21T17:22:02.112884+0000 mgr.smithi050.baqqjh (mgr.14203) 46 : cephadm [INF] Reconfiguring alertmanager.smithi050 (dependencies changed)... 2024-09-21T17:22:03.994 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:03 smithi050 bash[19920]: cephadm 2024-09-21T17:22:02.112884+0000 mgr.smithi050.baqqjh (mgr.14203) 46 : cephadm [INF] Reconfiguring alertmanager.smithi050 (dependencies changed)... 2024-09-21T17:22:03.994 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:03 smithi050 bash[19920]: cephadm 2024-09-21T17:22:02.138781+0000 mgr.smithi050.baqqjh (mgr.14203) 47 : cephadm [INF] Reconfiguring daemon alertmanager.smithi050 on smithi050 2024-09-21T17:22:03.994 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:03 smithi050 bash[19920]: cephadm 2024-09-21T17:22:02.138781+0000 mgr.smithi050.baqqjh (mgr.14203) 47 : cephadm [INF] Reconfiguring daemon alertmanager.smithi050 on smithi050 2024-09-21T17:22:03.994 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:03 smithi050 bash[19920]: cluster 2024-09-21T17:22:03.091200+0000 mgr.smithi050.baqqjh (mgr.14203) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:03.994 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:03 smithi050 bash[19920]: cluster 2024-09-21T17:22:03.091200+0000 mgr.smithi050.baqqjh (mgr.14203) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:04.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:03 smithi170 bash[24572]: cephadm 2024-09-21T17:22:02.112884+0000 mgr.smithi050.baqqjh (mgr.14203) 46 : cephadm [INF] Reconfiguring alertmanager.smithi050 (dependencies changed)... 2024-09-21T17:22:04.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:03 smithi170 bash[24572]: cephadm 2024-09-21T17:22:02.112884+0000 mgr.smithi050.baqqjh (mgr.14203) 46 : cephadm [INF] Reconfiguring alertmanager.smithi050 (dependencies changed)... 2024-09-21T17:22:04.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:03 smithi170 bash[24572]: cephadm 2024-09-21T17:22:02.138781+0000 mgr.smithi050.baqqjh (mgr.14203) 47 : cephadm [INF] Reconfiguring daemon alertmanager.smithi050 on smithi050 2024-09-21T17:22:04.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:03 smithi170 bash[24572]: cephadm 2024-09-21T17:22:02.138781+0000 mgr.smithi050.baqqjh (mgr.14203) 47 : cephadm [INF] Reconfiguring daemon alertmanager.smithi050 on smithi050 2024-09-21T17:22:04.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:03 smithi170 bash[24572]: cluster 2024-09-21T17:22:03.091200+0000 mgr.smithi050.baqqjh (mgr.14203) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:04.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:03 smithi170 bash[24572]: cluster 2024-09-21T17:22:03.091200+0000 mgr.smithi050.baqqjh (mgr.14203) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:06.284 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi170/config 2024-09-21T17:22:06.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:06 smithi050 bash[19920]: cluster 2024-09-21T17:22:05.091662+0000 mgr.smithi050.baqqjh (mgr.14203) 49 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:06.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:06 smithi050 bash[19920]: cluster 2024-09-21T17:22:05.091662+0000 mgr.smithi050.baqqjh (mgr.14203) 49 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:06.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:06 smithi170 bash[24572]: cluster 2024-09-21T17:22:05.091662+0000 mgr.smithi050.baqqjh (mgr.14203) 49 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:06.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:06 smithi170 bash[24572]: cluster 2024-09-21T17:22:05.091662+0000 mgr.smithi050.baqqjh (mgr.14203) 49 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:07.707 INFO:teuthology.orchestra.run.smithi170.stdout:Scheduled osd.all-available-devices update... 2024-09-21T17:22:08.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: audit 2024-09-21T17:22:06.916347+0000 mon.smithi050 (mon.0) 311 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: audit 2024-09-21T17:22:06.916347+0000 mon.smithi050 (mon.0) 311 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: audit 2024-09-21T17:22:06.921032+0000 mon.smithi050 (mon.0) 312 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: audit 2024-09-21T17:22:06.921032+0000 mon.smithi050 (mon.0) 312 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:06.922132+0000 mgr.smithi050.baqqjh (mgr.14203) 50 : cephadm [INF] Reconfiguring grafana.smithi050 (dependencies changed)... 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:06.922132+0000 mgr.smithi050.baqqjh (mgr.14203) 50 : cephadm [INF] Reconfiguring grafana.smithi050 (dependencies changed)... 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cluster 2024-09-21T17:22:07.092109+0000 mgr.smithi050.baqqjh (mgr.14203) 51 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cluster 2024-09-21T17:22:07.092109+0000 mgr.smithi050.baqqjh (mgr.14203) 51 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:07.333416+0000 mgr.smithi050.baqqjh (mgr.14203) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi050 on smithi050 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:07.333416+0000 mgr.smithi050.baqqjh (mgr.14203) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi050 on smithi050 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: audit 2024-09-21T17:22:07.682766+0000 mgr.smithi050.baqqjh (mgr.14203) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:22:08.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: audit 2024-09-21T17:22:07.682766+0000 mgr.smithi050.baqqjh (mgr.14203) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:22:08.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:07.693697+0000 mgr.smithi050.baqqjh (mgr.14203) 54 : cephadm [INF] Marking host: smithi050 for OSDSpec preview refresh. 2024-09-21T17:22:08.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:07.693697+0000 mgr.smithi050.baqqjh (mgr.14203) 54 : cephadm [INF] Marking host: smithi050 for OSDSpec preview refresh. 2024-09-21T17:22:08.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:07.693965+0000 mgr.smithi050.baqqjh (mgr.14203) 55 : cephadm [INF] Marking host: smithi170 for OSDSpec preview refresh. 2024-09-21T17:22:08.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:07.693965+0000 mgr.smithi050.baqqjh (mgr.14203) 55 : cephadm [INF] Marking host: smithi170 for OSDSpec preview refresh. 2024-09-21T17:22:08.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:07.694343+0000 mgr.smithi050.baqqjh (mgr.14203) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-21T17:22:08.112 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: cephadm 2024-09-21T17:22:07.694343+0000 mgr.smithi050.baqqjh (mgr.14203) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-21T17:22:08.112 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: audit 2024-09-21T17:22:07.700619+0000 mon.smithi050 (mon.0) 313 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.112 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:07 smithi170 bash[24572]: audit 2024-09-21T17:22:07.700619+0000 mon.smithi050 (mon.0) 313 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: audit 2024-09-21T17:22:06.916347+0000 mon.smithi050 (mon.0) 311 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: audit 2024-09-21T17:22:06.916347+0000 mon.smithi050 (mon.0) 311 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: audit 2024-09-21T17:22:06.921032+0000 mon.smithi050 (mon.0) 312 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: audit 2024-09-21T17:22:06.921032+0000 mon.smithi050 (mon.0) 312 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:06.922132+0000 mgr.smithi050.baqqjh (mgr.14203) 50 : cephadm [INF] Reconfiguring grafana.smithi050 (dependencies changed)... 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:06.922132+0000 mgr.smithi050.baqqjh (mgr.14203) 50 : cephadm [INF] Reconfiguring grafana.smithi050 (dependencies changed)... 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cluster 2024-09-21T17:22:07.092109+0000 mgr.smithi050.baqqjh (mgr.14203) 51 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cluster 2024-09-21T17:22:07.092109+0000 mgr.smithi050.baqqjh (mgr.14203) 51 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:07.333416+0000 mgr.smithi050.baqqjh (mgr.14203) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi050 on smithi050 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:07.333416+0000 mgr.smithi050.baqqjh (mgr.14203) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi050 on smithi050 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: audit 2024-09-21T17:22:07.682766+0000 mgr.smithi050.baqqjh (mgr.14203) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: audit 2024-09-21T17:22:07.682766+0000 mgr.smithi050.baqqjh (mgr.14203) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:07.693697+0000 mgr.smithi050.baqqjh (mgr.14203) 54 : cephadm [INF] Marking host: smithi050 for OSDSpec preview refresh. 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:07.693697+0000 mgr.smithi050.baqqjh (mgr.14203) 54 : cephadm [INF] Marking host: smithi050 for OSDSpec preview refresh. 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:07.693965+0000 mgr.smithi050.baqqjh (mgr.14203) 55 : cephadm [INF] Marking host: smithi170 for OSDSpec preview refresh. 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:07.693965+0000 mgr.smithi050.baqqjh (mgr.14203) 55 : cephadm [INF] Marking host: smithi170 for OSDSpec preview refresh. 2024-09-21T17:22:08.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:07.694343+0000 mgr.smithi050.baqqjh (mgr.14203) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-21T17:22:08.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: cephadm 2024-09-21T17:22:07.694343+0000 mgr.smithi050.baqqjh (mgr.14203) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-21T17:22:08.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: audit 2024-09-21T17:22:07.700619+0000 mon.smithi050 (mon.0) 313 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:07 smithi050 bash[19920]: audit 2024-09-21T17:22:07.700619+0000 mon.smithi050 (mon.0) 313 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:08.383 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-21T17:22:08.384 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:22:10.148 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:10 smithi050 bash[19920]: cluster 2024-09-21T17:22:09.092437+0000 mgr.smithi050.baqqjh (mgr.14203) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:10.148 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:10 smithi050 bash[19920]: cluster 2024-09-21T17:22:09.092437+0000 mgr.smithi050.baqqjh (mgr.14203) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:10.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:10 smithi170 bash[24572]: cluster 2024-09-21T17:22:09.092437+0000 mgr.smithi050.baqqjh (mgr.14203) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:10.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:10 smithi170 bash[24572]: cluster 2024-09-21T17:22:09.092437+0000 mgr.smithi050.baqqjh (mgr.14203) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:12.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:12 smithi050 bash[19920]: cluster 2024-09-21T17:22:11.092788+0000 mgr.smithi050.baqqjh (mgr.14203) 58 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:12.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:12 smithi050 bash[19920]: cluster 2024-09-21T17:22:11.092788+0000 mgr.smithi050.baqqjh (mgr.14203) 58 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:12.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:12 smithi170 bash[24572]: cluster 2024-09-21T17:22:11.092788+0000 mgr.smithi050.baqqjh (mgr.14203) 58 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:12.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:12 smithi170 bash[24572]: cluster 2024-09-21T17:22:11.092788+0000 mgr.smithi050.baqqjh (mgr.14203) 58 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:13.165 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:22:13.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:13 smithi050 bash[19920]: audit 2024-09-21T17:22:12.435632+0000 mon.smithi050 (mon.0) 314 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:13.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:13 smithi050 bash[19920]: audit 2024-09-21T17:22:12.435632+0000 mon.smithi050 (mon.0) 314 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:13.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:13 smithi050 bash[19920]: audit 2024-09-21T17:22:12.439835+0000 mon.smithi050 (mon.0) 315 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:13.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:13 smithi050 bash[19920]: audit 2024-09-21T17:22:12.439835+0000 mon.smithi050 (mon.0) 315 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:13.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:13 smithi050 bash[19920]: cephadm 2024-09-21T17:22:12.440987+0000 mgr.smithi050.baqqjh (mgr.14203) 59 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:22:13.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:13 smithi050 bash[19920]: cephadm 2024-09-21T17:22:12.440987+0000 mgr.smithi050.baqqjh (mgr.14203) 59 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:22:13.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:13 smithi050 bash[19920]: cephadm 2024-09-21T17:22:12.704189+0000 mgr.smithi050.baqqjh (mgr.14203) 60 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:22:13.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:13 smithi050 bash[19920]: cephadm 2024-09-21T17:22:12.704189+0000 mgr.smithi050.baqqjh (mgr.14203) 60 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:22:13.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:13 smithi170 bash[24572]: audit 2024-09-21T17:22:12.435632+0000 mon.smithi050 (mon.0) 314 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:13.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:13 smithi170 bash[24572]: audit 2024-09-21T17:22:12.435632+0000 mon.smithi050 (mon.0) 314 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:13.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:13 smithi170 bash[24572]: audit 2024-09-21T17:22:12.439835+0000 mon.smithi050 (mon.0) 315 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:13.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:13 smithi170 bash[24572]: audit 2024-09-21T17:22:12.439835+0000 mon.smithi050 (mon.0) 315 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:13.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:13 smithi170 bash[24572]: cephadm 2024-09-21T17:22:12.440987+0000 mgr.smithi050.baqqjh (mgr.14203) 59 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:22:13.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:13 smithi170 bash[24572]: cephadm 2024-09-21T17:22:12.440987+0000 mgr.smithi050.baqqjh (mgr.14203) 59 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:22:13.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:13 smithi170 bash[24572]: cephadm 2024-09-21T17:22:12.704189+0000 mgr.smithi050.baqqjh (mgr.14203) 60 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:22:13.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:13 smithi170 bash[24572]: cephadm 2024-09-21T17:22:12.704189+0000 mgr.smithi050.baqqjh (mgr.14203) 60 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:22:14.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:14 smithi050 bash[19920]: cluster 2024-09-21T17:22:13.093175+0000 mgr.smithi050.baqqjh (mgr.14203) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:14.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:14 smithi050 bash[19920]: cluster 2024-09-21T17:22:13.093175+0000 mgr.smithi050.baqqjh (mgr.14203) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:14.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:14 smithi170 bash[24572]: cluster 2024-09-21T17:22:13.093175+0000 mgr.smithi050.baqqjh (mgr.14203) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:14.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:14 smithi170 bash[24572]: cluster 2024-09-21T17:22:13.093175+0000 mgr.smithi050.baqqjh (mgr.14203) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:15.902 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:22:16.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:16 smithi050 bash[19920]: cluster 2024-09-21T17:22:15.093607+0000 mgr.smithi050.baqqjh (mgr.14203) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:16.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:16 smithi050 bash[19920]: cluster 2024-09-21T17:22:15.093607+0000 mgr.smithi050.baqqjh (mgr.14203) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:16.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:16 smithi050 bash[19920]: audit 2024-09-21T17:22:15.568581+0000 mon.smithi050 (mon.0) 316 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:16.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:16 smithi050 bash[19920]: audit 2024-09-21T17:22:15.568581+0000 mon.smithi050 (mon.0) 316 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:16.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:16 smithi050 bash[19920]: audit 2024-09-21T17:22:15.901828+0000 mon.smithi050 (mon.0) 317 : audit [DBG] from='client.? 172.21.15.50:0/3727950589' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:16.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:16 smithi050 bash[19920]: audit 2024-09-21T17:22:15.901828+0000 mon.smithi050 (mon.0) 317 : audit [DBG] from='client.? 172.21.15.50:0/3727950589' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:16.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:16 smithi170 bash[24572]: cluster 2024-09-21T17:22:15.093607+0000 mgr.smithi050.baqqjh (mgr.14203) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:16.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:16 smithi170 bash[24572]: cluster 2024-09-21T17:22:15.093607+0000 mgr.smithi050.baqqjh (mgr.14203) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:16.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:16 smithi170 bash[24572]: audit 2024-09-21T17:22:15.568581+0000 mon.smithi050 (mon.0) 316 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:16.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:16 smithi170 bash[24572]: audit 2024-09-21T17:22:15.568581+0000 mon.smithi050 (mon.0) 316 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:16.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:16 smithi170 bash[24572]: audit 2024-09-21T17:22:15.901828+0000 mon.smithi050 (mon.0) 317 : audit [DBG] from='client.? 172.21.15.50:0/3727950589' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:16.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:16 smithi170 bash[24572]: audit 2024-09-21T17:22:15.901828+0000 mon.smithi050 (mon.0) 317 : audit [DBG] from='client.? 172.21.15.50:0/3727950589' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:17.008 INFO:teuthology.orchestra.run.smithi050.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-21T17:22:18.009 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:22:18.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:18 smithi050 bash[19920]: cluster 2024-09-21T17:22:17.094086+0000 mgr.smithi050.baqqjh (mgr.14203) 63 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:18.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:18 smithi050 bash[19920]: cluster 2024-09-21T17:22:17.094086+0000 mgr.smithi050.baqqjh (mgr.14203) 63 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:18.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:18 smithi170 bash[24572]: cluster 2024-09-21T17:22:17.094086+0000 mgr.smithi050.baqqjh (mgr.14203) 63 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:18.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:18 smithi170 bash[24572]: cluster 2024-09-21T17:22:17.094086+0000 mgr.smithi050.baqqjh (mgr.14203) 63 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:20.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: cluster 2024-09-21T17:22:19.094409+0000 mgr.smithi050.baqqjh (mgr.14203) 64 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:20.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: cluster 2024-09-21T17:22:19.094409+0000 mgr.smithi050.baqqjh (mgr.14203) 64 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: audit 2024-09-21T17:22:19.319565+0000 mon.smithi050 (mon.0) 318 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: audit 2024-09-21T17:22:19.319565+0000 mon.smithi050 (mon.0) 318 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: audit 2024-09-21T17:22:19.323895+0000 mon.smithi050 (mon.0) 319 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: audit 2024-09-21T17:22:19.323895+0000 mon.smithi050 (mon.0) 319 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: cephadm 2024-09-21T17:22:19.324789+0000 mgr.smithi050.baqqjh (mgr.14203) 65 : cephadm [INF] Reconfiguring ceph-exporter.smithi170 (monmap changed)... 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: cephadm 2024-09-21T17:22:19.324789+0000 mgr.smithi050.baqqjh (mgr.14203) 65 : cephadm [INF] Reconfiguring ceph-exporter.smithi170 (monmap changed)... 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: audit 2024-09-21T17:22:19.325103+0000 mon.smithi050 (mon.0) 320 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: audit 2024-09-21T17:22:19.325103+0000 mon.smithi050 (mon.0) 320 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: audit 2024-09-21T17:22:19.325912+0000 mon.smithi050 (mon.0) 321 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: audit 2024-09-21T17:22:19.325912+0000 mon.smithi050 (mon.0) 321 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: cephadm 2024-09-21T17:22:19.326726+0000 mgr.smithi050.baqqjh (mgr.14203) 66 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi170 on smithi170 2024-09-21T17:22:20.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:20 smithi170 bash[24572]: cephadm 2024-09-21T17:22:19.326726+0000 mgr.smithi050.baqqjh (mgr.14203) 66 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi170 on smithi170 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: cluster 2024-09-21T17:22:19.094409+0000 mgr.smithi050.baqqjh (mgr.14203) 64 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: cluster 2024-09-21T17:22:19.094409+0000 mgr.smithi050.baqqjh (mgr.14203) 64 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: audit 2024-09-21T17:22:19.319565+0000 mon.smithi050 (mon.0) 318 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: audit 2024-09-21T17:22:19.319565+0000 mon.smithi050 (mon.0) 318 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: audit 2024-09-21T17:22:19.323895+0000 mon.smithi050 (mon.0) 319 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: audit 2024-09-21T17:22:19.323895+0000 mon.smithi050 (mon.0) 319 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: cephadm 2024-09-21T17:22:19.324789+0000 mgr.smithi050.baqqjh (mgr.14203) 65 : cephadm [INF] Reconfiguring ceph-exporter.smithi170 (monmap changed)... 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: cephadm 2024-09-21T17:22:19.324789+0000 mgr.smithi050.baqqjh (mgr.14203) 65 : cephadm [INF] Reconfiguring ceph-exporter.smithi170 (monmap changed)... 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: audit 2024-09-21T17:22:19.325103+0000 mon.smithi050 (mon.0) 320 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: audit 2024-09-21T17:22:19.325103+0000 mon.smithi050 (mon.0) 320 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi170", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: audit 2024-09-21T17:22:19.325912+0000 mon.smithi050 (mon.0) 321 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: audit 2024-09-21T17:22:19.325912+0000 mon.smithi050 (mon.0) 321 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: cephadm 2024-09-21T17:22:19.326726+0000 mgr.smithi050.baqqjh (mgr.14203) 66 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi170 on smithi170 2024-09-21T17:22:20.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:20 smithi050 bash[19920]: cephadm 2024-09-21T17:22:19.326726+0000 mgr.smithi050.baqqjh (mgr.14203) 66 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi170 on smithi170 2024-09-21T17:22:22.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: cluster 2024-09-21T17:22:21.094803+0000 mgr.smithi050.baqqjh (mgr.14203) 67 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: cluster 2024-09-21T17:22:21.094803+0000 mgr.smithi050.baqqjh (mgr.14203) 67 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: audit 2024-09-21T17:22:21.420936+0000 mon.smithi050 (mon.0) 322 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: audit 2024-09-21T17:22:21.420936+0000 mon.smithi050 (mon.0) 322 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: audit 2024-09-21T17:22:21.429587+0000 mon.smithi050 (mon.0) 323 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: audit 2024-09-21T17:22:21.429587+0000 mon.smithi050 (mon.0) 323 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: cephadm 2024-09-21T17:22:21.431492+0000 mgr.smithi050.baqqjh (mgr.14203) 68 : cephadm [INF] Reconfiguring crash.smithi170 (monmap changed)... 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: cephadm 2024-09-21T17:22:21.431492+0000 mgr.smithi050.baqqjh (mgr.14203) 68 : cephadm [INF] Reconfiguring crash.smithi170 (monmap changed)... 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: audit 2024-09-21T17:22:21.432143+0000 mon.smithi050 (mon.0) 324 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: audit 2024-09-21T17:22:21.432143+0000 mon.smithi050 (mon.0) 324 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: audit 2024-09-21T17:22:21.434108+0000 mon.smithi050 (mon.0) 325 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:22.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: audit 2024-09-21T17:22:21.434108+0000 mon.smithi050 (mon.0) 325 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:22.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: cephadm 2024-09-21T17:22:21.435990+0000 mgr.smithi050.baqqjh (mgr.14203) 69 : cephadm [INF] Reconfiguring daemon crash.smithi170 on smithi170 2024-09-21T17:22:22.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:22 smithi050 bash[19920]: cephadm 2024-09-21T17:22:21.435990+0000 mgr.smithi050.baqqjh (mgr.14203) 69 : cephadm [INF] Reconfiguring daemon crash.smithi170 on smithi170 2024-09-21T17:22:22.787 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:22:22.839 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: cluster 2024-09-21T17:22:21.094803+0000 mgr.smithi050.baqqjh (mgr.14203) 67 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:22.839 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: cluster 2024-09-21T17:22:21.094803+0000 mgr.smithi050.baqqjh (mgr.14203) 67 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:22.839 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: audit 2024-09-21T17:22:21.420936+0000 mon.smithi050 (mon.0) 322 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: audit 2024-09-21T17:22:21.420936+0000 mon.smithi050 (mon.0) 322 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: audit 2024-09-21T17:22:21.429587+0000 mon.smithi050 (mon.0) 323 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: audit 2024-09-21T17:22:21.429587+0000 mon.smithi050 (mon.0) 323 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: cephadm 2024-09-21T17:22:21.431492+0000 mgr.smithi050.baqqjh (mgr.14203) 68 : cephadm [INF] Reconfiguring crash.smithi170 (monmap changed)... 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: cephadm 2024-09-21T17:22:21.431492+0000 mgr.smithi050.baqqjh (mgr.14203) 68 : cephadm [INF] Reconfiguring crash.smithi170 (monmap changed)... 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: audit 2024-09-21T17:22:21.432143+0000 mon.smithi050 (mon.0) 324 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: audit 2024-09-21T17:22:21.432143+0000 mon.smithi050 (mon.0) 324 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi170", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: audit 2024-09-21T17:22:21.434108+0000 mon.smithi050 (mon.0) 325 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: audit 2024-09-21T17:22:21.434108+0000 mon.smithi050 (mon.0) 325 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: cephadm 2024-09-21T17:22:21.435990+0000 mgr.smithi050.baqqjh (mgr.14203) 69 : cephadm [INF] Reconfiguring daemon crash.smithi170 on smithi170 2024-09-21T17:22:22.840 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:22 smithi170 bash[24572]: cephadm 2024-09-21T17:22:21.435990+0000 mgr.smithi050.baqqjh (mgr.14203) 69 : cephadm [INF] Reconfiguring daemon crash.smithi170 on smithi170 2024-09-21T17:22:24.244 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:22:24.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: cluster 2024-09-21T17:22:23.095193+0000 mgr.smithi050.baqqjh (mgr.14203) 70 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:24.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: cluster 2024-09-21T17:22:23.095193+0000 mgr.smithi050.baqqjh (mgr.14203) 70 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:24.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.552511+0000 mon.smithi050 (mon.0) 326 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.552511+0000 mon.smithi050 (mon.0) 326 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.561220+0000 mon.smithi050 (mon.0) 327 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.561220+0000 mon.smithi050 (mon.0) 327 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: cephadm 2024-09-21T17:22:23.563341+0000 mgr.smithi050.baqqjh (mgr.14203) 71 : cephadm [INF] Reconfiguring mgr.smithi170.lejafv (monmap changed)... 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: cephadm 2024-09-21T17:22:23.563341+0000 mgr.smithi050.baqqjh (mgr.14203) 71 : cephadm [INF] Reconfiguring mgr.smithi170.lejafv (monmap changed)... 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.564042+0000 mon.smithi050 (mon.0) 328 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.564042+0000 mon.smithi050 (mon.0) 328 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.565938+0000 mon.smithi050 (mon.0) 329 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.565938+0000 mon.smithi050 (mon.0) 329 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.567476+0000 mon.smithi050 (mon.0) 330 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:23.567476+0000 mon.smithi050 (mon.0) 330 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: cephadm 2024-09-21T17:22:23.569519+0000 mgr.smithi050.baqqjh (mgr.14203) 72 : cephadm [INF] Reconfiguring daemon mgr.smithi170.lejafv on smithi170 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: cephadm 2024-09-21T17:22:23.569519+0000 mgr.smithi050.baqqjh (mgr.14203) 72 : cephadm [INF] Reconfiguring daemon mgr.smithi170.lejafv on smithi170 2024-09-21T17:22:24.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:24.242676+0000 mon.smithi050 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.50:0/2817686181' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:24.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:24 smithi170 bash[24572]: audit 2024-09-21T17:22:24.242676+0000 mon.smithi050 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.50:0/2817686181' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:24.889 INFO:teuthology.orchestra.run.smithi050.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-21T17:22:24.889 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: cluster 2024-09-21T17:22:23.095193+0000 mgr.smithi050.baqqjh (mgr.14203) 70 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:24.889 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: cluster 2024-09-21T17:22:23.095193+0000 mgr.smithi050.baqqjh (mgr.14203) 70 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:24.889 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.552511+0000 mon.smithi050 (mon.0) 326 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:24.889 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.552511+0000 mon.smithi050 (mon.0) 326 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:24.889 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.561220+0000 mon.smithi050 (mon.0) 327 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:24.889 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.561220+0000 mon.smithi050 (mon.0) 327 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: cephadm 2024-09-21T17:22:23.563341+0000 mgr.smithi050.baqqjh (mgr.14203) 71 : cephadm [INF] Reconfiguring mgr.smithi170.lejafv (monmap changed)... 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: cephadm 2024-09-21T17:22:23.563341+0000 mgr.smithi050.baqqjh (mgr.14203) 71 : cephadm [INF] Reconfiguring mgr.smithi170.lejafv (monmap changed)... 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.564042+0000 mon.smithi050 (mon.0) 328 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.564042+0000 mon.smithi050 (mon.0) 328 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi170.lejafv", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.565938+0000 mon.smithi050 (mon.0) 329 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.565938+0000 mon.smithi050 (mon.0) 329 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.567476+0000 mon.smithi050 (mon.0) 330 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:23.567476+0000 mon.smithi050 (mon.0) 330 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: cephadm 2024-09-21T17:22:23.569519+0000 mgr.smithi050.baqqjh (mgr.14203) 72 : cephadm [INF] Reconfiguring daemon mgr.smithi170.lejafv on smithi170 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: cephadm 2024-09-21T17:22:23.569519+0000 mgr.smithi050.baqqjh (mgr.14203) 72 : cephadm [INF] Reconfiguring daemon mgr.smithi170.lejafv on smithi170 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:24.242676+0000 mon.smithi050 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.50:0/2817686181' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:24.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:24 smithi050 bash[19920]: audit 2024-09-21T17:22:24.242676+0000 mon.smithi050 (mon.0) 331 : audit [DBG] from='client.? 172.21.15.50:0/2817686181' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:25.890 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:22:26.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: cluster 2024-09-21T17:22:25.095613+0000 mgr.smithi050.baqqjh (mgr.14203) 73 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: cluster 2024-09-21T17:22:25.095613+0000 mgr.smithi050.baqqjh (mgr.14203) 73 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.658988+0000 mon.smithi050 (mon.0) 332 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.658988+0000 mon.smithi050 (mon.0) 332 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.667834+0000 mon.smithi050 (mon.0) 333 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.667834+0000 mon.smithi050 (mon.0) 333 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: cephadm 2024-09-21T17:22:25.669594+0000 mgr.smithi050.baqqjh (mgr.14203) 74 : cephadm [INF] Reconfiguring mon.smithi170 (monmap changed)... 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: cephadm 2024-09-21T17:22:25.669594+0000 mgr.smithi050.baqqjh (mgr.14203) 74 : cephadm [INF] Reconfiguring mon.smithi170 (monmap changed)... 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.670237+0000 mon.smithi050 (mon.0) 334 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.670237+0000 mon.smithi050 (mon.0) 334 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.672026+0000 mon.smithi050 (mon.0) 335 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.672026+0000 mon.smithi050 (mon.0) 335 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.673776+0000 mon.smithi050 (mon.0) 336 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: audit 2024-09-21T17:22:25.673776+0000 mon.smithi050 (mon.0) 336 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:26.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: cephadm 2024-09-21T17:22:25.675829+0000 mgr.smithi050.baqqjh (mgr.14203) 75 : cephadm [INF] Reconfiguring daemon mon.smithi170 on smithi170 2024-09-21T17:22:26.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:26 smithi050 bash[19920]: cephadm 2024-09-21T17:22:25.675829+0000 mgr.smithi050.baqqjh (mgr.14203) 75 : cephadm [INF] Reconfiguring daemon mon.smithi170 on smithi170 2024-09-21T17:22:27.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: cluster 2024-09-21T17:22:25.095613+0000 mgr.smithi050.baqqjh (mgr.14203) 73 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: cluster 2024-09-21T17:22:25.095613+0000 mgr.smithi050.baqqjh (mgr.14203) 73 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.658988+0000 mon.smithi050 (mon.0) 332 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.658988+0000 mon.smithi050 (mon.0) 332 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.667834+0000 mon.smithi050 (mon.0) 333 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.667834+0000 mon.smithi050 (mon.0) 333 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: cephadm 2024-09-21T17:22:25.669594+0000 mgr.smithi050.baqqjh (mgr.14203) 74 : cephadm [INF] Reconfiguring mon.smithi170 (monmap changed)... 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: cephadm 2024-09-21T17:22:25.669594+0000 mgr.smithi050.baqqjh (mgr.14203) 74 : cephadm [INF] Reconfiguring mon.smithi170 (monmap changed)... 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.670237+0000 mon.smithi050 (mon.0) 334 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.670237+0000 mon.smithi050 (mon.0) 334 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.672026+0000 mon.smithi050 (mon.0) 335 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.672026+0000 mon.smithi050 (mon.0) 335 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.673776+0000 mon.smithi050 (mon.0) 336 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: audit 2024-09-21T17:22:25.673776+0000 mon.smithi050 (mon.0) 336 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:27.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: cephadm 2024-09-21T17:22:25.675829+0000 mgr.smithi050.baqqjh (mgr.14203) 75 : cephadm [INF] Reconfiguring daemon mon.smithi170 on smithi170 2024-09-21T17:22:27.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:26 smithi170 bash[24572]: cephadm 2024-09-21T17:22:25.675829+0000 mgr.smithi050.baqqjh (mgr.14203) 75 : cephadm [INF] Reconfiguring daemon mon.smithi170 on smithi170 2024-09-21T17:22:28.926 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: cluster 2024-09-21T17:22:27.096059+0000 mgr.smithi050.baqqjh (mgr.14203) 76 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:28.926 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: cluster 2024-09-21T17:22:27.096059+0000 mgr.smithi050.baqqjh (mgr.14203) 76 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:28.926 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.885788+0000 mon.smithi050 (mon.0) 337 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.926 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.885788+0000 mon.smithi050 (mon.0) 337 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.926 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.894722+0000 mon.smithi050 (mon.0) 338 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.926 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.894722+0000 mon.smithi050 (mon.0) 338 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.926 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.904417+0000 mon.smithi050 (mon.0) 339 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.904417+0000 mon.smithi050 (mon.0) 339 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.908046+0000 mon.smithi050 (mon.0) 340 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi050.front.sepia.ceph.com:9093"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.908046+0000 mon.smithi050 (mon.0) 340 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi050.front.sepia.ceph.com:9093"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.915725+0000 mon.smithi050 (mon.0) 341 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.915725+0000 mon.smithi050 (mon.0) 341 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.937664+0000 mon.smithi050 (mon.0) 342 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.937664+0000 mon.smithi050 (mon.0) 342 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.949796+0000 mon.smithi050 (mon.0) 343 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi050.front.sepia.ceph.com:3000"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.949796+0000 mon.smithi050 (mon.0) 343 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi050.front.sepia.ceph.com:3000"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.958462+0000 mon.smithi050 (mon.0) 344 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.958462+0000 mon.smithi050 (mon.0) 344 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.974602+0000 mon.smithi050 (mon.0) 345 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.974602+0000 mon.smithi050 (mon.0) 345 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:22:28.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.984596+0000 mon.smithi050 (mon.0) 346 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi050.front.sepia.ceph.com:9095"} : dispatch 2024-09-21T17:22:28.928 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.984596+0000 mon.smithi050 (mon.0) 346 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi050.front.sepia.ceph.com:9095"} : dispatch 2024-09-21T17:22:28.928 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.992667+0000 mon.smithi050 (mon.0) 347 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.928 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:27.992667+0000 mon.smithi050 (mon.0) 347 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:28.928 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:28.311433+0000 mon.smithi050 (mon.0) 348 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:28.928 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:28.311433+0000 mon.smithi050 (mon.0) 348 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:28.928 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:28.473956+0000 mon.smithi050 (mon.0) 349 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:22:28.928 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:28 smithi050 bash[19920]: audit 2024-09-21T17:22:28.473956+0000 mon.smithi050 (mon.0) 349 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:22:29.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: cluster 2024-09-21T17:22:27.096059+0000 mgr.smithi050.baqqjh (mgr.14203) 76 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: cluster 2024-09-21T17:22:27.096059+0000 mgr.smithi050.baqqjh (mgr.14203) 76 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.885788+0000 mon.smithi050 (mon.0) 337 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.885788+0000 mon.smithi050 (mon.0) 337 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.894722+0000 mon.smithi050 (mon.0) 338 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.894722+0000 mon.smithi050 (mon.0) 338 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.904417+0000 mon.smithi050 (mon.0) 339 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.904417+0000 mon.smithi050 (mon.0) 339 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.908046+0000 mon.smithi050 (mon.0) 340 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi050.front.sepia.ceph.com:9093"} : dispatch 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.908046+0000 mon.smithi050 (mon.0) 340 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi050.front.sepia.ceph.com:9093"} : dispatch 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.915725+0000 mon.smithi050 (mon.0) 341 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.915725+0000 mon.smithi050 (mon.0) 341 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.937664+0000 mon.smithi050 (mon.0) 342 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-21T17:22:29.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.937664+0000 mon.smithi050 (mon.0) 342 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.949796+0000 mon.smithi050 (mon.0) 343 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi050.front.sepia.ceph.com:3000"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.949796+0000 mon.smithi050 (mon.0) 343 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi050.front.sepia.ceph.com:3000"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.958462+0000 mon.smithi050 (mon.0) 344 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.958462+0000 mon.smithi050 (mon.0) 344 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.974602+0000 mon.smithi050 (mon.0) 345 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.974602+0000 mon.smithi050 (mon.0) 345 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.984596+0000 mon.smithi050 (mon.0) 346 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi050.front.sepia.ceph.com:9095"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.984596+0000 mon.smithi050 (mon.0) 346 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi050.front.sepia.ceph.com:9095"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.992667+0000 mon.smithi050 (mon.0) 347 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:27.992667+0000 mon.smithi050 (mon.0) 347 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:28.311433+0000 mon.smithi050 (mon.0) 348 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:28.311433+0000 mon.smithi050 (mon.0) 348 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:29.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:28.473956+0000 mon.smithi050 (mon.0) 349 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:22:29.112 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:28 smithi170 bash[24572]: audit 2024-09-21T17:22:28.473956+0000 mon.smithi050 (mon.0) 349 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.905454+0000 mgr.smithi050.baqqjh (mgr.14203) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.905454+0000 mgr.smithi050.baqqjh (mgr.14203) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.908956+0000 mgr.smithi050.baqqjh (mgr.14203) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi050.front.sepia.ceph.com:9093"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.908956+0000 mgr.smithi050.baqqjh (mgr.14203) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi050.front.sepia.ceph.com:9093"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.938695+0000 mgr.smithi050.baqqjh (mgr.14203) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.938695+0000 mgr.smithi050.baqqjh (mgr.14203) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.950810+0000 mgr.smithi050.baqqjh (mgr.14203) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi050.front.sepia.ceph.com:3000"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.950810+0000 mgr.smithi050.baqqjh (mgr.14203) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi050.front.sepia.ceph.com:3000"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.975737+0000 mgr.smithi050.baqqjh (mgr.14203) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.975737+0000 mgr.smithi050.baqqjh (mgr.14203) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:22:29.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.985842+0000 mgr.smithi050.baqqjh (mgr.14203) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi050.front.sepia.ceph.com:9095"}]: dispatch 2024-09-21T17:22:29.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:27.985842+0000 mgr.smithi050.baqqjh (mgr.14203) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi050.front.sepia.ceph.com:9095"}]: dispatch 2024-09-21T17:22:29.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:28.312603+0000 mgr.smithi050.baqqjh (mgr.14203) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:29.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:28.312603+0000 mgr.smithi050.baqqjh (mgr.14203) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:29.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:28.925741+0000 mon.smithi050 (mon.0) 350 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:29.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:28.925741+0000 mon.smithi050 (mon.0) 350 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:29.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:29.541514+0000 mon.smithi050 (mon.0) 351 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:29.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:29 smithi050 bash[19920]: audit 2024-09-21T17:22:29.541514+0000 mon.smithi050 (mon.0) 351 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:30.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.905454+0000 mgr.smithi050.baqqjh (mgr.14203) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.905454+0000 mgr.smithi050.baqqjh (mgr.14203) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.908956+0000 mgr.smithi050.baqqjh (mgr.14203) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi050.front.sepia.ceph.com:9093"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.908956+0000 mgr.smithi050.baqqjh (mgr.14203) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi050.front.sepia.ceph.com:9093"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.938695+0000 mgr.smithi050.baqqjh (mgr.14203) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.938695+0000 mgr.smithi050.baqqjh (mgr.14203) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.950810+0000 mgr.smithi050.baqqjh (mgr.14203) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi050.front.sepia.ceph.com:3000"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.950810+0000 mgr.smithi050.baqqjh (mgr.14203) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi050.front.sepia.ceph.com:3000"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.975737+0000 mgr.smithi050.baqqjh (mgr.14203) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.975737+0000 mgr.smithi050.baqqjh (mgr.14203) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.985842+0000 mgr.smithi050.baqqjh (mgr.14203) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi050.front.sepia.ceph.com:9095"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:27.985842+0000 mgr.smithi050.baqqjh (mgr.14203) 82 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi050.front.sepia.ceph.com:9095"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:28.312603+0000 mgr.smithi050.baqqjh (mgr.14203) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:30.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:28.312603+0000 mgr.smithi050.baqqjh (mgr.14203) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:30.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:28.925741+0000 mon.smithi050 (mon.0) 350 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:30.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:28.925741+0000 mon.smithi050 (mon.0) 350 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:30.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:29.541514+0000 mon.smithi050 (mon.0) 351 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:30.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:29 smithi170 bash[24572]: audit 2024-09-21T17:22:29.541514+0000 mon.smithi050 (mon.0) 351 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:22:30.677 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:22:30.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:30 smithi050 bash[19920]: audit 2024-09-21T17:22:28.927413+0000 mgr.smithi050.baqqjh (mgr.14203) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:30.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:30 smithi050 bash[19920]: audit 2024-09-21T17:22:28.927413+0000 mgr.smithi050.baqqjh (mgr.14203) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:30.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:30 smithi050 bash[19920]: cluster 2024-09-21T17:22:29.096476+0000 mgr.smithi050.baqqjh (mgr.14203) 85 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:30.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:30 smithi050 bash[19920]: cluster 2024-09-21T17:22:29.096476+0000 mgr.smithi050.baqqjh (mgr.14203) 85 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:30.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:30 smithi050 bash[19920]: audit 2024-09-21T17:22:29.543012+0000 mgr.smithi050.baqqjh (mgr.14203) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:30.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:30 smithi050 bash[19920]: audit 2024-09-21T17:22:29.543012+0000 mgr.smithi050.baqqjh (mgr.14203) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:30.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:30 smithi050 bash[19920]: audit 2024-09-21T17:22:30.569505+0000 mon.smithi050 (mon.0) 352 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:30.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:30 smithi050 bash[19920]: audit 2024-09-21T17:22:30.569505+0000 mon.smithi050 (mon.0) 352 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:31.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:30 smithi170 bash[24572]: audit 2024-09-21T17:22:28.927413+0000 mgr.smithi050.baqqjh (mgr.14203) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:31.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:30 smithi170 bash[24572]: audit 2024-09-21T17:22:28.927413+0000 mgr.smithi050.baqqjh (mgr.14203) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:31.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:30 smithi170 bash[24572]: cluster 2024-09-21T17:22:29.096476+0000 mgr.smithi050.baqqjh (mgr.14203) 85 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:31.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:30 smithi170 bash[24572]: cluster 2024-09-21T17:22:29.096476+0000 mgr.smithi050.baqqjh (mgr.14203) 85 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:31.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:30 smithi170 bash[24572]: audit 2024-09-21T17:22:29.543012+0000 mgr.smithi050.baqqjh (mgr.14203) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:31.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:30 smithi170 bash[24572]: audit 2024-09-21T17:22:29.543012+0000 mgr.smithi050.baqqjh (mgr.14203) 86 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:22:31.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:30 smithi170 bash[24572]: audit 2024-09-21T17:22:30.569505+0000 mon.smithi050 (mon.0) 352 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:31.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:30 smithi170 bash[24572]: audit 2024-09-21T17:22:30.569505+0000 mon.smithi050 (mon.0) 352 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:32.196 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:22:32.803 INFO:teuthology.orchestra.run.smithi050.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-21T17:22:32.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:32 smithi050 bash[19920]: cluster 2024-09-21T17:22:31.096884+0000 mgr.smithi050.baqqjh (mgr.14203) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:32.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:32 smithi050 bash[19920]: cluster 2024-09-21T17:22:31.096884+0000 mgr.smithi050.baqqjh (mgr.14203) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:32.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:32 smithi050 bash[19920]: audit 2024-09-21T17:22:32.194860+0000 mon.smithi050 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.50:0/1382009740' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:32.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:32 smithi050 bash[19920]: audit 2024-09-21T17:22:32.194860+0000 mon.smithi050 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.50:0/1382009740' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:33.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:32 smithi170 bash[24572]: cluster 2024-09-21T17:22:31.096884+0000 mgr.smithi050.baqqjh (mgr.14203) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:33.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:32 smithi170 bash[24572]: cluster 2024-09-21T17:22:31.096884+0000 mgr.smithi050.baqqjh (mgr.14203) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:33.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:32 smithi170 bash[24572]: audit 2024-09-21T17:22:32.194860+0000 mon.smithi050 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.50:0/1382009740' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:33.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:32 smithi170 bash[24572]: audit 2024-09-21T17:22:32.194860+0000 mon.smithi050 (mon.0) 353 : audit [DBG] from='client.? 172.21.15.50:0/1382009740' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:33.804 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: cluster 2024-09-21T17:22:33.097340+0000 mgr.smithi050.baqqjh (mgr.14203) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: cluster 2024-09-21T17:22:33.097340+0000 mgr.smithi050.baqqjh (mgr.14203) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:33.896767+0000 mon.smithi050 (mon.0) 354 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:33.896767+0000 mon.smithi050 (mon.0) 354 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:33.901478+0000 mon.smithi050 (mon.0) 355 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:33.901478+0000 mon.smithi050 (mon.0) 355 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:33.966607+0000 mon.smithi050 (mon.0) 356 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:33.966607+0000 mon.smithi050 (mon.0) 356 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:33.971169+0000 mon.smithi050 (mon.0) 357 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:33.971169+0000 mon.smithi050 (mon.0) 357 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.598806+0000 mon.smithi050 (mon.0) 358 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.598806+0000 mon.smithi050 (mon.0) 358 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.605605+0000 mon.smithi050 (mon.0) 359 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.605605+0000 mon.smithi050 (mon.0) 359 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.612217+0000 mon.smithi050 (mon.0) 360 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.612217+0000 mon.smithi050 (mon.0) 360 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.618351+0000 mon.smithi050 (mon.0) 361 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.618351+0000 mon.smithi050 (mon.0) 361 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.620002+0000 mon.smithi050 (mon.0) 362 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.620002+0000 mon.smithi050 (mon.0) 362 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.621030+0000 mon.smithi050 (mon.0) 363 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.621030+0000 mon.smithi050 (mon.0) 363 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:22:34.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.627198+0000 mon.smithi050 (mon.0) 364 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.627198+0000 mon.smithi050 (mon.0) 364 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.629916+0000 mon.smithi050 (mon.0) 365 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.629916+0000 mon.smithi050 (mon.0) 365 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.634578+0000 mon.smithi050 (mon.0) 366 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.634578+0000 mon.smithi050 (mon.0) 366 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.635405+0000 mon.smithi050 (mon.0) 367 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.635405+0000 mon.smithi050 (mon.0) 367 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.638904+0000 mon.smithi050 (mon.0) 368 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.638904+0000 mon.smithi050 (mon.0) 368 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.639654+0000 mon.smithi050 (mon.0) 369 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:34.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:34 smithi050 bash[19920]: audit 2024-09-21T17:22:34.639654+0000 mon.smithi050 (mon.0) 369 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:35.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: cluster 2024-09-21T17:22:33.097340+0000 mgr.smithi050.baqqjh (mgr.14203) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:35.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: cluster 2024-09-21T17:22:33.097340+0000 mgr.smithi050.baqqjh (mgr.14203) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:35.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:33.896767+0000 mon.smithi050 (mon.0) 354 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:33.896767+0000 mon.smithi050 (mon.0) 354 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:33.901478+0000 mon.smithi050 (mon.0) 355 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:33.901478+0000 mon.smithi050 (mon.0) 355 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:33.966607+0000 mon.smithi050 (mon.0) 356 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:33.966607+0000 mon.smithi050 (mon.0) 356 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:33.971169+0000 mon.smithi050 (mon.0) 357 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:33.971169+0000 mon.smithi050 (mon.0) 357 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.598806+0000 mon.smithi050 (mon.0) 358 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.598806+0000 mon.smithi050 (mon.0) 358 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.605605+0000 mon.smithi050 (mon.0) 359 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.605605+0000 mon.smithi050 (mon.0) 359 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.612217+0000 mon.smithi050 (mon.0) 360 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.612217+0000 mon.smithi050 (mon.0) 360 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.618351+0000 mon.smithi050 (mon.0) 361 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.618351+0000 mon.smithi050 (mon.0) 361 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.620002+0000 mon.smithi050 (mon.0) 362 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:35.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.620002+0000 mon.smithi050 (mon.0) 362 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.621030+0000 mon.smithi050 (mon.0) 363 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.621030+0000 mon.smithi050 (mon.0) 363 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.627198+0000 mon.smithi050 (mon.0) 364 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.627198+0000 mon.smithi050 (mon.0) 364 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.629916+0000 mon.smithi050 (mon.0) 365 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.629916+0000 mon.smithi050 (mon.0) 365 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.634578+0000 mon.smithi050 (mon.0) 366 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.634578+0000 mon.smithi050 (mon.0) 366 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.635405+0000 mon.smithi050 (mon.0) 367 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.635405+0000 mon.smithi050 (mon.0) 367 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.638904+0000 mon.smithi050 (mon.0) 368 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.638904+0000 mon.smithi050 (mon.0) 368 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.639654+0000 mon.smithi050 (mon.0) 369 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:35.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:34 smithi170 bash[24572]: audit 2024-09-21T17:22:34.639654+0000 mon.smithi050 (mon.0) 369 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:22:36.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:36 smithi050 bash[19920]: cluster 2024-09-21T17:22:35.097619+0000 mgr.smithi050.baqqjh (mgr.14203) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:36.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:36 smithi050 bash[19920]: cluster 2024-09-21T17:22:35.097619+0000 mgr.smithi050.baqqjh (mgr.14203) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:37.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:36 smithi170 bash[24572]: cluster 2024-09-21T17:22:35.097619+0000 mgr.smithi050.baqqjh (mgr.14203) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:37.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:36 smithi170 bash[24572]: cluster 2024-09-21T17:22:35.097619+0000 mgr.smithi050.baqqjh (mgr.14203) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:38.584 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:22:38.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:38 smithi050 bash[19920]: cluster 2024-09-21T17:22:37.098000+0000 mgr.smithi050.baqqjh (mgr.14203) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:38.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:38 smithi050 bash[19920]: cluster 2024-09-21T17:22:37.098000+0000 mgr.smithi050.baqqjh (mgr.14203) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:39.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:38 smithi170 bash[24572]: cluster 2024-09-21T17:22:37.098000+0000 mgr.smithi050.baqqjh (mgr.14203) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:39.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:38 smithi170 bash[24572]: cluster 2024-09-21T17:22:37.098000+0000 mgr.smithi050.baqqjh (mgr.14203) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:40.552 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:22:40.833 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:40 smithi050 bash[19920]: cluster 2024-09-21T17:22:39.098381+0000 mgr.smithi050.baqqjh (mgr.14203) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:40.833 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:40 smithi050 bash[19920]: cluster 2024-09-21T17:22:39.098381+0000 mgr.smithi050.baqqjh (mgr.14203) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:40.833 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:40 smithi050 bash[19920]: audit 2024-09-21T17:22:40.551552+0000 mon.smithi050 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.50:0/407319230' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:40.833 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:40 smithi050 bash[19920]: audit 2024-09-21T17:22:40.551552+0000 mon.smithi050 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.50:0/407319230' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:40 smithi170 bash[24572]: cluster 2024-09-21T17:22:39.098381+0000 mgr.smithi050.baqqjh (mgr.14203) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:40 smithi170 bash[24572]: cluster 2024-09-21T17:22:39.098381+0000 mgr.smithi050.baqqjh (mgr.14203) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:40 smithi170 bash[24572]: audit 2024-09-21T17:22:40.551552+0000 mon.smithi050 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.50:0/407319230' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:40 smithi170 bash[24572]: audit 2024-09-21T17:22:40.551552+0000 mon.smithi050 (mon.0) 370 : audit [DBG] from='client.? 172.21.15.50:0/407319230' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:41.374 INFO:teuthology.orchestra.run.smithi050.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-21T17:22:42.376 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:22:42.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:42 smithi050 bash[19920]: cluster 2024-09-21T17:22:41.098727+0000 mgr.smithi050.baqqjh (mgr.14203) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:42.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:42 smithi050 bash[19920]: cluster 2024-09-21T17:22:41.098727+0000 mgr.smithi050.baqqjh (mgr.14203) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:42 smithi170 bash[24572]: cluster 2024-09-21T17:22:41.098727+0000 mgr.smithi050.baqqjh (mgr.14203) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:42 smithi170 bash[24572]: cluster 2024-09-21T17:22:41.098727+0000 mgr.smithi050.baqqjh (mgr.14203) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:44.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: cluster 2024-09-21T17:22:43.099184+0000 mgr.smithi050.baqqjh (mgr.14203) 93 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: cluster 2024-09-21T17:22:43.099184+0000 mgr.smithi050.baqqjh (mgr.14203) 93 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:43.754623+0000 mon.smithi170 (mon.1) 2 : audit [INF] from='client.? 172.21.15.170:0/3869141260' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"} : dispatch 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:43.754623+0000 mon.smithi170 (mon.1) 2 : audit [INF] from='client.? 172.21.15.170:0/3869141260' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"} : dispatch 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:43.756157+0000 mon.smithi050 (mon.0) 371 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"} : dispatch 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:43.756157+0000 mon.smithi050 (mon.0) 371 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"} : dispatch 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:43.758659+0000 mon.smithi050 (mon.0) 372 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"}]': finished 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:43.758659+0000 mon.smithi050 (mon.0) 372 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"}]': finished 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: cluster 2024-09-21T17:22:43.761443+0000 mon.smithi050 (mon.0) 373 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: cluster 2024-09-21T17:22:43.761443+0000 mon.smithi050 (mon.0) 373 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:43.761828+0000 mon.smithi050 (mon.0) 374 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:43.761828+0000 mon.smithi050 (mon.0) 374 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:44.694731+0000 mon.smithi050 (mon.0) 375 : audit [INF] from='client.? 172.21.15.50:0/3490440930' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0759c15c-a958-43d1-a16a-292bbf5d1b60"} : dispatch 2024-09-21T17:22:44.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:44 smithi050 bash[19920]: audit 2024-09-21T17:22:44.694731+0000 mon.smithi050 (mon.0) 375 : audit [INF] from='client.? 172.21.15.50:0/3490440930' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0759c15c-a958-43d1-a16a-292bbf5d1b60"} : dispatch 2024-09-21T17:22:45.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: cluster 2024-09-21T17:22:43.099184+0000 mgr.smithi050.baqqjh (mgr.14203) 93 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:45.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: cluster 2024-09-21T17:22:43.099184+0000 mgr.smithi050.baqqjh (mgr.14203) 93 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:45.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:43.754623+0000 mon.smithi170 (mon.1) 2 : audit [INF] from='client.? 172.21.15.170:0/3869141260' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"} : dispatch 2024-09-21T17:22:45.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:43.754623+0000 mon.smithi170 (mon.1) 2 : audit [INF] from='client.? 172.21.15.170:0/3869141260' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"} : dispatch 2024-09-21T17:22:45.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:43.756157+0000 mon.smithi050 (mon.0) 371 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"} : dispatch 2024-09-21T17:22:45.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:43.756157+0000 mon.smithi050 (mon.0) 371 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"} : dispatch 2024-09-21T17:22:45.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:43.758659+0000 mon.smithi050 (mon.0) 372 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"}]': finished 2024-09-21T17:22:45.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:43.758659+0000 mon.smithi050 (mon.0) 372 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "01a3d8da-4808-4bc7-9af6-3c46c4bd4034"}]': finished 2024-09-21T17:22:45.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: cluster 2024-09-21T17:22:43.761443+0000 mon.smithi050 (mon.0) 373 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-21T17:22:45.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: cluster 2024-09-21T17:22:43.761443+0000 mon.smithi050 (mon.0) 373 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-21T17:22:45.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:43.761828+0000 mon.smithi050 (mon.0) 374 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:45.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:43.761828+0000 mon.smithi050 (mon.0) 374 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:45.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:44.694731+0000 mon.smithi050 (mon.0) 375 : audit [INF] from='client.? 172.21.15.50:0/3490440930' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0759c15c-a958-43d1-a16a-292bbf5d1b60"} : dispatch 2024-09-21T17:22:45.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:44 smithi170 bash[24572]: audit 2024-09-21T17:22:44.694731+0000 mon.smithi050 (mon.0) 375 : audit [INF] from='client.? 172.21.15.50:0/3490440930' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "0759c15c-a958-43d1-a16a-292bbf5d1b60"} : dispatch 2024-09-21T17:22:45.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:44.697557+0000 mon.smithi050 (mon.0) 376 : audit [INF] from='client.? 172.21.15.50:0/3490440930' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0759c15c-a958-43d1-a16a-292bbf5d1b60"}]': finished 2024-09-21T17:22:45.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:44.697557+0000 mon.smithi050 (mon.0) 376 : audit [INF] from='client.? 172.21.15.50:0/3490440930' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0759c15c-a958-43d1-a16a-292bbf5d1b60"}]': finished 2024-09-21T17:22:45.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: cluster 2024-09-21T17:22:44.702563+0000 mon.smithi050 (mon.0) 377 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-21T17:22:45.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: cluster 2024-09-21T17:22:44.702563+0000 mon.smithi050 (mon.0) 377 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-21T17:22:45.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:44.703180+0000 mon.smithi050 (mon.0) 378 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:45.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:44.703180+0000 mon.smithi050 (mon.0) 378 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:45.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:44.703320+0000 mon.smithi050 (mon.0) 379 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:45.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:44.703320+0000 mon.smithi050 (mon.0) 379 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:45.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:45.226542+0000 mon.smithi170 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.170:0/2831642413' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:45.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:45.226542+0000 mon.smithi170 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.170:0/2831642413' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:45.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:45.570005+0000 mon.smithi050 (mon.0) 380 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:45.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:45 smithi050 bash[19920]: audit 2024-09-21T17:22:45.570005+0000 mon.smithi050 (mon.0) 380 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:46.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:44.697557+0000 mon.smithi050 (mon.0) 376 : audit [INF] from='client.? 172.21.15.50:0/3490440930' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0759c15c-a958-43d1-a16a-292bbf5d1b60"}]': finished 2024-09-21T17:22:46.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:44.697557+0000 mon.smithi050 (mon.0) 376 : audit [INF] from='client.? 172.21.15.50:0/3490440930' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "0759c15c-a958-43d1-a16a-292bbf5d1b60"}]': finished 2024-09-21T17:22:46.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: cluster 2024-09-21T17:22:44.702563+0000 mon.smithi050 (mon.0) 377 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-21T17:22:46.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: cluster 2024-09-21T17:22:44.702563+0000 mon.smithi050 (mon.0) 377 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-21T17:22:46.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:44.703180+0000 mon.smithi050 (mon.0) 378 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:46.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:44.703180+0000 mon.smithi050 (mon.0) 378 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:46.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:44.703320+0000 mon.smithi050 (mon.0) 379 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:46.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:44.703320+0000 mon.smithi050 (mon.0) 379 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:46.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:45.226542+0000 mon.smithi170 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.170:0/2831642413' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:46.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:45.226542+0000 mon.smithi170 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.170:0/2831642413' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:46.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:45.570005+0000 mon.smithi050 (mon.0) 380 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:46.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:45 smithi170 bash[24572]: audit 2024-09-21T17:22:45.570005+0000 mon.smithi050 (mon.0) 380 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:22:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:46 smithi050 bash[19920]: cluster 2024-09-21T17:22:45.099641+0000 mgr.smithi050.baqqjh (mgr.14203) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:46 smithi050 bash[19920]: cluster 2024-09-21T17:22:45.099641+0000 mgr.smithi050.baqqjh (mgr.14203) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:46 smithi050 bash[19920]: audit 2024-09-21T17:22:46.207060+0000 mon.smithi050 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.50:0/160943615' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:46 smithi050 bash[19920]: audit 2024-09-21T17:22:46.207060+0000 mon.smithi050 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.50:0/160943615' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:47.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:46 smithi170 bash[24572]: cluster 2024-09-21T17:22:45.099641+0000 mgr.smithi050.baqqjh (mgr.14203) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:47.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:46 smithi170 bash[24572]: cluster 2024-09-21T17:22:45.099641+0000 mgr.smithi050.baqqjh (mgr.14203) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:47.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:46 smithi170 bash[24572]: audit 2024-09-21T17:22:46.207060+0000 mon.smithi050 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.50:0/160943615' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:47.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:46 smithi170 bash[24572]: audit 2024-09-21T17:22:46.207060+0000 mon.smithi050 (mon.0) 381 : audit [DBG] from='client.? 172.21.15.50:0/160943615' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:47.157 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:22:48.738 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:22:48.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:48 smithi050 bash[19920]: cluster 2024-09-21T17:22:47.099963+0000 mgr.smithi050.baqqjh (mgr.14203) 95 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:48.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:48 smithi050 bash[19920]: cluster 2024-09-21T17:22:47.099963+0000 mgr.smithi050.baqqjh (mgr.14203) 95 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:49.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:48 smithi170 bash[24572]: cluster 2024-09-21T17:22:47.099963+0000 mgr.smithi050.baqqjh (mgr.14203) 95 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:49.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:48 smithi170 bash[24572]: cluster 2024-09-21T17:22:47.099963+0000 mgr.smithi050.baqqjh (mgr.14203) 95 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:49.436 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1726939364,"num_remapped_pgs":0} 2024-09-21T17:22:49.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:48.736978+0000 mon.smithi050 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.50:0/2945262895' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:49.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:48.736978+0000 mon.smithi050 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.50:0/2945262895' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:49.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.183626+0000 mon.smithi170 (mon.1) 4 : audit [INF] from='client.? 172.21.15.170:0/1446841565' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"} : dispatch 2024-09-21T17:22:49.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.183626+0000 mon.smithi170 (mon.1) 4 : audit [INF] from='client.? 172.21.15.170:0/1446841565' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"} : dispatch 2024-09-21T17:22:49.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.185134+0000 mon.smithi050 (mon.0) 383 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"} : dispatch 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.185134+0000 mon.smithi050 (mon.0) 383 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"} : dispatch 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.188331+0000 mon.smithi050 (mon.0) 384 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"}]': finished 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.188331+0000 mon.smithi050 (mon.0) 384 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"}]': finished 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: cluster 2024-09-21T17:22:49.193029+0000 mon.smithi050 (mon.0) 385 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: cluster 2024-09-21T17:22:49.193029+0000 mon.smithi050 (mon.0) 385 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.193431+0000 mon.smithi050 (mon.0) 386 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.193431+0000 mon.smithi050 (mon.0) 386 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.193928+0000 mon.smithi050 (mon.0) 387 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.193928+0000 mon.smithi050 (mon.0) 387 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.194379+0000 mon.smithi050 (mon.0) 388 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:49.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:49 smithi050 bash[19920]: audit 2024-09-21T17:22:49.194379+0000 mon.smithi050 (mon.0) 388 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:50.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:48.736978+0000 mon.smithi050 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.50:0/2945262895' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:50.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:48.736978+0000 mon.smithi050 (mon.0) 382 : audit [DBG] from='client.? 172.21.15.50:0/2945262895' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:50.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.183626+0000 mon.smithi170 (mon.1) 4 : audit [INF] from='client.? 172.21.15.170:0/1446841565' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"} : dispatch 2024-09-21T17:22:50.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.183626+0000 mon.smithi170 (mon.1) 4 : audit [INF] from='client.? 172.21.15.170:0/1446841565' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"} : dispatch 2024-09-21T17:22:50.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.185134+0000 mon.smithi050 (mon.0) 383 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"} : dispatch 2024-09-21T17:22:50.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.185134+0000 mon.smithi050 (mon.0) 383 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"} : dispatch 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.188331+0000 mon.smithi050 (mon.0) 384 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"}]': finished 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.188331+0000 mon.smithi050 (mon.0) 384 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b0a4502a-ab47-4c75-aba8-787cda9ff586"}]': finished 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: cluster 2024-09-21T17:22:49.193029+0000 mon.smithi050 (mon.0) 385 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: cluster 2024-09-21T17:22:49.193029+0000 mon.smithi050 (mon.0) 385 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.193431+0000 mon.smithi050 (mon.0) 386 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.193431+0000 mon.smithi050 (mon.0) 386 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.193928+0000 mon.smithi050 (mon.0) 387 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.193928+0000 mon.smithi050 (mon.0) 387 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.194379+0000 mon.smithi050 (mon.0) 388 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:50.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:49 smithi170 bash[24572]: audit 2024-09-21T17:22:49.194379+0000 mon.smithi050 (mon.0) 388 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:50.438 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:22:50.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: cluster 2024-09-21T17:22:49.100233+0000 mgr.smithi050.baqqjh (mgr.14203) 96 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: cluster 2024-09-21T17:22:49.100233+0000 mgr.smithi050.baqqjh (mgr.14203) 96 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.817645+0000 mon.smithi050 (mon.0) 389 : audit [INF] from='client.? 172.21.15.50:0/1864557586' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2dd69733-3b18-4f8c-9066-2b215746bb7c"} : dispatch 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.817645+0000 mon.smithi050 (mon.0) 389 : audit [INF] from='client.? 172.21.15.50:0/1864557586' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2dd69733-3b18-4f8c-9066-2b215746bb7c"} : dispatch 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.821094+0000 mon.smithi050 (mon.0) 390 : audit [INF] from='client.? 172.21.15.50:0/1864557586' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2dd69733-3b18-4f8c-9066-2b215746bb7c"}]': finished 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.821094+0000 mon.smithi050 (mon.0) 390 : audit [INF] from='client.? 172.21.15.50:0/1864557586' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2dd69733-3b18-4f8c-9066-2b215746bb7c"}]': finished 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: cluster 2024-09-21T17:22:49.826087+0000 mon.smithi050 (mon.0) 391 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: cluster 2024-09-21T17:22:49.826087+0000 mon.smithi050 (mon.0) 391 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.826361+0000 mon.smithi050 (mon.0) 392 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.826361+0000 mon.smithi050 (mon.0) 392 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.826588+0000 mon.smithi050 (mon.0) 393 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.826588+0000 mon.smithi050 (mon.0) 393 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.826783+0000 mon.smithi050 (mon.0) 394 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.826783+0000 mon.smithi050 (mon.0) 394 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:50.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.827006+0000 mon.smithi050 (mon.0) 395 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:50.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:49.827006+0000 mon.smithi050 (mon.0) 395 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:50.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:50.716686+0000 mon.smithi170 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.170:0/1386822833' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:50.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:50 smithi050 bash[19920]: audit 2024-09-21T17:22:50.716686+0000 mon.smithi170 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.170:0/1386822833' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: cluster 2024-09-21T17:22:49.100233+0000 mgr.smithi050.baqqjh (mgr.14203) 96 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: cluster 2024-09-21T17:22:49.100233+0000 mgr.smithi050.baqqjh (mgr.14203) 96 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.817645+0000 mon.smithi050 (mon.0) 389 : audit [INF] from='client.? 172.21.15.50:0/1864557586' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2dd69733-3b18-4f8c-9066-2b215746bb7c"} : dispatch 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.817645+0000 mon.smithi050 (mon.0) 389 : audit [INF] from='client.? 172.21.15.50:0/1864557586' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2dd69733-3b18-4f8c-9066-2b215746bb7c"} : dispatch 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.821094+0000 mon.smithi050 (mon.0) 390 : audit [INF] from='client.? 172.21.15.50:0/1864557586' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2dd69733-3b18-4f8c-9066-2b215746bb7c"}]': finished 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.821094+0000 mon.smithi050 (mon.0) 390 : audit [INF] from='client.? 172.21.15.50:0/1864557586' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2dd69733-3b18-4f8c-9066-2b215746bb7c"}]': finished 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: cluster 2024-09-21T17:22:49.826087+0000 mon.smithi050 (mon.0) 391 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: cluster 2024-09-21T17:22:49.826087+0000 mon.smithi050 (mon.0) 391 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.826361+0000 mon.smithi050 (mon.0) 392 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.826361+0000 mon.smithi050 (mon.0) 392 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.826588+0000 mon.smithi050 (mon.0) 393 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.826588+0000 mon.smithi050 (mon.0) 393 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:51.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.826783+0000 mon.smithi050 (mon.0) 394 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:51.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.826783+0000 mon.smithi050 (mon.0) 394 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:51.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.827006+0000 mon.smithi050 (mon.0) 395 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:51.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:49.827006+0000 mon.smithi050 (mon.0) 395 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:51.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:50.716686+0000 mon.smithi170 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.170:0/1386822833' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:51.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:50 smithi170 bash[24572]: audit 2024-09-21T17:22:50.716686+0000 mon.smithi170 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.170:0/1386822833' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:52.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:51 smithi170 bash[24572]: audit 2024-09-21T17:22:51.382979+0000 mon.smithi050 (mon.0) 396 : audit [DBG] from='client.? 172.21.15.50:0/480605384' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:52.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:51 smithi170 bash[24572]: audit 2024-09-21T17:22:51.382979+0000 mon.smithi050 (mon.0) 396 : audit [DBG] from='client.? 172.21.15.50:0/480605384' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:52.161 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:51 smithi050 bash[19920]: audit 2024-09-21T17:22:51.382979+0000 mon.smithi050 (mon.0) 396 : audit [DBG] from='client.? 172.21.15.50:0/480605384' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:52.161 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:51 smithi050 bash[19920]: audit 2024-09-21T17:22:51.382979+0000 mon.smithi050 (mon.0) 396 : audit [DBG] from='client.? 172.21.15.50:0/480605384' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:53.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:52 smithi170 bash[24572]: cluster 2024-09-21T17:22:51.100465+0000 mgr.smithi050.baqqjh (mgr.14203) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:53.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:52 smithi170 bash[24572]: cluster 2024-09-21T17:22:51.100465+0000 mgr.smithi050.baqqjh (mgr.14203) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:53.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:52 smithi050 bash[19920]: cluster 2024-09-21T17:22:51.100465+0000 mgr.smithi050.baqqjh (mgr.14203) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:53.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:52 smithi050 bash[19920]: cluster 2024-09-21T17:22:51.100465+0000 mgr.smithi050.baqqjh (mgr.14203) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:54.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:53 smithi170 bash[24572]: cluster 2024-09-21T17:22:53.100873+0000 mgr.smithi050.baqqjh (mgr.14203) 98 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:54.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:53 smithi170 bash[24572]: cluster 2024-09-21T17:22:53.100873+0000 mgr.smithi050.baqqjh (mgr.14203) 98 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:54.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:53 smithi050 bash[19920]: cluster 2024-09-21T17:22:53.100873+0000 mgr.smithi050.baqqjh (mgr.14203) 98 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:54.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:53 smithi050 bash[19920]: cluster 2024-09-21T17:22:53.100873+0000 mgr.smithi050.baqqjh (mgr.14203) 98 : cluster [DBG] pgmap v46: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.233666+0000 mon.smithi170 (mon.1) 6 : audit [INF] from='client.? 172.21.15.170:0/772062989' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"} : dispatch 2024-09-21T17:22:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.233666+0000 mon.smithi170 (mon.1) 6 : audit [INF] from='client.? 172.21.15.170:0/772062989' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"} : dispatch 2024-09-21T17:22:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.234732+0000 mon.smithi050 (mon.0) 397 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.234732+0000 mon.smithi050 (mon.0) 397 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.238079+0000 mon.smithi050 (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"}]': finished 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.238079+0000 mon.smithi050 (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"}]': finished 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: cluster 2024-09-21T17:22:54.243287+0000 mon.smithi050 (mon.0) 399 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: cluster 2024-09-21T17:22:54.243287+0000 mon.smithi050 (mon.0) 399 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.243697+0000 mon.smithi050 (mon.0) 400 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.243697+0000 mon.smithi050 (mon.0) 400 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.244115+0000 mon.smithi050 (mon.0) 401 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.244115+0000 mon.smithi050 (mon.0) 401 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.244528+0000 mon.smithi050 (mon.0) 402 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.244528+0000 mon.smithi050 (mon.0) 402 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.244902+0000 mon.smithi050 (mon.0) 403 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:55.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.244902+0000 mon.smithi050 (mon.0) 403 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:55.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.245274+0000 mon.smithi050 (mon.0) 404 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:22:55.111 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:54 smithi170 bash[24572]: audit 2024-09-21T17:22:54.245274+0000 mon.smithi050 (mon.0) 404 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:22:55.220 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:22:55.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.233666+0000 mon.smithi170 (mon.1) 6 : audit [INF] from='client.? 172.21.15.170:0/772062989' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"} : dispatch 2024-09-21T17:22:55.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.233666+0000 mon.smithi170 (mon.1) 6 : audit [INF] from='client.? 172.21.15.170:0/772062989' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"} : dispatch 2024-09-21T17:22:55.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.234732+0000 mon.smithi050 (mon.0) 397 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"} : dispatch 2024-09-21T17:22:55.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.234732+0000 mon.smithi050 (mon.0) 397 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"} : dispatch 2024-09-21T17:22:55.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.238079+0000 mon.smithi050 (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"}]': finished 2024-09-21T17:22:55.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.238079+0000 mon.smithi050 (mon.0) 398 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "16d97a87-74d6-4204-a4b9-a352ef162f79"}]': finished 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: cluster 2024-09-21T17:22:54.243287+0000 mon.smithi050 (mon.0) 399 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: cluster 2024-09-21T17:22:54.243287+0000 mon.smithi050 (mon.0) 399 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.243697+0000 mon.smithi050 (mon.0) 400 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.243697+0000 mon.smithi050 (mon.0) 400 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.244115+0000 mon.smithi050 (mon.0) 401 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.244115+0000 mon.smithi050 (mon.0) 401 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.244528+0000 mon.smithi050 (mon.0) 402 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.244528+0000 mon.smithi050 (mon.0) 402 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.244902+0000 mon.smithi050 (mon.0) 403 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.244902+0000 mon.smithi050 (mon.0) 403 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.245274+0000 mon.smithi050 (mon.0) 404 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:22:55.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:54 smithi050 bash[19920]: audit 2024-09-21T17:22:54.245274+0000 mon.smithi050 (mon.0) 404 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:22:55.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: cluster 2024-09-21T17:22:55.101198+0000 mgr.smithi050.baqqjh (mgr.14203) 99 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: cluster 2024-09-21T17:22:55.101198+0000 mgr.smithi050.baqqjh (mgr.14203) 99 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.354776+0000 mon.smithi050 (mon.0) 405 : audit [INF] from='client.? 172.21.15.50:0/2168923643' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e743f305-d074-457b-af5f-9dc85dcbb4bd"} : dispatch 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.354776+0000 mon.smithi050 (mon.0) 405 : audit [INF] from='client.? 172.21.15.50:0/2168923643' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e743f305-d074-457b-af5f-9dc85dcbb4bd"} : dispatch 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.356969+0000 mon.smithi050 (mon.0) 406 : audit [INF] from='client.? 172.21.15.50:0/2168923643' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e743f305-d074-457b-af5f-9dc85dcbb4bd"}]': finished 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.356969+0000 mon.smithi050 (mon.0) 406 : audit [INF] from='client.? 172.21.15.50:0/2168923643' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e743f305-d074-457b-af5f-9dc85dcbb4bd"}]': finished 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: cluster 2024-09-21T17:22:55.359841+0000 mon.smithi050 (mon.0) 407 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: cluster 2024-09-21T17:22:55.359841+0000 mon.smithi050 (mon.0) 407 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360090+0000 mon.smithi050 (mon.0) 408 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360090+0000 mon.smithi050 (mon.0) 408 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360251+0000 mon.smithi050 (mon.0) 409 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360251+0000 mon.smithi050 (mon.0) 409 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360422+0000 mon.smithi050 (mon.0) 410 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:55.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360422+0000 mon.smithi050 (mon.0) 410 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:55.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360557+0000 mon.smithi050 (mon.0) 411 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:55.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360557+0000 mon.smithi050 (mon.0) 411 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:55.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360663+0000 mon.smithi050 (mon.0) 412 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:22:55.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360663+0000 mon.smithi050 (mon.0) 412 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:22:55.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360773+0000 mon.smithi050 (mon.0) 413 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:22:55.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.360773+0000 mon.smithi050 (mon.0) 413 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:22:55.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.746413+0000 mon.smithi170 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.170:0/159031871' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:55.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:55 smithi050 bash[19920]: audit 2024-09-21T17:22:55.746413+0000 mon.smithi170 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.170:0/159031871' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: cluster 2024-09-21T17:22:55.101198+0000 mgr.smithi050.baqqjh (mgr.14203) 99 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: cluster 2024-09-21T17:22:55.101198+0000 mgr.smithi050.baqqjh (mgr.14203) 99 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.354776+0000 mon.smithi050 (mon.0) 405 : audit [INF] from='client.? 172.21.15.50:0/2168923643' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e743f305-d074-457b-af5f-9dc85dcbb4bd"} : dispatch 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.354776+0000 mon.smithi050 (mon.0) 405 : audit [INF] from='client.? 172.21.15.50:0/2168923643' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e743f305-d074-457b-af5f-9dc85dcbb4bd"} : dispatch 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.356969+0000 mon.smithi050 (mon.0) 406 : audit [INF] from='client.? 172.21.15.50:0/2168923643' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e743f305-d074-457b-af5f-9dc85dcbb4bd"}]': finished 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.356969+0000 mon.smithi050 (mon.0) 406 : audit [INF] from='client.? 172.21.15.50:0/2168923643' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e743f305-d074-457b-af5f-9dc85dcbb4bd"}]': finished 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: cluster 2024-09-21T17:22:55.359841+0000 mon.smithi050 (mon.0) 407 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: cluster 2024-09-21T17:22:55.359841+0000 mon.smithi050 (mon.0) 407 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360090+0000 mon.smithi050 (mon.0) 408 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:56.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360090+0000 mon.smithi050 (mon.0) 408 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360251+0000 mon.smithi050 (mon.0) 409 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360251+0000 mon.smithi050 (mon.0) 409 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360422+0000 mon.smithi050 (mon.0) 410 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360422+0000 mon.smithi050 (mon.0) 410 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360557+0000 mon.smithi050 (mon.0) 411 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360557+0000 mon.smithi050 (mon.0) 411 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360663+0000 mon.smithi050 (mon.0) 412 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360663+0000 mon.smithi050 (mon.0) 412 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360773+0000 mon.smithi050 (mon.0) 413 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.360773+0000 mon.smithi050 (mon.0) 413 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.746413+0000 mon.smithi170 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.170:0/159031871' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:56.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:55 smithi170 bash[24572]: audit 2024-09-21T17:22:55.746413+0000 mon.smithi170 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.170:0/159031871' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:57.187 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:22:57.995 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726939375,"num_remapped_pgs":0} 2024-09-21T17:22:58.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:58 smithi050 bash[19920]: cluster 2024-09-21T17:22:57.101527+0000 mgr.smithi050.baqqjh (mgr.14203) 100 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:58.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:58 smithi050 bash[19920]: cluster 2024-09-21T17:22:57.101527+0000 mgr.smithi050.baqqjh (mgr.14203) 100 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:58.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:58 smithi050 bash[19920]: audit 2024-09-21T17:22:57.185966+0000 mon.smithi050 (mon.0) 414 : audit [DBG] from='client.? 172.21.15.50:0/1478360483' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:58.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:58 smithi050 bash[19920]: audit 2024-09-21T17:22:57.185966+0000 mon.smithi050 (mon.0) 414 : audit [DBG] from='client.? 172.21.15.50:0/1478360483' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:58.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:58 smithi050 bash[19920]: audit 2024-09-21T17:22:57.912338+0000 mon.smithi170 (mon.1) 8 : audit [DBG] from='client.? 172.21.15.50:0/2119916530' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:58.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:22:58 smithi050 bash[19920]: audit 2024-09-21T17:22:57.912338+0000 mon.smithi170 (mon.1) 8 : audit [DBG] from='client.? 172.21.15.50:0/2119916530' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:58.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:58 smithi170 bash[24572]: cluster 2024-09-21T17:22:57.101527+0000 mgr.smithi050.baqqjh (mgr.14203) 100 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:58.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:58 smithi170 bash[24572]: cluster 2024-09-21T17:22:57.101527+0000 mgr.smithi050.baqqjh (mgr.14203) 100 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:22:58.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:58 smithi170 bash[24572]: audit 2024-09-21T17:22:57.185966+0000 mon.smithi050 (mon.0) 414 : audit [DBG] from='client.? 172.21.15.50:0/1478360483' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:58.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:58 smithi170 bash[24572]: audit 2024-09-21T17:22:57.185966+0000 mon.smithi050 (mon.0) 414 : audit [DBG] from='client.? 172.21.15.50:0/1478360483' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:22:58.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:58 smithi170 bash[24572]: audit 2024-09-21T17:22:57.912338+0000 mon.smithi170 (mon.1) 8 : audit [DBG] from='client.? 172.21.15.50:0/2119916530' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:58.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:22:58 smithi170 bash[24572]: audit 2024-09-21T17:22:57.912338+0000 mon.smithi170 (mon.1) 8 : audit [DBG] from='client.? 172.21.15.50:0/2119916530' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:22:58.996 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:23:00.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: cluster 2024-09-21T17:22:59.101928+0000 mgr.smithi050.baqqjh (mgr.14203) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:00.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: cluster 2024-09-21T17:22:59.101928+0000 mgr.smithi050.baqqjh (mgr.14203) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:00.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.234837+0000 mon.smithi170 (mon.1) 9 : audit [INF] from='client.? 172.21.15.170:0/2207336710' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"} : dispatch 2024-09-21T17:23:00.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.234837+0000 mon.smithi170 (mon.1) 9 : audit [INF] from='client.? 172.21.15.170:0/2207336710' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"} : dispatch 2024-09-21T17:23:00.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.235908+0000 mon.smithi050 (mon.0) 415 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"} : dispatch 2024-09-21T17:23:00.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.235908+0000 mon.smithi050 (mon.0) 415 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"} : dispatch 2024-09-21T17:23:00.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.237914+0000 mon.smithi050 (mon.0) 416 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"}]': finished 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.237914+0000 mon.smithi050 (mon.0) 416 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"}]': finished 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: cluster 2024-09-21T17:22:59.240280+0000 mon.smithi050 (mon.0) 417 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: cluster 2024-09-21T17:22:59.240280+0000 mon.smithi050 (mon.0) 417 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.240514+0000 mon.smithi050 (mon.0) 418 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.240514+0000 mon.smithi050 (mon.0) 418 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.240739+0000 mon.smithi050 (mon.0) 419 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.240739+0000 mon.smithi050 (mon.0) 419 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.240947+0000 mon.smithi050 (mon.0) 420 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.240947+0000 mon.smithi050 (mon.0) 420 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.241154+0000 mon.smithi050 (mon.0) 421 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.241154+0000 mon.smithi050 (mon.0) 421 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.241362+0000 mon.smithi050 (mon.0) 422 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.241362+0000 mon.smithi050 (mon.0) 422 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:00.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.241568+0000 mon.smithi050 (mon.0) 423 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:00.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.241568+0000 mon.smithi050 (mon.0) 423 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:00.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.241781+0000 mon.smithi050 (mon.0) 424 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:00.487 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:00 smithi050 bash[19920]: audit 2024-09-21T17:22:59.241781+0000 mon.smithi050 (mon.0) 424 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:00.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: cluster 2024-09-21T17:22:59.101928+0000 mgr.smithi050.baqqjh (mgr.14203) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:00.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: cluster 2024-09-21T17:22:59.101928+0000 mgr.smithi050.baqqjh (mgr.14203) 101 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:00.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.234837+0000 mon.smithi170 (mon.1) 9 : audit [INF] from='client.? 172.21.15.170:0/2207336710' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"} : dispatch 2024-09-21T17:23:00.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.234837+0000 mon.smithi170 (mon.1) 9 : audit [INF] from='client.? 172.21.15.170:0/2207336710' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"} : dispatch 2024-09-21T17:23:00.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.235908+0000 mon.smithi050 (mon.0) 415 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"} : dispatch 2024-09-21T17:23:00.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.235908+0000 mon.smithi050 (mon.0) 415 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.237914+0000 mon.smithi050 (mon.0) 416 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"}]': finished 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.237914+0000 mon.smithi050 (mon.0) 416 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "46b098af-887f-4dfe-9bd5-395359d09723"}]': finished 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: cluster 2024-09-21T17:22:59.240280+0000 mon.smithi050 (mon.0) 417 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: cluster 2024-09-21T17:22:59.240280+0000 mon.smithi050 (mon.0) 417 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.240514+0000 mon.smithi050 (mon.0) 418 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.240514+0000 mon.smithi050 (mon.0) 418 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.240739+0000 mon.smithi050 (mon.0) 419 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.240739+0000 mon.smithi050 (mon.0) 419 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.240947+0000 mon.smithi050 (mon.0) 420 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.240947+0000 mon.smithi050 (mon.0) 420 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.241154+0000 mon.smithi050 (mon.0) 421 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.241154+0000 mon.smithi050 (mon.0) 421 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:00.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.241362+0000 mon.smithi050 (mon.0) 422 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:00.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.241362+0000 mon.smithi050 (mon.0) 422 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:00.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.241568+0000 mon.smithi050 (mon.0) 423 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:00.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.241568+0000 mon.smithi050 (mon.0) 423 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:00.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.241781+0000 mon.smithi050 (mon.0) 424 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:00.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:00 smithi170 bash[24572]: audit 2024-09-21T17:22:59.241781+0000 mon.smithi050 (mon.0) 424 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:01.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:01 smithi050 bash[19920]: audit 2024-09-21T17:23:00.570384+0000 mon.smithi050 (mon.0) 425 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:01.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:01 smithi050 bash[19920]: audit 2024-09-21T17:23:00.570384+0000 mon.smithi050 (mon.0) 425 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:01.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:01 smithi050 bash[19920]: audit 2024-09-21T17:23:00.688853+0000 mon.smithi170 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.170:0/1890815795' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:23:01.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:01 smithi050 bash[19920]: audit 2024-09-21T17:23:00.688853+0000 mon.smithi170 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.170:0/1890815795' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:23:01.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:01 smithi170 bash[24572]: audit 2024-09-21T17:23:00.570384+0000 mon.smithi050 (mon.0) 425 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:01.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:01 smithi170 bash[24572]: audit 2024-09-21T17:23:00.570384+0000 mon.smithi050 (mon.0) 425 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:01.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:01 smithi170 bash[24572]: audit 2024-09-21T17:23:00.688853+0000 mon.smithi170 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.170:0/1890815795' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:23:01.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:01 smithi170 bash[24572]: audit 2024-09-21T17:23:00.688853+0000 mon.smithi170 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.170:0/1890815795' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: cluster 2024-09-21T17:23:01.102339+0000 mgr.smithi050.baqqjh (mgr.14203) 102 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: cluster 2024-09-21T17:23:01.102339+0000 mgr.smithi050.baqqjh (mgr.14203) 102 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.673377+0000 mon.smithi050 (mon.0) 426 : audit [INF] from='client.? 172.21.15.50:0/3530578090' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "82417463-a378-407a-9672-f11db8aa07b7"} : dispatch 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.673377+0000 mon.smithi050 (mon.0) 426 : audit [INF] from='client.? 172.21.15.50:0/3530578090' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "82417463-a378-407a-9672-f11db8aa07b7"} : dispatch 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.676567+0000 mon.smithi050 (mon.0) 427 : audit [INF] from='client.? 172.21.15.50:0/3530578090' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "82417463-a378-407a-9672-f11db8aa07b7"}]': finished 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.676567+0000 mon.smithi050 (mon.0) 427 : audit [INF] from='client.? 172.21.15.50:0/3530578090' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "82417463-a378-407a-9672-f11db8aa07b7"}]': finished 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: cluster 2024-09-21T17:23:01.679810+0000 mon.smithi050 (mon.0) 428 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: cluster 2024-09-21T17:23:01.679810+0000 mon.smithi050 (mon.0) 428 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680023+0000 mon.smithi050 (mon.0) 429 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680023+0000 mon.smithi050 (mon.0) 429 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680190+0000 mon.smithi050 (mon.0) 430 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680190+0000 mon.smithi050 (mon.0) 430 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:02.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680366+0000 mon.smithi050 (mon.0) 431 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680366+0000 mon.smithi050 (mon.0) 431 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680534+0000 mon.smithi050 (mon.0) 432 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680534+0000 mon.smithi050 (mon.0) 432 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680684+0000 mon.smithi050 (mon.0) 433 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680684+0000 mon.smithi050 (mon.0) 433 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680867+0000 mon.smithi050 (mon.0) 434 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.680867+0000 mon.smithi050 (mon.0) 434 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.681048+0000 mon.smithi050 (mon.0) 435 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.681048+0000 mon.smithi050 (mon.0) 435 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.681210+0000 mon.smithi050 (mon.0) 436 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:02.486 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:02 smithi050 bash[19920]: audit 2024-09-21T17:23:01.681210+0000 mon.smithi050 (mon.0) 436 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: cluster 2024-09-21T17:23:01.102339+0000 mgr.smithi050.baqqjh (mgr.14203) 102 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: cluster 2024-09-21T17:23:01.102339+0000 mgr.smithi050.baqqjh (mgr.14203) 102 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.673377+0000 mon.smithi050 (mon.0) 426 : audit [INF] from='client.? 172.21.15.50:0/3530578090' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "82417463-a378-407a-9672-f11db8aa07b7"} : dispatch 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.673377+0000 mon.smithi050 (mon.0) 426 : audit [INF] from='client.? 172.21.15.50:0/3530578090' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "82417463-a378-407a-9672-f11db8aa07b7"} : dispatch 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.676567+0000 mon.smithi050 (mon.0) 427 : audit [INF] from='client.? 172.21.15.50:0/3530578090' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "82417463-a378-407a-9672-f11db8aa07b7"}]': finished 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.676567+0000 mon.smithi050 (mon.0) 427 : audit [INF] from='client.? 172.21.15.50:0/3530578090' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "82417463-a378-407a-9672-f11db8aa07b7"}]': finished 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: cluster 2024-09-21T17:23:01.679810+0000 mon.smithi050 (mon.0) 428 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: cluster 2024-09-21T17:23:01.679810+0000 mon.smithi050 (mon.0) 428 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680023+0000 mon.smithi050 (mon.0) 429 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:02.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680023+0000 mon.smithi050 (mon.0) 429 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680190+0000 mon.smithi050 (mon.0) 430 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680190+0000 mon.smithi050 (mon.0) 430 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680366+0000 mon.smithi050 (mon.0) 431 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680366+0000 mon.smithi050 (mon.0) 431 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680534+0000 mon.smithi050 (mon.0) 432 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680534+0000 mon.smithi050 (mon.0) 432 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680684+0000 mon.smithi050 (mon.0) 433 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680684+0000 mon.smithi050 (mon.0) 433 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680867+0000 mon.smithi050 (mon.0) 434 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.680867+0000 mon.smithi050 (mon.0) 434 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.681048+0000 mon.smithi050 (mon.0) 435 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.681048+0000 mon.smithi050 (mon.0) 435 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.681210+0000 mon.smithi050 (mon.0) 436 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:02.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:02 smithi170 bash[24572]: audit 2024-09-21T17:23:01.681210+0000 mon.smithi050 (mon.0) 436 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:03.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:03 smithi050 bash[19920]: audit 2024-09-21T17:23:03.167209+0000 mon.smithi050 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.50:0/1354362757' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:23:03.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:03 smithi050 bash[19920]: audit 2024-09-21T17:23:03.167209+0000 mon.smithi050 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.50:0/1354362757' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:23:03.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:03 smithi170 bash[24572]: audit 2024-09-21T17:23:03.167209+0000 mon.smithi050 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.50:0/1354362757' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:23:03.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:03 smithi170 bash[24572]: audit 2024-09-21T17:23:03.167209+0000 mon.smithi050 (mon.0) 437 : audit [DBG] from='client.? 172.21.15.50:0/1354362757' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T17:23:03.785 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:23:04.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:04 smithi050 bash[19920]: cluster 2024-09-21T17:23:03.102741+0000 mgr.smithi050.baqqjh (mgr.14203) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:04.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:04 smithi050 bash[19920]: cluster 2024-09-21T17:23:03.102741+0000 mgr.smithi050.baqqjh (mgr.14203) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:04.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:04 smithi170 bash[24572]: cluster 2024-09-21T17:23:03.102741+0000 mgr.smithi050.baqqjh (mgr.14203) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:04.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:04 smithi170 bash[24572]: cluster 2024-09-21T17:23:03.102741+0000 mgr.smithi050.baqqjh (mgr.14203) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:05.365 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:23:06.018 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726939381,"num_remapped_pgs":0} 2024-09-21T17:23:06.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:06 smithi050 bash[19920]: cluster 2024-09-21T17:23:05.103038+0000 mgr.smithi050.baqqjh (mgr.14203) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:06.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:06 smithi050 bash[19920]: cluster 2024-09-21T17:23:05.103038+0000 mgr.smithi050.baqqjh (mgr.14203) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:06.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:06 smithi050 bash[19920]: audit 2024-09-21T17:23:05.364678+0000 mon.smithi050 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.50:0/2809672844' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:06.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:06 smithi050 bash[19920]: audit 2024-09-21T17:23:05.364678+0000 mon.smithi050 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.50:0/2809672844' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:06.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:06 smithi170 bash[24572]: cluster 2024-09-21T17:23:05.103038+0000 mgr.smithi050.baqqjh (mgr.14203) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:06.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:06 smithi170 bash[24572]: cluster 2024-09-21T17:23:05.103038+0000 mgr.smithi050.baqqjh (mgr.14203) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:06.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:06 smithi170 bash[24572]: audit 2024-09-21T17:23:05.364678+0000 mon.smithi050 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.50:0/2809672844' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:06.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:06 smithi170 bash[24572]: audit 2024-09-21T17:23:05.364678+0000 mon.smithi050 (mon.0) 438 : audit [DBG] from='client.? 172.21.15.50:0/2809672844' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:07.019 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:23:08.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:08 smithi050 bash[19920]: cluster 2024-09-21T17:23:07.103410+0000 mgr.smithi050.baqqjh (mgr.14203) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:08.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:08 smithi050 bash[19920]: cluster 2024-09-21T17:23:07.103410+0000 mgr.smithi050.baqqjh (mgr.14203) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:08.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:08 smithi170 bash[24572]: cluster 2024-09-21T17:23:07.103410+0000 mgr.smithi050.baqqjh (mgr.14203) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:08.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:08 smithi170 bash[24572]: cluster 2024-09-21T17:23:07.103410+0000 mgr.smithi050.baqqjh (mgr.14203) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:10.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:10 smithi050 bash[19920]: cluster 2024-09-21T17:23:09.103875+0000 mgr.smithi050.baqqjh (mgr.14203) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:10.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:10 smithi050 bash[19920]: cluster 2024-09-21T17:23:09.103875+0000 mgr.smithi050.baqqjh (mgr.14203) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:10.515 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:10 smithi170 bash[24572]: cluster 2024-09-21T17:23:09.103875+0000 mgr.smithi050.baqqjh (mgr.14203) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:10.515 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:10 smithi170 bash[24572]: cluster 2024-09-21T17:23:09.103875+0000 mgr.smithi050.baqqjh (mgr.14203) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:11.809 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:23:12.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:12 smithi050 bash[19920]: cluster 2024-09-21T17:23:11.104291+0000 mgr.smithi050.baqqjh (mgr.14203) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:12.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:12 smithi050 bash[19920]: cluster 2024-09-21T17:23:11.104291+0000 mgr.smithi050.baqqjh (mgr.14203) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:12.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:12 smithi170 bash[24572]: cluster 2024-09-21T17:23:11.104291+0000 mgr.smithi050.baqqjh (mgr.14203) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:12.470 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:12 smithi170 bash[24572]: cluster 2024-09-21T17:23:11.104291+0000 mgr.smithi050.baqqjh (mgr.14203) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:13.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:13 smithi050 bash[19920]: audit 2024-09-21T17:23:13.082057+0000 mon.smithi050 (mon.0) 439 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-21T17:23:13.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:13 smithi050 bash[19920]: audit 2024-09-21T17:23:13.082057+0000 mon.smithi050 (mon.0) 439 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-21T17:23:13.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:13 smithi050 bash[19920]: audit 2024-09-21T17:23:13.083922+0000 mon.smithi050 (mon.0) 440 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:13.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:13 smithi050 bash[19920]: audit 2024-09-21T17:23:13.083922+0000 mon.smithi050 (mon.0) 440 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:13.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:13 smithi170 bash[24572]: audit 2024-09-21T17:23:13.082057+0000 mon.smithi050 (mon.0) 439 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-21T17:23:13.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:13 smithi170 bash[24572]: audit 2024-09-21T17:23:13.082057+0000 mon.smithi050 (mon.0) 439 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-21T17:23:13.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:13 smithi170 bash[24572]: audit 2024-09-21T17:23:13.083922+0000 mon.smithi050 (mon.0) 440 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:13.579 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:13 smithi170 bash[24572]: audit 2024-09-21T17:23:13.083922+0000 mon.smithi050 (mon.0) 440 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:13.719 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:23:14.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:14 smithi050 bash[19920]: cephadm 2024-09-21T17:23:13.085729+0000 mgr.smithi050.baqqjh (mgr.14203) 108 : cephadm [INF] Deploying daemon osd.0 on smithi170 2024-09-21T17:23:14.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:14 smithi050 bash[19920]: cephadm 2024-09-21T17:23:13.085729+0000 mgr.smithi050.baqqjh (mgr.14203) 108 : cephadm [INF] Deploying daemon osd.0 on smithi170 2024-09-21T17:23:14.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:14 smithi050 bash[19920]: cluster 2024-09-21T17:23:13.104734+0000 mgr.smithi050.baqqjh (mgr.14203) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:14.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:14 smithi050 bash[19920]: cluster 2024-09-21T17:23:13.104734+0000 mgr.smithi050.baqqjh (mgr.14203) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:14.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:14 smithi050 bash[19920]: audit 2024-09-21T17:23:13.718397+0000 mon.smithi050 (mon.0) 441 : audit [DBG] from='client.? 172.21.15.50:0/2183736176' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:14.485 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:14 smithi050 bash[19920]: audit 2024-09-21T17:23:13.718397+0000 mon.smithi050 (mon.0) 441 : audit [DBG] from='client.? 172.21.15.50:0/2183736176' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:14.563 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:14 smithi170 bash[24572]: cephadm 2024-09-21T17:23:13.085729+0000 mgr.smithi050.baqqjh (mgr.14203) 108 : cephadm [INF] Deploying daemon osd.0 on smithi170 2024-09-21T17:23:14.563 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:14 smithi170 bash[24572]: cephadm 2024-09-21T17:23:13.085729+0000 mgr.smithi050.baqqjh (mgr.14203) 108 : cephadm [INF] Deploying daemon osd.0 on smithi170 2024-09-21T17:23:14.563 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:14 smithi170 bash[24572]: cluster 2024-09-21T17:23:13.104734+0000 mgr.smithi050.baqqjh (mgr.14203) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:14.563 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:14 smithi170 bash[24572]: cluster 2024-09-21T17:23:13.104734+0000 mgr.smithi050.baqqjh (mgr.14203) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:14.563 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:14 smithi170 bash[24572]: audit 2024-09-21T17:23:13.718397+0000 mon.smithi050 (mon.0) 441 : audit [DBG] from='client.? 172.21.15.50:0/2183736176' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:14.564 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:14 smithi170 bash[24572]: audit 2024-09-21T17:23:13.718397+0000 mon.smithi050 (mon.0) 441 : audit [DBG] from='client.? 172.21.15.50:0/2183736176' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:14.881 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726939381,"num_remapped_pgs":0} 2024-09-21T17:23:15.882 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:23:16.467 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:16 smithi170 bash[24572]: cluster 2024-09-21T17:23:15.105209+0000 mgr.smithi050.baqqjh (mgr.14203) 110 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:16.467 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:16 smithi170 bash[24572]: cluster 2024-09-21T17:23:15.105209+0000 mgr.smithi050.baqqjh (mgr.14203) 110 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:16.467 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:16 smithi170 bash[24572]: audit 2024-09-21T17:23:15.570523+0000 mon.smithi050 (mon.0) 442 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:16.467 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:16 smithi170 bash[24572]: audit 2024-09-21T17:23:15.570523+0000 mon.smithi050 (mon.0) 442 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:16.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:16 smithi050 bash[19920]: cluster 2024-09-21T17:23:15.105209+0000 mgr.smithi050.baqqjh (mgr.14203) 110 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:16.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:16 smithi050 bash[19920]: cluster 2024-09-21T17:23:15.105209+0000 mgr.smithi050.baqqjh (mgr.14203) 110 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:16.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:16 smithi050 bash[19920]: audit 2024-09-21T17:23:15.570523+0000 mon.smithi050 (mon.0) 442 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:16.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:16 smithi050 bash[19920]: audit 2024-09-21T17:23:15.570523+0000 mon.smithi050 (mon.0) 442 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:17.295 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:17 smithi050 bash[19920]: audit 2024-09-21T17:23:16.486480+0000 mon.smithi050 (mon.0) 443 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-21T17:23:17.295 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:17 smithi050 bash[19920]: audit 2024-09-21T17:23:16.486480+0000 mon.smithi050 (mon.0) 443 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-21T17:23:17.296 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:17 smithi050 bash[19920]: audit 2024-09-21T17:23:16.488193+0000 mon.smithi050 (mon.0) 444 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:17.296 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:17 smithi050 bash[19920]: audit 2024-09-21T17:23:16.488193+0000 mon.smithi050 (mon.0) 444 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:17.296 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:17 smithi050 bash[19920]: cephadm 2024-09-21T17:23:16.489635+0000 mgr.smithi050.baqqjh (mgr.14203) 111 : cephadm [INF] Deploying daemon osd.1 on smithi050 2024-09-21T17:23:17.296 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:17 smithi050 bash[19920]: cephadm 2024-09-21T17:23:16.489635+0000 mgr.smithi050.baqqjh (mgr.14203) 111 : cephadm [INF] Deploying daemon osd.1 on smithi050 2024-09-21T17:23:17.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:17 smithi170 bash[24572]: audit 2024-09-21T17:23:16.486480+0000 mon.smithi050 (mon.0) 443 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-21T17:23:17.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:17 smithi170 bash[24572]: audit 2024-09-21T17:23:16.486480+0000 mon.smithi050 (mon.0) 443 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-21T17:23:17.483 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:17 smithi170 bash[24572]: audit 2024-09-21T17:23:16.488193+0000 mon.smithi050 (mon.0) 444 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:17.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:17 smithi170 bash[24572]: audit 2024-09-21T17:23:16.488193+0000 mon.smithi050 (mon.0) 444 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:17.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:17 smithi170 bash[24572]: cephadm 2024-09-21T17:23:16.489635+0000 mgr.smithi050.baqqjh (mgr.14203) 111 : cephadm [INF] Deploying daemon osd.1 on smithi050 2024-09-21T17:23:17.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:17 smithi170 bash[24572]: cephadm 2024-09-21T17:23:16.489635+0000 mgr.smithi050.baqqjh (mgr.14203) 111 : cephadm [INF] Deploying daemon osd.1 on smithi050 2024-09-21T17:23:17.484 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:17 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:17.743 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:17 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:18.476 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: cluster 2024-09-21T17:23:17.105674+0000 mgr.smithi050.baqqjh (mgr.14203) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:18.476 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: cluster 2024-09-21T17:23:17.105674+0000 mgr.smithi050.baqqjh (mgr.14203) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:18.476 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: audit 2024-09-21T17:23:17.799333+0000 mon.smithi050 (mon.0) 445 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:18.476 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: audit 2024-09-21T17:23:17.799333+0000 mon.smithi050 (mon.0) 445 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:18.476 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: audit 2024-09-21T17:23:17.807805+0000 mon.smithi050 (mon.0) 446 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:18.477 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: audit 2024-09-21T17:23:17.807805+0000 mon.smithi050 (mon.0) 446 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:18.477 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: audit 2024-09-21T17:23:17.809497+0000 mon.smithi050 (mon.0) 447 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-21T17:23:18.477 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: audit 2024-09-21T17:23:17.809497+0000 mon.smithi050 (mon.0) 447 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-21T17:23:18.477 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: audit 2024-09-21T17:23:17.811476+0000 mon.smithi050 (mon.0) 448 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:18.477 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:18 smithi050 bash[19920]: audit 2024-09-21T17:23:17.811476+0000 mon.smithi050 (mon.0) 448 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: cluster 2024-09-21T17:23:17.105674+0000 mgr.smithi050.baqqjh (mgr.14203) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: cluster 2024-09-21T17:23:17.105674+0000 mgr.smithi050.baqqjh (mgr.14203) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: audit 2024-09-21T17:23:17.799333+0000 mon.smithi050 (mon.0) 445 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: audit 2024-09-21T17:23:17.799333+0000 mon.smithi050 (mon.0) 445 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: audit 2024-09-21T17:23:17.807805+0000 mon.smithi050 (mon.0) 446 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: audit 2024-09-21T17:23:17.807805+0000 mon.smithi050 (mon.0) 446 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: audit 2024-09-21T17:23:17.809497+0000 mon.smithi050 (mon.0) 447 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: audit 2024-09-21T17:23:17.809497+0000 mon.smithi050 (mon.0) 447 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: audit 2024-09-21T17:23:17.811476+0000 mon.smithi050 (mon.0) 448 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:18.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:18 smithi170 bash[24572]: audit 2024-09-21T17:23:17.811476+0000 mon.smithi050 (mon.0) 448 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:19.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:19 smithi050 bash[19920]: cephadm 2024-09-21T17:23:17.813087+0000 mgr.smithi050.baqqjh (mgr.14203) 113 : cephadm [INF] Deploying daemon osd.2 on smithi170 2024-09-21T17:23:19.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:19 smithi050 bash[19920]: cephadm 2024-09-21T17:23:17.813087+0000 mgr.smithi050.baqqjh (mgr.14203) 113 : cephadm [INF] Deploying daemon osd.2 on smithi170 2024-09-21T17:23:19.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:19 smithi170 bash[24572]: cephadm 2024-09-21T17:23:17.813087+0000 mgr.smithi050.baqqjh (mgr.14203) 113 : cephadm [INF] Deploying daemon osd.2 on smithi170 2024-09-21T17:23:19.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:19 smithi170 bash[24572]: cephadm 2024-09-21T17:23:17.813087+0000 mgr.smithi050.baqqjh (mgr.14203) 113 : cephadm [INF] Deploying daemon osd.2 on smithi170 2024-09-21T17:23:20.282 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:20 smithi050 bash[19920]: cluster 2024-09-21T17:23:19.106145+0000 mgr.smithi050.baqqjh (mgr.14203) 114 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:20.282 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:20 smithi050 bash[19920]: cluster 2024-09-21T17:23:19.106145+0000 mgr.smithi050.baqqjh (mgr.14203) 114 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:20.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:20 smithi170 bash[24572]: cluster 2024-09-21T17:23:19.106145+0000 mgr.smithi050.baqqjh (mgr.14203) 114 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:20.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:20 smithi170 bash[24572]: cluster 2024-09-21T17:23:19.106145+0000 mgr.smithi050.baqqjh (mgr.14203) 114 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:21.243 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:23:21.432 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:21 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:21.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:21 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:22.769 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:22.820 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: cluster 2024-09-21T17:23:21.106479+0000 mgr.smithi050.baqqjh (mgr.14203) 115 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: cluster 2024-09-21T17:23:21.106479+0000 mgr.smithi050.baqqjh (mgr.14203) 115 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: audit 2024-09-21T17:23:21.608997+0000 mon.smithi050 (mon.0) 449 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: audit 2024-09-21T17:23:21.608997+0000 mon.smithi050 (mon.0) 449 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: audit 2024-09-21T17:23:21.613561+0000 mon.smithi050 (mon.0) 450 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: audit 2024-09-21T17:23:21.613561+0000 mon.smithi050 (mon.0) 450 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: audit 2024-09-21T17:23:21.614432+0000 mon.smithi050 (mon.0) 451 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: audit 2024-09-21T17:23:21.614432+0000 mon.smithi050 (mon.0) 451 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: audit 2024-09-21T17:23:21.615177+0000 mon.smithi050 (mon.0) 452 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: audit 2024-09-21T17:23:21.615177+0000 mon.smithi050 (mon.0) 452 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: cephadm 2024-09-21T17:23:21.615797+0000 mgr.smithi050.baqqjh (mgr.14203) 116 : cephadm [INF] Deploying daemon osd.3 on smithi050 2024-09-21T17:23:22.821 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 bash[24572]: cephadm 2024-09-21T17:23:21.615797+0000 mgr.smithi050.baqqjh (mgr.14203) 116 : cephadm [INF] Deploying daemon osd.3 on smithi050 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: cluster 2024-09-21T17:23:21.106479+0000 mgr.smithi050.baqqjh (mgr.14203) 115 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: cluster 2024-09-21T17:23:21.106479+0000 mgr.smithi050.baqqjh (mgr.14203) 115 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: audit 2024-09-21T17:23:21.608997+0000 mon.smithi050 (mon.0) 449 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: audit 2024-09-21T17:23:21.608997+0000 mon.smithi050 (mon.0) 449 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: audit 2024-09-21T17:23:21.613561+0000 mon.smithi050 (mon.0) 450 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: audit 2024-09-21T17:23:21.613561+0000 mon.smithi050 (mon.0) 450 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: audit 2024-09-21T17:23:21.614432+0000 mon.smithi050 (mon.0) 451 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: audit 2024-09-21T17:23:21.614432+0000 mon.smithi050 (mon.0) 451 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-21T17:23:22.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: audit 2024-09-21T17:23:21.615177+0000 mon.smithi050 (mon.0) 452 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:22.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: audit 2024-09-21T17:23:21.615177+0000 mon.smithi050 (mon.0) 452 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:22.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: cephadm 2024-09-21T17:23:21.615797+0000 mgr.smithi050.baqqjh (mgr.14203) 116 : cephadm [INF] Deploying daemon osd.3 on smithi050 2024-09-21T17:23:22.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:22 smithi050 bash[19920]: cephadm 2024-09-21T17:23:21.615797+0000 mgr.smithi050.baqqjh (mgr.14203) 116 : cephadm [INF] Deploying daemon osd.3 on smithi050 2024-09-21T17:23:23.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:22 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:23.844 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:23:24.013 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:22.962028+0000 mon.smithi050 (mon.0) 453 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:24.013 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:22.962028+0000 mon.smithi050 (mon.0) 453 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:24.013 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:22.970570+0000 mon.smithi050 (mon.0) 454 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:24.013 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:22.970570+0000 mon.smithi050 (mon.0) 454 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:22.972335+0000 mon.smithi050 (mon.0) 455 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:22.972335+0000 mon.smithi050 (mon.0) 455 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:22.974255+0000 mon.smithi050 (mon.0) 456 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:22.974255+0000 mon.smithi050 (mon.0) 456 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: cephadm 2024-09-21T17:23:22.976156+0000 mgr.smithi050.baqqjh (mgr.14203) 117 : cephadm [INF] Deploying daemon osd.4 on smithi170 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: cephadm 2024-09-21T17:23:22.976156+0000 mgr.smithi050.baqqjh (mgr.14203) 117 : cephadm [INF] Deploying daemon osd.4 on smithi170 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: cluster 2024-09-21T17:23:23.106871+0000 mgr.smithi050.baqqjh (mgr.14203) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: cluster 2024-09-21T17:23:23.106871+0000 mgr.smithi050.baqqjh (mgr.14203) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:23.843975+0000 mon.smithi050 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.50:0/3487313994' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:24.014 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:23 smithi050 bash[19920]: audit 2024-09-21T17:23:23.843975+0000 mon.smithi050 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.50:0/3487313994' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:24.361 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:22.962028+0000 mon.smithi050 (mon.0) 453 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:24.361 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:22.962028+0000 mon.smithi050 (mon.0) 453 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:22.970570+0000 mon.smithi050 (mon.0) 454 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:22.970570+0000 mon.smithi050 (mon.0) 454 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:22.972335+0000 mon.smithi050 (mon.0) 455 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:22.972335+0000 mon.smithi050 (mon.0) 455 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:22.974255+0000 mon.smithi050 (mon.0) 456 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:22.974255+0000 mon.smithi050 (mon.0) 456 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: cephadm 2024-09-21T17:23:22.976156+0000 mgr.smithi050.baqqjh (mgr.14203) 117 : cephadm [INF] Deploying daemon osd.4 on smithi170 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: cephadm 2024-09-21T17:23:22.976156+0000 mgr.smithi050.baqqjh (mgr.14203) 117 : cephadm [INF] Deploying daemon osd.4 on smithi170 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: cluster 2024-09-21T17:23:23.106871+0000 mgr.smithi050.baqqjh (mgr.14203) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: cluster 2024-09-21T17:23:23.106871+0000 mgr.smithi050.baqqjh (mgr.14203) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:23.843975+0000 mon.smithi050 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.50:0/3487313994' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:24.362 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:23 smithi170 bash[24572]: audit 2024-09-21T17:23:23.843975+0000 mon.smithi050 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.50:0/3487313994' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:24.839 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726939381,"num_remapped_pgs":0} 2024-09-21T17:23:25.841 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:23:26.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:26 smithi050 bash[19920]: cluster 2024-09-21T17:23:25.107251+0000 mgr.smithi050.baqqjh (mgr.14203) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:26.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:26 smithi050 bash[19920]: cluster 2024-09-21T17:23:25.107251+0000 mgr.smithi050.baqqjh (mgr.14203) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:26.600 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:26 smithi170 bash[24572]: cluster 2024-09-21T17:23:25.107251+0000 mgr.smithi050.baqqjh (mgr.14203) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:26.600 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:26 smithi170 bash[24572]: cluster 2024-09-21T17:23:25.107251+0000 mgr.smithi050.baqqjh (mgr.14203) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:27.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:27 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:28.006 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:27 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:28.281 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: cluster 2024-09-21T17:23:27.107516+0000 mgr.smithi050.baqqjh (mgr.14203) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:28.281 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: cluster 2024-09-21T17:23:27.107516+0000 mgr.smithi050.baqqjh (mgr.14203) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:28.281 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: audit 2024-09-21T17:23:28.047361+0000 mon.smithi050 (mon.0) 458 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:28.282 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: audit 2024-09-21T17:23:28.047361+0000 mon.smithi050 (mon.0) 458 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:28.282 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: audit 2024-09-21T17:23:28.051589+0000 mon.smithi050 (mon.0) 459 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:28.282 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: audit 2024-09-21T17:23:28.051589+0000 mon.smithi050 (mon.0) 459 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:28.282 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: audit 2024-09-21T17:23:28.052361+0000 mon.smithi050 (mon.0) 460 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-21T17:23:28.282 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: audit 2024-09-21T17:23:28.052361+0000 mon.smithi050 (mon.0) 460 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-21T17:23:28.282 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: audit 2024-09-21T17:23:28.053028+0000 mon.smithi050 (mon.0) 461 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:28.282 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 bash[24572]: audit 2024-09-21T17:23:28.053028+0000 mon.smithi050 (mon.0) 461 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:28.401 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: cluster 2024-09-21T17:23:27.107516+0000 mgr.smithi050.baqqjh (mgr.14203) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:28.401 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: cluster 2024-09-21T17:23:27.107516+0000 mgr.smithi050.baqqjh (mgr.14203) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:28.401 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: audit 2024-09-21T17:23:28.047361+0000 mon.smithi050 (mon.0) 458 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:28.401 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: audit 2024-09-21T17:23:28.047361+0000 mon.smithi050 (mon.0) 458 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:28.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: audit 2024-09-21T17:23:28.051589+0000 mon.smithi050 (mon.0) 459 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:28.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: audit 2024-09-21T17:23:28.051589+0000 mon.smithi050 (mon.0) 459 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:28.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: audit 2024-09-21T17:23:28.052361+0000 mon.smithi050 (mon.0) 460 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-21T17:23:28.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: audit 2024-09-21T17:23:28.052361+0000 mon.smithi050 (mon.0) 460 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-21T17:23:28.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: audit 2024-09-21T17:23:28.053028+0000 mon.smithi050 (mon.0) 461 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:28.402 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:28 smithi050 bash[19920]: audit 2024-09-21T17:23:28.053028+0000 mon.smithi050 (mon.0) 461 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:29.195 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:28 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:29.195 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:29 smithi170 bash[24572]: cephadm 2024-09-21T17:23:28.053627+0000 mgr.smithi050.baqqjh (mgr.14203) 121 : cephadm [INF] Deploying daemon osd.5 on smithi050 2024-09-21T17:23:29.195 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:29 smithi170 bash[24572]: cephadm 2024-09-21T17:23:28.053627+0000 mgr.smithi050.baqqjh (mgr.14203) 121 : cephadm [INF] Deploying daemon osd.5 on smithi050 2024-09-21T17:23:29.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:29 smithi050 bash[19920]: cephadm 2024-09-21T17:23:28.053627+0000 mgr.smithi050.baqqjh (mgr.14203) 121 : cephadm [INF] Deploying daemon osd.5 on smithi050 2024-09-21T17:23:29.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:29 smithi050 bash[19920]: cephadm 2024-09-21T17:23:28.053627+0000 mgr.smithi050.baqqjh (mgr.14203) 121 : cephadm [INF] Deploying daemon osd.5 on smithi050 2024-09-21T17:23:29.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:29 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: cluster 2024-09-21T17:23:29.107958+0000 mgr.smithi050.baqqjh (mgr.14203) 122 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: cluster 2024-09-21T17:23:29.107958+0000 mgr.smithi050.baqqjh (mgr.14203) 122 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: audit 2024-09-21T17:23:29.369320+0000 mon.smithi050 (mon.0) 462 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: audit 2024-09-21T17:23:29.369320+0000 mon.smithi050 (mon.0) 462 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: audit 2024-09-21T17:23:29.378529+0000 mon.smithi050 (mon.0) 463 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: audit 2024-09-21T17:23:29.378529+0000 mon.smithi050 (mon.0) 463 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: audit 2024-09-21T17:23:29.380480+0000 mon.smithi050 (mon.0) 464 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: audit 2024-09-21T17:23:29.380480+0000 mon.smithi050 (mon.0) 464 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: audit 2024-09-21T17:23:29.382474+0000 mon.smithi050 (mon.0) 465 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: audit 2024-09-21T17:23:29.382474+0000 mon.smithi050 (mon.0) 465 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: cephadm 2024-09-21T17:23:29.384220+0000 mgr.smithi050.baqqjh (mgr.14203) 123 : cephadm [INF] Deploying daemon osd.6 on smithi170 2024-09-21T17:23:30.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:30 smithi170 bash[24572]: cephadm 2024-09-21T17:23:29.384220+0000 mgr.smithi050.baqqjh (mgr.14203) 123 : cephadm [INF] Deploying daemon osd.6 on smithi170 2024-09-21T17:23:30.716 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: cluster 2024-09-21T17:23:29.107958+0000 mgr.smithi050.baqqjh (mgr.14203) 122 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:30.716 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: cluster 2024-09-21T17:23:29.107958+0000 mgr.smithi050.baqqjh (mgr.14203) 122 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:30.716 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: audit 2024-09-21T17:23:29.369320+0000 mon.smithi050 (mon.0) 462 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: audit 2024-09-21T17:23:29.369320+0000 mon.smithi050 (mon.0) 462 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: audit 2024-09-21T17:23:29.378529+0000 mon.smithi050 (mon.0) 463 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: audit 2024-09-21T17:23:29.378529+0000 mon.smithi050 (mon.0) 463 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: audit 2024-09-21T17:23:29.380480+0000 mon.smithi050 (mon.0) 464 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: audit 2024-09-21T17:23:29.380480+0000 mon.smithi050 (mon.0) 464 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: audit 2024-09-21T17:23:29.382474+0000 mon.smithi050 (mon.0) 465 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: audit 2024-09-21T17:23:29.382474+0000 mon.smithi050 (mon.0) 465 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: cephadm 2024-09-21T17:23:29.384220+0000 mgr.smithi050.baqqjh (mgr.14203) 123 : cephadm [INF] Deploying daemon osd.6 on smithi170 2024-09-21T17:23:30.717 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:30 smithi050 bash[19920]: cephadm 2024-09-21T17:23:29.384220+0000 mgr.smithi050.baqqjh (mgr.14203) 123 : cephadm [INF] Deploying daemon osd.6 on smithi170 2024-09-21T17:23:30.729 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:23:31.664 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:31 smithi050 bash[19920]: audit 2024-09-21T17:23:30.570887+0000 mon.smithi050 (mon.0) 466 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:31.664 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:31 smithi050 bash[19920]: audit 2024-09-21T17:23:30.570887+0000 mon.smithi050 (mon.0) 466 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:31.664 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:31 smithi050 bash[19920]: audit 2024-09-21T17:23:30.995480+0000 mon.smithi170 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T17:23:31.664 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:31 smithi050 bash[19920]: audit 2024-09-21T17:23:30.995480+0000 mon.smithi170 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T17:23:31.664 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:31 smithi050 bash[19920]: audit 2024-09-21T17:23:30.995958+0000 mon.smithi050 (mon.0) 467 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T17:23:31.664 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:31 smithi050 bash[19920]: audit 2024-09-21T17:23:30.995958+0000 mon.smithi050 (mon.0) 467 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T17:23:31.683 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:31 smithi170 bash[24572]: audit 2024-09-21T17:23:30.570887+0000 mon.smithi050 (mon.0) 466 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:31.683 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:31 smithi170 bash[24572]: audit 2024-09-21T17:23:30.570887+0000 mon.smithi050 (mon.0) 466 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:31.683 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:31 smithi170 bash[24572]: audit 2024-09-21T17:23:30.995480+0000 mon.smithi170 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T17:23:31.683 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:31 smithi170 bash[24572]: audit 2024-09-21T17:23:30.995480+0000 mon.smithi170 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T17:23:31.683 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:31 smithi170 bash[24572]: audit 2024-09-21T17:23:30.995958+0000 mon.smithi050 (mon.0) 467 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T17:23:31.683 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:31 smithi170 bash[24572]: audit 2024-09-21T17:23:30.995958+0000 mon.smithi050 (mon.0) 467 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T17:23:32.712 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: cluster 2024-09-21T17:23:31.108234+0000 mgr.smithi050.baqqjh (mgr.14203) 124 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: cluster 2024-09-21T17:23:31.108234+0000 mgr.smithi050.baqqjh (mgr.14203) 124 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.375834+0000 mon.smithi050 (mon.0) 468 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.375834+0000 mon.smithi050 (mon.0) 468 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.382831+0000 mon.smithi170 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.382831+0000 mon.smithi170 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: cluster 2024-09-21T17:23:31.383090+0000 mon.smithi050 (mon.0) 469 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: cluster 2024-09-21T17:23:31.383090+0000 mon.smithi050 (mon.0) 469 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.383647+0000 mon.smithi050 (mon.0) 470 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.383647+0000 mon.smithi050 (mon.0) 470 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.383948+0000 mon.smithi050 (mon.0) 471 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.383948+0000 mon.smithi050 (mon.0) 471 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.384248+0000 mon.smithi050 (mon.0) 472 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:32.713 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.384248+0000 mon.smithi050 (mon.0) 472 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.384487+0000 mon.smithi050 (mon.0) 473 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.384487+0000 mon.smithi050 (mon.0) 473 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.384665+0000 mon.smithi050 (mon.0) 474 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.384665+0000 mon.smithi050 (mon.0) 474 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.384909+0000 mon.smithi050 (mon.0) 475 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.384909+0000 mon.smithi050 (mon.0) 475 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.385425+0000 mon.smithi050 (mon.0) 476 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.385425+0000 mon.smithi050 (mon.0) 476 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.385652+0000 mon.smithi050 (mon.0) 477 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.385652+0000 mon.smithi050 (mon.0) 477 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.385854+0000 mon.smithi050 (mon.0) 478 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:32.714 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:32 smithi170 bash[24572]: audit 2024-09-21T17:23:31.385854+0000 mon.smithi050 (mon.0) 478 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:32.751 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: cluster 2024-09-21T17:23:31.108234+0000 mgr.smithi050.baqqjh (mgr.14203) 124 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: cluster 2024-09-21T17:23:31.108234+0000 mgr.smithi050.baqqjh (mgr.14203) 124 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.375834+0000 mon.smithi050 (mon.0) 468 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.375834+0000 mon.smithi050 (mon.0) 468 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.382831+0000 mon.smithi170 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.382831+0000 mon.smithi170 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: cluster 2024-09-21T17:23:31.383090+0000 mon.smithi050 (mon.0) 469 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: cluster 2024-09-21T17:23:31.383090+0000 mon.smithi050 (mon.0) 469 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.383647+0000 mon.smithi050 (mon.0) 470 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.383647+0000 mon.smithi050 (mon.0) 470 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.383948+0000 mon.smithi050 (mon.0) 471 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.383948+0000 mon.smithi050 (mon.0) 471 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.384248+0000 mon.smithi050 (mon.0) 472 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:32.752 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.384248+0000 mon.smithi050 (mon.0) 472 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.384487+0000 mon.smithi050 (mon.0) 473 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.384487+0000 mon.smithi050 (mon.0) 473 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.384665+0000 mon.smithi050 (mon.0) 474 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.384665+0000 mon.smithi050 (mon.0) 474 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.384909+0000 mon.smithi050 (mon.0) 475 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.384909+0000 mon.smithi050 (mon.0) 475 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.385425+0000 mon.smithi050 (mon.0) 476 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.385425+0000 mon.smithi050 (mon.0) 476 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.385652+0000 mon.smithi050 (mon.0) 477 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.385652+0000 mon.smithi050 (mon.0) 477 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.385854+0000 mon.smithi050 (mon.0) 478 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:32.753 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:32 smithi050 bash[19920]: audit 2024-09-21T17:23:31.385854+0000 mon.smithi050 (mon.0) 478 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:33.086 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:23:33.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.378073+0000 mon.smithi050 (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=smithi170", "root=default"]}]': finished 2024-09-21T17:23:33.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.378073+0000 mon.smithi050 (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=smithi170", "root=default"]}]': finished 2024-09-21T17:23:33.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: cluster 2024-09-21T17:23:32.381152+0000 mon.smithi050 (mon.0) 480 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-21T17:23:33.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: cluster 2024-09-21T17:23:32.381152+0000 mon.smithi050 (mon.0) 480 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-21T17:23:33.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.381586+0000 mon.smithi050 (mon.0) 481 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:33.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.381586+0000 mon.smithi050 (mon.0) 481 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:33.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.381818+0000 mon.smithi050 (mon.0) 482 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:33.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.381818+0000 mon.smithi050 (mon.0) 482 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.382073+0000 mon.smithi050 (mon.0) 483 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.382073+0000 mon.smithi050 (mon.0) 483 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.382337+0000 mon.smithi050 (mon.0) 484 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.382337+0000 mon.smithi050 (mon.0) 484 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.382568+0000 mon.smithi050 (mon.0) 485 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.382568+0000 mon.smithi050 (mon.0) 485 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.382838+0000 mon.smithi050 (mon.0) 486 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.382838+0000 mon.smithi050 (mon.0) 486 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.383043+0000 mon.smithi050 (mon.0) 487 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.383043+0000 mon.smithi050 (mon.0) 487 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.383300+0000 mon.smithi050 (mon.0) 488 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:33.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.383300+0000 mon.smithi050 (mon.0) 488 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:33.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.392004+0000 mon.smithi050 (mon.0) 489 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:33.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.392004+0000 mon.smithi050 (mon.0) 489 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:33.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.718703+0000 mon.smithi050 (mon.0) 490 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-21T17:23:33.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:32.718703+0000 mon.smithi050 (mon.0) 490 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-21T17:23:33.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:33.085558+0000 mon.smithi050 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.50:0/325675749' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:33.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:33 smithi170 bash[24572]: audit 2024-09-21T17:23:33.085558+0000 mon.smithi050 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.50:0/325675749' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:33.661 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.378073+0000 mon.smithi050 (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=smithi170", "root=default"]}]': finished 2024-09-21T17:23:33.661 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.378073+0000 mon.smithi050 (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=smithi170", "root=default"]}]': finished 2024-09-21T17:23:33.661 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: cluster 2024-09-21T17:23:32.381152+0000 mon.smithi050 (mon.0) 480 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: cluster 2024-09-21T17:23:32.381152+0000 mon.smithi050 (mon.0) 480 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.381586+0000 mon.smithi050 (mon.0) 481 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.381586+0000 mon.smithi050 (mon.0) 481 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.381818+0000 mon.smithi050 (mon.0) 482 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.381818+0000 mon.smithi050 (mon.0) 482 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.382073+0000 mon.smithi050 (mon.0) 483 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.382073+0000 mon.smithi050 (mon.0) 483 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.382337+0000 mon.smithi050 (mon.0) 484 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.382337+0000 mon.smithi050 (mon.0) 484 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.382568+0000 mon.smithi050 (mon.0) 485 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.382568+0000 mon.smithi050 (mon.0) 485 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.382838+0000 mon.smithi050 (mon.0) 486 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.382838+0000 mon.smithi050 (mon.0) 486 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:33.662 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.383043+0000 mon.smithi050 (mon.0) 487 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.383043+0000 mon.smithi050 (mon.0) 487 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.383300+0000 mon.smithi050 (mon.0) 488 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.383300+0000 mon.smithi050 (mon.0) 488 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.392004+0000 mon.smithi050 (mon.0) 489 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.392004+0000 mon.smithi050 (mon.0) 489 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.718703+0000 mon.smithi050 (mon.0) 490 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:32.718703+0000 mon.smithi050 (mon.0) 490 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:33.085558+0000 mon.smithi050 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.50:0/325675749' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:33.663 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:33 smithi050 bash[19920]: audit 2024-09-21T17:23:33.085558+0000 mon.smithi050 (mon.0) 491 : audit [DBG] from='client.? 172.21.15.50:0/325675749' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:34.235 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":15,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726939381,"num_remapped_pgs":0} 2024-09-21T17:23:34.394 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:31.992847+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:34.394 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:31.992847+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:34.394 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:31.992906+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:34.394 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:31.992906+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:34.394 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:33.108499+0000 mgr.smithi050.baqqjh (mgr.14203) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:34.394 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:33.108499+0000 mgr.smithi050.baqqjh (mgr.14203) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:34.394 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.394733+0000 mon.smithi050 (mon.0) 492 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:34.394 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.394733+0000 mon.smithi050 (mon.0) 492 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:33.726995+0000 mon.smithi050 (mon.0) 493 : cluster [INF] osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004] boot 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:33.726995+0000 mon.smithi050 (mon.0) 493 : cluster [INF] osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004] boot 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:33.727090+0000 mon.smithi050 (mon.0) 494 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: cluster 2024-09-21T17:23:33.727090+0000 mon.smithi050 (mon.0) 494 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.727390+0000 mon.smithi050 (mon.0) 495 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.727390+0000 mon.smithi050 (mon.0) 495 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.728092+0000 mon.smithi050 (mon.0) 496 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.728092+0000 mon.smithi050 (mon.0) 496 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.728476+0000 mon.smithi050 (mon.0) 497 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.728476+0000 mon.smithi050 (mon.0) 497 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.728842+0000 mon.smithi050 (mon.0) 498 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:34.395 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.728842+0000 mon.smithi050 (mon.0) 498 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:34.396 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.729203+0000 mon.smithi050 (mon.0) 499 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:34.396 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.729203+0000 mon.smithi050 (mon.0) 499 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:34.396 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.729564+0000 mon.smithi050 (mon.0) 500 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:34.396 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.729564+0000 mon.smithi050 (mon.0) 500 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:34.396 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.729924+0000 mon.smithi050 (mon.0) 501 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:34.396 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.729924+0000 mon.smithi050 (mon.0) 501 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:34.396 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.730281+0000 mon.smithi050 (mon.0) 502 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:34.396 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:34 smithi170 bash[24572]: audit 2024-09-21T17:23:33.730281+0000 mon.smithi050 (mon.0) 502 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:31.992847+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:31.992847+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:31.992906+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:31.992906+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:33.108499+0000 mgr.smithi050.baqqjh (mgr.14203) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:33.108499+0000 mgr.smithi050.baqqjh (mgr.14203) 125 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.394733+0000 mon.smithi050 (mon.0) 492 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.394733+0000 mon.smithi050 (mon.0) 492 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:33.726995+0000 mon.smithi050 (mon.0) 493 : cluster [INF] osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004] boot 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:33.726995+0000 mon.smithi050 (mon.0) 493 : cluster [INF] osd.0 [v2:172.21.15.170:6800/455256004,v1:172.21.15.170:6801/455256004] boot 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:33.727090+0000 mon.smithi050 (mon.0) 494 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: cluster 2024-09-21T17:23:33.727090+0000 mon.smithi050 (mon.0) 494 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.727390+0000 mon.smithi050 (mon.0) 495 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.727390+0000 mon.smithi050 (mon.0) 495 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.728092+0000 mon.smithi050 (mon.0) 496 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.728092+0000 mon.smithi050 (mon.0) 496 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.728476+0000 mon.smithi050 (mon.0) 497 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.728476+0000 mon.smithi050 (mon.0) 497 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.728842+0000 mon.smithi050 (mon.0) 498 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.728842+0000 mon.smithi050 (mon.0) 498 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.729203+0000 mon.smithi050 (mon.0) 499 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.729203+0000 mon.smithi050 (mon.0) 499 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:34.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.729564+0000 mon.smithi050 (mon.0) 500 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:34.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.729564+0000 mon.smithi050 (mon.0) 500 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:34.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.729924+0000 mon.smithi050 (mon.0) 501 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:34.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.729924+0000 mon.smithi050 (mon.0) 501 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:34.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.730281+0000 mon.smithi050 (mon.0) 502 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:34.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:34 smithi050 bash[19920]: audit 2024-09-21T17:23:33.730281+0000 mon.smithi050 (mon.0) 502 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:35.236 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:23:35.644 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:35.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: cluster 2024-09-21T17:23:34.730878+0000 mon.smithi050 (mon.0) 503 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: cluster 2024-09-21T17:23:34.730878+0000 mon.smithi050 (mon.0) 503 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.731110+0000 mon.smithi050 (mon.0) 504 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.731110+0000 mon.smithi050 (mon.0) 504 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.731519+0000 mon.smithi050 (mon.0) 505 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.731519+0000 mon.smithi050 (mon.0) 505 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.731727+0000 mon.smithi050 (mon.0) 506 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.731727+0000 mon.smithi050 (mon.0) 506 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.732000+0000 mon.smithi050 (mon.0) 507 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.732000+0000 mon.smithi050 (mon.0) 507 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.732260+0000 mon.smithi050 (mon.0) 508 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.732260+0000 mon.smithi050 (mon.0) 508 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.732514+0000 mon.smithi050 (mon.0) 509 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.732514+0000 mon.smithi050 (mon.0) 509 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:35.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.732714+0000 mon.smithi050 (mon.0) 510 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:35.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:35 smithi050 bash[19920]: audit 2024-09-21T17:23:34.732714+0000 mon.smithi050 (mon.0) 510 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:36.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: cluster 2024-09-21T17:23:34.730878+0000 mon.smithi050 (mon.0) 503 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: cluster 2024-09-21T17:23:34.730878+0000 mon.smithi050 (mon.0) 503 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.731110+0000 mon.smithi050 (mon.0) 504 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.731110+0000 mon.smithi050 (mon.0) 504 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.731519+0000 mon.smithi050 (mon.0) 505 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.731519+0000 mon.smithi050 (mon.0) 505 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.731727+0000 mon.smithi050 (mon.0) 506 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.731727+0000 mon.smithi050 (mon.0) 506 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.732000+0000 mon.smithi050 (mon.0) 507 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.732000+0000 mon.smithi050 (mon.0) 507 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.732260+0000 mon.smithi050 (mon.0) 508 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.732260+0000 mon.smithi050 (mon.0) 508 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:36.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.732514+0000 mon.smithi050 (mon.0) 509 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:36.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.732514+0000 mon.smithi050 (mon.0) 509 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:36.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.732714+0000 mon.smithi050 (mon.0) 510 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:36.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 bash[24572]: audit 2024-09-21T17:23:34.732714+0000 mon.smithi050 (mon.0) 510 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:36.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:35 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:36.726 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:36.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 bash[19920]: cluster 2024-09-21T17:23:35.108802+0000 mgr.smithi050.baqqjh (mgr.14203) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T17:23:36.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 bash[19920]: cluster 2024-09-21T17:23:35.108802+0000 mgr.smithi050.baqqjh (mgr.14203) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T17:23:36.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 bash[19920]: audit 2024-09-21T17:23:35.750971+0000 mon.smithi050 (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-21T17:23:36.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 bash[19920]: audit 2024-09-21T17:23:35.750971+0000 mon.smithi050 (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-21T17:23:36.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 bash[19920]: audit 2024-09-21T17:23:35.945345+0000 mon.smithi050 (mon.0) 512 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:36.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 bash[19920]: audit 2024-09-21T17:23:35.945345+0000 mon.smithi050 (mon.0) 512 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:36.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 bash[19920]: audit 2024-09-21T17:23:35.954040+0000 mon.smithi050 (mon.0) 513 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:36.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 bash[19920]: audit 2024-09-21T17:23:35.954040+0000 mon.smithi050 (mon.0) 513 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:36.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:36 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:37.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:36 smithi170 bash[24572]: cluster 2024-09-21T17:23:35.108802+0000 mgr.smithi050.baqqjh (mgr.14203) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T17:23:37.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:36 smithi170 bash[24572]: cluster 2024-09-21T17:23:35.108802+0000 mgr.smithi050.baqqjh (mgr.14203) 126 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T17:23:37.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:36 smithi170 bash[24572]: audit 2024-09-21T17:23:35.750971+0000 mon.smithi050 (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-21T17:23:37.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:36 smithi170 bash[24572]: audit 2024-09-21T17:23:35.750971+0000 mon.smithi050 (mon.0) 511 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-21T17:23:37.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:36 smithi170 bash[24572]: audit 2024-09-21T17:23:35.945345+0000 mon.smithi050 (mon.0) 512 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:37.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:36 smithi170 bash[24572]: audit 2024-09-21T17:23:35.945345+0000 mon.smithi050 (mon.0) 512 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:37.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:36 smithi170 bash[24572]: audit 2024-09-21T17:23:35.954040+0000 mon.smithi050 (mon.0) 513 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:37.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:36 smithi170 bash[24572]: audit 2024-09-21T17:23:35.954040+0000 mon.smithi050 (mon.0) 513 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:37.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.739481+0000 mon.smithi050 (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-21T17:23:37.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.739481+0000 mon.smithi050 (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-21T17:23:37.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: cluster 2024-09-21T17:23:36.742626+0000 mon.smithi050 (mon.0) 515 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-21T17:23:37.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: cluster 2024-09-21T17:23:36.742626+0000 mon.smithi050 (mon.0) 515 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-21T17:23:37.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.742876+0000 mon.smithi050 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:37.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.742876+0000 mon.smithi050 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:37.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.743278+0000 mon.smithi050 (mon.0) 517 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.743278+0000 mon.smithi050 (mon.0) 517 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.743520+0000 mon.smithi050 (mon.0) 518 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.743520+0000 mon.smithi050 (mon.0) 518 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.743763+0000 mon.smithi050 (mon.0) 519 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.743763+0000 mon.smithi050 (mon.0) 519 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.744001+0000 mon.smithi050 (mon.0) 520 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.744001+0000 mon.smithi050 (mon.0) 520 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.744234+0000 mon.smithi050 (mon.0) 521 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.744234+0000 mon.smithi050 (mon.0) 521 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.744460+0000 mon.smithi050 (mon.0) 522 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.744460+0000 mon.smithi050 (mon.0) 522 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.744708+0000 mon.smithi050 (mon.0) 523 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.744708+0000 mon.smithi050 (mon.0) 523 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:37.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.854972+0000 mon.smithi170 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.854972+0000 mon.smithi170 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.855387+0000 mon.smithi050 (mon.0) 524 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:36.855387+0000 mon.smithi050 (mon.0) 524 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:37.057296+0000 mon.smithi050 (mon.0) 525 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:37.057296+0000 mon.smithi050 (mon.0) 525 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:37.062243+0000 mon.smithi050 (mon.0) 526 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:37.062243+0000 mon.smithi050 (mon.0) 526 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:37.063084+0000 mon.smithi050 (mon.0) 527 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:37.063084+0000 mon.smithi050 (mon.0) 527 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:37.063834+0000 mon.smithi050 (mon.0) 528 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:37.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:37 smithi170 bash[24572]: audit 2024-09-21T17:23:37.063834+0000 mon.smithi050 (mon.0) 528 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:38.164 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.739481+0000 mon.smithi050 (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-21T17:23:38.164 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.739481+0000 mon.smithi050 (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-21T17:23:38.164 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: cluster 2024-09-21T17:23:36.742626+0000 mon.smithi050 (mon.0) 515 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: cluster 2024-09-21T17:23:36.742626+0000 mon.smithi050 (mon.0) 515 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.742876+0000 mon.smithi050 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.742876+0000 mon.smithi050 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.743278+0000 mon.smithi050 (mon.0) 517 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.743278+0000 mon.smithi050 (mon.0) 517 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.743520+0000 mon.smithi050 (mon.0) 518 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.743520+0000 mon.smithi050 (mon.0) 518 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.743763+0000 mon.smithi050 (mon.0) 519 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.743763+0000 mon.smithi050 (mon.0) 519 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.744001+0000 mon.smithi050 (mon.0) 520 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.744001+0000 mon.smithi050 (mon.0) 520 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:38.165 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.744234+0000 mon.smithi050 (mon.0) 521 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.744234+0000 mon.smithi050 (mon.0) 521 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.744460+0000 mon.smithi050 (mon.0) 522 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.744460+0000 mon.smithi050 (mon.0) 522 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.744708+0000 mon.smithi050 (mon.0) 523 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.744708+0000 mon.smithi050 (mon.0) 523 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.854972+0000 mon.smithi170 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.854972+0000 mon.smithi170 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.855387+0000 mon.smithi050 (mon.0) 524 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T17:23:38.166 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:36.855387+0000 mon.smithi050 (mon.0) 524 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T17:23:38.167 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:37.057296+0000 mon.smithi050 (mon.0) 525 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:38.167 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:37.057296+0000 mon.smithi050 (mon.0) 525 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:38.167 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:37.062243+0000 mon.smithi050 (mon.0) 526 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:38.167 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:37.062243+0000 mon.smithi050 (mon.0) 526 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:38.167 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:37.063084+0000 mon.smithi050 (mon.0) 527 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-21T17:23:38.167 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:37.063084+0000 mon.smithi050 (mon.0) 527 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-21T17:23:38.167 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:37.063834+0000 mon.smithi050 (mon.0) 528 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:38.167 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:37 smithi050 bash[19920]: audit 2024-09-21T17:23:37.063834+0000 mon.smithi050 (mon.0) 528 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:23:39.009 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: cephadm 2024-09-21T17:23:37.064479+0000 mgr.smithi050.baqqjh (mgr.14203) 127 : cephadm [INF] Deploying daemon osd.7 on smithi050 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: cephadm 2024-09-21T17:23:37.064479+0000 mgr.smithi050.baqqjh (mgr.14203) 127 : cephadm [INF] Deploying daemon osd.7 on smithi050 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: cluster 2024-09-21T17:23:37.109104+0000 mgr.smithi050.baqqjh (mgr.14203) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: cluster 2024-09-21T17:23:37.109104+0000 mgr.smithi050.baqqjh (mgr.14203) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.741681+0000 mon.smithi050 (mon.0) 529 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.741681+0000 mon.smithi050 (mon.0) 529 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.741826+0000 mon.smithi050 (mon.0) 530 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.741826+0000 mon.smithi050 (mon.0) 530 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: cluster 2024-09-21T17:23:37.746778+0000 mon.smithi050 (mon.0) 531 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: cluster 2024-09-21T17:23:37.746778+0000 mon.smithi050 (mon.0) 531 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.747404+0000 mon.smithi170 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.747404+0000 mon.smithi170 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.748125+0000 mon.smithi050 (mon.0) 532 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:39.010 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.748125+0000 mon.smithi050 (mon.0) 532 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.748755+0000 mon.smithi050 (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=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.748755+0000 mon.smithi050 (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=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.759100+0000 mon.smithi050 (mon.0) 534 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.759100+0000 mon.smithi050 (mon.0) 534 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.759507+0000 mon.smithi050 (mon.0) 535 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.759507+0000 mon.smithi050 (mon.0) 535 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.759837+0000 mon.smithi050 (mon.0) 536 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.759837+0000 mon.smithi050 (mon.0) 536 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.760370+0000 mon.smithi050 (mon.0) 537 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.760370+0000 mon.smithi050 (mon.0) 537 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.760655+0000 mon.smithi050 (mon.0) 538 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.760655+0000 mon.smithi050 (mon.0) 538 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.760973+0000 mon.smithi050 (mon.0) 539 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:39.011 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.760973+0000 mon.smithi050 (mon.0) 539 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:39.012 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.761437+0000 mon.smithi050 (mon.0) 540 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:39.012 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:37.761437+0000 mon.smithi050 (mon.0) 540 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:39.012 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:38.744099+0000 mon.smithi050 (mon.0) 541 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:39.012 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:38 smithi050 bash[19920]: audit 2024-09-21T17:23:38.744099+0000 mon.smithi050 (mon.0) 541 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: cephadm 2024-09-21T17:23:37.064479+0000 mgr.smithi050.baqqjh (mgr.14203) 127 : cephadm [INF] Deploying daemon osd.7 on smithi050 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: cephadm 2024-09-21T17:23:37.064479+0000 mgr.smithi050.baqqjh (mgr.14203) 127 : cephadm [INF] Deploying daemon osd.7 on smithi050 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: cluster 2024-09-21T17:23:37.109104+0000 mgr.smithi050.baqqjh (mgr.14203) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: cluster 2024-09-21T17:23:37.109104+0000 mgr.smithi050.baqqjh (mgr.14203) 128 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.741681+0000 mon.smithi050 (mon.0) 529 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.741681+0000 mon.smithi050 (mon.0) 529 : audit [INF] from='osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.741826+0000 mon.smithi050 (mon.0) 530 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.741826+0000 mon.smithi050 (mon.0) 530 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: cluster 2024-09-21T17:23:37.746778+0000 mon.smithi050 (mon.0) 531 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: cluster 2024-09-21T17:23:37.746778+0000 mon.smithi050 (mon.0) 531 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.747404+0000 mon.smithi170 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:39.094 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.747404+0000 mon.smithi170 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.748125+0000 mon.smithi050 (mon.0) 532 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.748125+0000 mon.smithi050 (mon.0) 532 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.748755+0000 mon.smithi050 (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=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.748755+0000 mon.smithi050 (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=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.759100+0000 mon.smithi050 (mon.0) 534 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.759100+0000 mon.smithi050 (mon.0) 534 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.759507+0000 mon.smithi050 (mon.0) 535 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.759507+0000 mon.smithi050 (mon.0) 535 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.759837+0000 mon.smithi050 (mon.0) 536 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.759837+0000 mon.smithi050 (mon.0) 536 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.760370+0000 mon.smithi050 (mon.0) 537 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:39.095 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.760370+0000 mon.smithi050 (mon.0) 537 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:39.096 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.760655+0000 mon.smithi050 (mon.0) 538 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:39.096 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.760655+0000 mon.smithi050 (mon.0) 538 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:39.096 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.760973+0000 mon.smithi050 (mon.0) 539 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:39.096 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.760973+0000 mon.smithi050 (mon.0) 539 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:39.096 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.761437+0000 mon.smithi050 (mon.0) 540 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:39.096 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:37.761437+0000 mon.smithi050 (mon.0) 540 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:39.096 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:38.744099+0000 mon.smithi050 (mon.0) 541 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:39.096 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:38 smithi170 bash[24572]: audit 2024-09-21T17:23:38.744099+0000 mon.smithi050 (mon.0) 541 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:40.020 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:36.701244+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:36.701244+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:36.701323+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:36.701323+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:38.750283+0000 mon.smithi050 (mon.0) 542 : cluster [INF] osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500] boot 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:38.750283+0000 mon.smithi050 (mon.0) 542 : cluster [INF] osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500] boot 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:38.750336+0000 mon.smithi050 (mon.0) 543 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:38.750336+0000 mon.smithi050 (mon.0) 543 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.751425+0000 mon.smithi050 (mon.0) 544 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.751425+0000 mon.smithi050 (mon.0) 544 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.752043+0000 mon.smithi050 (mon.0) 545 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.752043+0000 mon.smithi050 (mon.0) 545 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.752700+0000 mon.smithi050 (mon.0) 546 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:40.021 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.752700+0000 mon.smithi050 (mon.0) 546 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.764107+0000 mon.smithi050 (mon.0) 547 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.764107+0000 mon.smithi050 (mon.0) 547 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.764594+0000 mon.smithi050 (mon.0) 548 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.764594+0000 mon.smithi050 (mon.0) 548 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.764966+0000 mon.smithi050 (mon.0) 549 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.764966+0000 mon.smithi050 (mon.0) 549 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.765378+0000 mon.smithi050 (mon.0) 550 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.765378+0000 mon.smithi050 (mon.0) 550 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.765870+0000 mon.smithi050 (mon.0) 551 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:38.765870+0000 mon.smithi050 (mon.0) 551 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:39.096579+0000 mon.smithi050 (mon.0) 552 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: audit 2024-09-21T17:23:39.096579+0000 mon.smithi050 (mon.0) 552 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:39.109380+0000 mgr.smithi050.baqqjh (mgr.14203) 129 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-21T17:23:40.022 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:39 smithi170 bash[24572]: cluster 2024-09-21T17:23:39.109380+0000 mgr.smithi050.baqqjh (mgr.14203) 129 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:36.701244+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:36.701244+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:36.701323+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:36.701323+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:38.750283+0000 mon.smithi050 (mon.0) 542 : cluster [INF] osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500] boot 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:38.750283+0000 mon.smithi050 (mon.0) 542 : cluster [INF] osd.1 [v2:172.21.15.50:6802/3853477500,v1:172.21.15.50:6803/3853477500] boot 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:38.750336+0000 mon.smithi050 (mon.0) 543 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:38.750336+0000 mon.smithi050 (mon.0) 543 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.751425+0000 mon.smithi050 (mon.0) 544 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:40.099 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.751425+0000 mon.smithi050 (mon.0) 544 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.752043+0000 mon.smithi050 (mon.0) 545 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.752043+0000 mon.smithi050 (mon.0) 545 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.752700+0000 mon.smithi050 (mon.0) 546 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.752700+0000 mon.smithi050 (mon.0) 546 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.764107+0000 mon.smithi050 (mon.0) 547 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.764107+0000 mon.smithi050 (mon.0) 547 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.764594+0000 mon.smithi050 (mon.0) 548 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.764594+0000 mon.smithi050 (mon.0) 548 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.764966+0000 mon.smithi050 (mon.0) 549 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.764966+0000 mon.smithi050 (mon.0) 549 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.765378+0000 mon.smithi050 (mon.0) 550 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.765378+0000 mon.smithi050 (mon.0) 550 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.765870+0000 mon.smithi050 (mon.0) 551 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:38.765870+0000 mon.smithi050 (mon.0) 551 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:39.096579+0000 mon.smithi050 (mon.0) 552 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-21T17:23:40.100 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: audit 2024-09-21T17:23:39.096579+0000 mon.smithi050 (mon.0) 552 : audit [INF] from='osd.2 ' entity='osd.2' 2024-09-21T17:23:40.101 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:39.109380+0000 mgr.smithi050.baqqjh (mgr.14203) 129 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-21T17:23:40.101 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:39 smithi050 bash[19920]: cluster 2024-09-21T17:23:39.109380+0000 mgr.smithi050.baqqjh (mgr.14203) 129 : cluster [DBG] pgmap v80: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: cluster 2024-09-21T17:23:37.875247+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: cluster 2024-09-21T17:23:37.875247+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: cluster 2024-09-21T17:23:37.875359+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: cluster 2024-09-21T17:23:37.875359+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:39.760652+0000 mon.smithi050 (mon.0) 553 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:39.760652+0000 mon.smithi050 (mon.0) 553 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: cluster 2024-09-21T17:23:40.106575+0000 mon.smithi050 (mon.0) 554 : cluster [INF] osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045] boot 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: cluster 2024-09-21T17:23:40.106575+0000 mon.smithi050 (mon.0) 554 : cluster [INF] osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045] boot 2024-09-21T17:23:40.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: cluster 2024-09-21T17:23:40.106635+0000 mon.smithi050 (mon.0) 555 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: cluster 2024-09-21T17:23:40.106635+0000 mon.smithi050 (mon.0) 555 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.106803+0000 mon.smithi050 (mon.0) 556 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.106803+0000 mon.smithi050 (mon.0) 556 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107077+0000 mon.smithi050 (mon.0) 557 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107077+0000 mon.smithi050 (mon.0) 557 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107290+0000 mon.smithi050 (mon.0) 558 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107290+0000 mon.smithi050 (mon.0) 558 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107485+0000 mon.smithi050 (mon.0) 559 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107485+0000 mon.smithi050 (mon.0) 559 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107665+0000 mon.smithi050 (mon.0) 560 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107665+0000 mon.smithi050 (mon.0) 560 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107926+0000 mon.smithi050 (mon.0) 561 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:40.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:40 smithi170 bash[24572]: audit 2024-09-21T17:23:40.107926+0000 mon.smithi050 (mon.0) 561 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:41.054 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:23:41.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: cluster 2024-09-21T17:23:37.875247+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:41.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: cluster 2024-09-21T17:23:37.875247+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:41.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: cluster 2024-09-21T17:23:37.875359+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:41.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: cluster 2024-09-21T17:23:37.875359+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:41.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:39.760652+0000 mon.smithi050 (mon.0) 553 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:39.760652+0000 mon.smithi050 (mon.0) 553 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: cluster 2024-09-21T17:23:40.106575+0000 mon.smithi050 (mon.0) 554 : cluster [INF] osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045] boot 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: cluster 2024-09-21T17:23:40.106575+0000 mon.smithi050 (mon.0) 554 : cluster [INF] osd.2 [v2:172.21.15.170:6808/3606395045,v1:172.21.15.170:6809/3606395045] boot 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: cluster 2024-09-21T17:23:40.106635+0000 mon.smithi050 (mon.0) 555 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: cluster 2024-09-21T17:23:40.106635+0000 mon.smithi050 (mon.0) 555 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.106803+0000 mon.smithi050 (mon.0) 556 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.106803+0000 mon.smithi050 (mon.0) 556 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107077+0000 mon.smithi050 (mon.0) 557 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107077+0000 mon.smithi050 (mon.0) 557 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107290+0000 mon.smithi050 (mon.0) 558 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107290+0000 mon.smithi050 (mon.0) 558 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107485+0000 mon.smithi050 (mon.0) 559 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:41.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107485+0000 mon.smithi050 (mon.0) 559 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:41.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107665+0000 mon.smithi050 (mon.0) 560 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:41.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107665+0000 mon.smithi050 (mon.0) 560 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:41.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107926+0000 mon.smithi050 (mon.0) 561 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:41.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:40 smithi050 bash[19920]: audit 2024-09-21T17:23:40.107926+0000 mon.smithi050 (mon.0) 561 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:41.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:41 smithi170 bash[24572]: cluster 2024-09-21T17:23:41.109768+0000 mgr.smithi050.baqqjh (mgr.14203) 130 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-21T17:23:41.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:41 smithi170 bash[24572]: cluster 2024-09-21T17:23:41.109768+0000 mgr.smithi050.baqqjh (mgr.14203) 130 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-21T17:23:41.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:41 smithi170 bash[24572]: audit 2024-09-21T17:23:41.642286+0000 mon.smithi050 (mon.0) 562 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:23:41.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:41 smithi170 bash[24572]: audit 2024-09-21T17:23:41.642286+0000 mon.smithi050 (mon.0) 562 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:23:41.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:41 smithi170 bash[24572]: audit 2024-09-21T17:23:41.717054+0000 mon.smithi050 (mon.0) 563 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-21T17:23:41.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:41 smithi170 bash[24572]: audit 2024-09-21T17:23:41.717054+0000 mon.smithi050 (mon.0) 563 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-21T17:23:41.866 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:41 smithi050 bash[19920]: cluster 2024-09-21T17:23:41.109768+0000 mgr.smithi050.baqqjh (mgr.14203) 130 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-21T17:23:41.866 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:41 smithi050 bash[19920]: cluster 2024-09-21T17:23:41.109768+0000 mgr.smithi050.baqqjh (mgr.14203) 130 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-21T17:23:41.866 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:41 smithi050 bash[19920]: audit 2024-09-21T17:23:41.642286+0000 mon.smithi050 (mon.0) 562 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:23:41.866 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:41 smithi050 bash[19920]: audit 2024-09-21T17:23:41.642286+0000 mon.smithi050 (mon.0) 562 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:23:41.867 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:41 smithi050 bash[19920]: audit 2024-09-21T17:23:41.717054+0000 mon.smithi050 (mon.0) 563 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-21T17:23:41.867 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:41 smithi050 bash[19920]: audit 2024-09-21T17:23:41.717054+0000 mon.smithi050 (mon.0) 563 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-21T17:23:43.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.764625+0000 mon.smithi050 (mon.0) 564 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:23:43.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.764625+0000 mon.smithi050 (mon.0) 564 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:23:43.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.764735+0000 mon.smithi050 (mon.0) 565 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-21T17:23:43.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.764735+0000 mon.smithi050 (mon.0) 565 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-21T17:23:43.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: cluster 2024-09-21T17:23:41.769655+0000 mon.smithi050 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-21T17:23:43.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: cluster 2024-09-21T17:23:41.769655+0000 mon.smithi050 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.770024+0000 mon.smithi050 (mon.0) 567 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.770024+0000 mon.smithi050 (mon.0) 567 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.770361+0000 mon.smithi050 (mon.0) 568 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.770361+0000 mon.smithi050 (mon.0) 568 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.770643+0000 mon.smithi050 (mon.0) 569 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.770643+0000 mon.smithi050 (mon.0) 569 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.770893+0000 mon.smithi050 (mon.0) 570 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.770893+0000 mon.smithi050 (mon.0) 570 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.771116+0000 mon.smithi050 (mon.0) 571 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.771116+0000 mon.smithi050 (mon.0) 571 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.771388+0000 mon.smithi050 (mon.0) 572 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.771388+0000 mon.smithi050 (mon.0) 572 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.070 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.771789+0000 mon.smithi050 (mon.0) 573 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-21T17:23:43.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:41.771789+0000 mon.smithi050 (mon.0) 573 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-21T17:23:43.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:42.452263+0000 mon.smithi170 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T17:23:43.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:42.452263+0000 mon.smithi170 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T17:23:43.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:42.453100+0000 mon.smithi050 (mon.0) 574 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T17:23:43.071 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:42 smithi050 bash[19920]: audit 2024-09-21T17:23:42.453100+0000 mon.smithi050 (mon.0) 574 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.764625+0000 mon.smithi050 (mon.0) 564 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.764625+0000 mon.smithi050 (mon.0) 564 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.764735+0000 mon.smithi050 (mon.0) 565 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.764735+0000 mon.smithi050 (mon.0) 565 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: cluster 2024-09-21T17:23:41.769655+0000 mon.smithi050 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: cluster 2024-09-21T17:23:41.769655+0000 mon.smithi050 (mon.0) 566 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.770024+0000 mon.smithi050 (mon.0) 567 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.770024+0000 mon.smithi050 (mon.0) 567 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.770361+0000 mon.smithi050 (mon.0) 568 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.770361+0000 mon.smithi050 (mon.0) 568 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.770643+0000 mon.smithi050 (mon.0) 569 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.770643+0000 mon.smithi050 (mon.0) 569 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.770893+0000 mon.smithi050 (mon.0) 570 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.770893+0000 mon.smithi050 (mon.0) 570 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.771116+0000 mon.smithi050 (mon.0) 571 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.771116+0000 mon.smithi050 (mon.0) 571 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.771388+0000 mon.smithi050 (mon.0) 572 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.771388+0000 mon.smithi050 (mon.0) 572 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.771789+0000 mon.smithi050 (mon.0) 573 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:41.771789+0000 mon.smithi050 (mon.0) 573 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:42.452263+0000 mon.smithi170 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:42.452263+0000 mon.smithi170 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:42.453100+0000 mon.smithi050 (mon.0) 574 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T17:23:43.110 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:42 smithi170 bash[24572]: audit 2024-09-21T17:23:42.453100+0000 mon.smithi050 (mon.0) 574 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T17:23:43.319 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:43.598 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:23:43.659 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.775192+0000 mon.smithi050 (mon.0) 575 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.775192+0000 mon.smithi050 (mon.0) 575 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.775318+0000 mon.smithi050 (mon.0) 576 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.775318+0000 mon.smithi050 (mon.0) 576 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.775449+0000 mon.smithi050 (mon.0) 577 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.775449+0000 mon.smithi050 (mon.0) 577 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: cluster 2024-09-21T17:23:42.780301+0000 mon.smithi050 (mon.0) 578 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: cluster 2024-09-21T17:23:42.780301+0000 mon.smithi050 (mon.0) 578 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.781163+0000 mon.smithi170 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.781163+0000 mon.smithi170 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.781731+0000 mon.smithi050 (mon.0) 579 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.781731+0000 mon.smithi050 (mon.0) 579 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.782480+0000 mon.smithi050 (mon.0) 580 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.782480+0000 mon.smithi050 (mon.0) 580 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.783041+0000 mon.smithi050 (mon.0) 581 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:43.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.783041+0000 mon.smithi050 (mon.0) 581 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:43.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.783396+0000 mon.smithi050 (mon.0) 582 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.783396+0000 mon.smithi050 (mon.0) 582 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.783814+0000 mon.smithi050 (mon.0) 583 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.783814+0000 mon.smithi050 (mon.0) 583 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.784181+0000 mon.smithi050 (mon.0) 584 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.784181+0000 mon.smithi050 (mon.0) 584 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.787900+0000 mon.smithi050 (mon.0) 585 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:42.787900+0000 mon.smithi050 (mon.0) 585 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.110105+0000 mgr.smithi050.baqqjh (mgr.14203) 131 : cluster [DBG] pgmap v85: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.110105+0000 mgr.smithi050.baqqjh (mgr.14203) 131 : cluster [DBG] pgmap v85: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.367958+0000 mon.smithi050 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.367958+0000 mon.smithi050 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.371232+0000 mon.smithi050 (mon.0) 587 : cluster [INF] osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134] boot 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.371232+0000 mon.smithi050 (mon.0) 587 : cluster [INF] osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134] boot 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.371282+0000 mon.smithi050 (mon.0) 588 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.371282+0000 mon.smithi050 (mon.0) 588 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2024-09-21T17:23:43.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.371557+0000 mon.smithi050 (mon.0) 589 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.371557+0000 mon.smithi050 (mon.0) 589 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.372003+0000 mon.smithi050 (mon.0) 590 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.372003+0000 mon.smithi050 (mon.0) 590 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.372218+0000 mon.smithi050 (mon.0) 591 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.372218+0000 mon.smithi050 (mon.0) 591 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.372683+0000 mon.smithi050 (mon.0) 592 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.372683+0000 mon.smithi050 (mon.0) 592 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.372923+0000 mon.smithi050 (mon.0) 593 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.372923+0000 mon.smithi050 (mon.0) 593 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.376679+0000 mon.smithi050 (mon.0) 594 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.376679+0000 mon.smithi050 (mon.0) 594 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.657697+0000 mon.smithi050 (mon.0) 595 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.657697+0000 mon.smithi050 (mon.0) 595 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:43.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.658287+0000 mon.smithi050 (mon.0) 596 : audit [DBG] from='client.? 172.21.15.50:0/1262942162' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:43.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.658287+0000 mon.smithi050 (mon.0) 596 : audit [DBG] from='client.? 172.21.15.50:0/1262942162' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:43.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.662813+0000 mon.smithi050 (mon.0) 597 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:43.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.662813+0000 mon.smithi050 (mon.0) 597 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:43.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.699697+0000 mon.smithi050 (mon.0) 598 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-21T17:23:43.863 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:43 smithi170 bash[24572]: audit 2024-09-21T17:23:43.699697+0000 mon.smithi050 (mon.0) 598 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-21T17:23:43.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.775192+0000 mon.smithi050 (mon.0) 575 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:43.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.775192+0000 mon.smithi050 (mon.0) 575 : audit [INF] from='osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:43.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.775318+0000 mon.smithi050 (mon.0) 576 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-21T17:23:43.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.775318+0000 mon.smithi050 (mon.0) 576 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-21T17:23:43.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.775449+0000 mon.smithi050 (mon.0) 577 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-21T17:23:43.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.775449+0000 mon.smithi050 (mon.0) 577 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-21T17:23:43.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: cluster 2024-09-21T17:23:42.780301+0000 mon.smithi050 (mon.0) 578 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: cluster 2024-09-21T17:23:42.780301+0000 mon.smithi050 (mon.0) 578 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.781163+0000 mon.smithi170 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.781163+0000 mon.smithi170 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.781731+0000 mon.smithi050 (mon.0) 579 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.781731+0000 mon.smithi050 (mon.0) 579 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.782480+0000 mon.smithi050 (mon.0) 580 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.782480+0000 mon.smithi050 (mon.0) 580 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.783041+0000 mon.smithi050 (mon.0) 581 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.783041+0000 mon.smithi050 (mon.0) 581 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.783396+0000 mon.smithi050 (mon.0) 582 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.783396+0000 mon.smithi050 (mon.0) 582 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.783814+0000 mon.smithi050 (mon.0) 583 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.783814+0000 mon.smithi050 (mon.0) 583 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.784181+0000 mon.smithi050 (mon.0) 584 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.784181+0000 mon.smithi050 (mon.0) 584 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.787900+0000 mon.smithi050 (mon.0) 585 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:42.787900+0000 mon.smithi050 (mon.0) 585 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.110105+0000 mgr.smithi050.baqqjh (mgr.14203) 131 : cluster [DBG] pgmap v85: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.110105+0000 mgr.smithi050.baqqjh (mgr.14203) 131 : cluster [DBG] pgmap v85: 1 pgs: 1 unknown; 0 B data, 88 MiB used, 268 GiB / 268 GiB avail 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.367958+0000 mon.smithi050 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.367958+0000 mon.smithi050 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.371232+0000 mon.smithi050 (mon.0) 587 : cluster [INF] osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134] boot 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.371232+0000 mon.smithi050 (mon.0) 587 : cluster [INF] osd.3 [v2:172.21.15.50:6810/1274023134,v1:172.21.15.50:6811/1274023134] boot 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.371282+0000 mon.smithi050 (mon.0) 588 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.371282+0000 mon.smithi050 (mon.0) 588 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.371557+0000 mon.smithi050 (mon.0) 589 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.371557+0000 mon.smithi050 (mon.0) 589 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.372003+0000 mon.smithi050 (mon.0) 590 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.372003+0000 mon.smithi050 (mon.0) 590 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.372218+0000 mon.smithi050 (mon.0) 591 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.372218+0000 mon.smithi050 (mon.0) 591 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.372683+0000 mon.smithi050 (mon.0) 592 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.372683+0000 mon.smithi050 (mon.0) 592 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.372923+0000 mon.smithi050 (mon.0) 593 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.372923+0000 mon.smithi050 (mon.0) 593 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.376679+0000 mon.smithi050 (mon.0) 594 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.376679+0000 mon.smithi050 (mon.0) 594 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.657697+0000 mon.smithi050 (mon.0) 595 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.657697+0000 mon.smithi050 (mon.0) 595 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.658287+0000 mon.smithi050 (mon.0) 596 : audit [DBG] from='client.? 172.21.15.50:0/1262942162' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.658287+0000 mon.smithi050 (mon.0) 596 : audit [DBG] from='client.? 172.21.15.50:0/1262942162' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.662813+0000 mon.smithi050 (mon.0) 597 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.662813+0000 mon.smithi050 (mon.0) 597 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.699697+0000 mon.smithi050 (mon.0) 598 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-21T17:23:43.987 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:43 smithi050 bash[19920]: audit 2024-09-21T17:23:43.699697+0000 mon.smithi050 (mon.0) 598 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-21T17:23:45.366 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":24,"num_osds":8,"num_up_osds":4,"osd_up_since":1726939423,"num_in_osds":8,"osd_in_since":1726939381,"num_remapped_pgs":1} 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: cluster 2024-09-21T17:23:42.732042+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: cluster 2024-09-21T17:23:42.732042+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: cluster 2024-09-21T17:23:42.732161+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: cluster 2024-09-21T17:23:42.732161+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: cluster 2024-09-21T17:23:44.377145+0000 mon.smithi050 (mon.0) 599 : cluster [INF] osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852] boot 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: cluster 2024-09-21T17:23:44.377145+0000 mon.smithi050 (mon.0) 599 : cluster [INF] osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852] boot 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: cluster 2024-09-21T17:23:44.377246+0000 mon.smithi050 (mon.0) 600 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: cluster 2024-09-21T17:23:44.377246+0000 mon.smithi050 (mon.0) 600 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: audit 2024-09-21T17:23:44.377736+0000 mon.smithi050 (mon.0) 601 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:45.619 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: audit 2024-09-21T17:23:44.377736+0000 mon.smithi050 (mon.0) 601 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:45.620 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: audit 2024-09-21T17:23:44.378730+0000 mon.smithi050 (mon.0) 602 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:45.620 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: audit 2024-09-21T17:23:44.378730+0000 mon.smithi050 (mon.0) 602 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:45.620 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: audit 2024-09-21T17:23:44.379698+0000 mon.smithi050 (mon.0) 603 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:45.620 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: audit 2024-09-21T17:23:44.379698+0000 mon.smithi050 (mon.0) 603 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:45.620 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: audit 2024-09-21T17:23:44.380305+0000 mon.smithi050 (mon.0) 604 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:45.620 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:45 smithi050 bash[19920]: audit 2024-09-21T17:23:44.380305+0000 mon.smithi050 (mon.0) 604 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: cluster 2024-09-21T17:23:42.732042+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: cluster 2024-09-21T17:23:42.732042+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: cluster 2024-09-21T17:23:42.732161+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: cluster 2024-09-21T17:23:42.732161+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: cluster 2024-09-21T17:23:44.377145+0000 mon.smithi050 (mon.0) 599 : cluster [INF] osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852] boot 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: cluster 2024-09-21T17:23:44.377145+0000 mon.smithi050 (mon.0) 599 : cluster [INF] osd.4 [v2:172.21.15.170:6816/2593634852,v1:172.21.15.170:6817/2593634852] boot 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: cluster 2024-09-21T17:23:44.377246+0000 mon.smithi050 (mon.0) 600 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: cluster 2024-09-21T17:23:44.377246+0000 mon.smithi050 (mon.0) 600 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: audit 2024-09-21T17:23:44.377736+0000 mon.smithi050 (mon.0) 601 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: audit 2024-09-21T17:23:44.377736+0000 mon.smithi050 (mon.0) 601 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T17:23:45.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: audit 2024-09-21T17:23:44.378730+0000 mon.smithi050 (mon.0) 602 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:45.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: audit 2024-09-21T17:23:44.378730+0000 mon.smithi050 (mon.0) 602 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:45.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: audit 2024-09-21T17:23:44.379698+0000 mon.smithi050 (mon.0) 603 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:45.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: audit 2024-09-21T17:23:44.379698+0000 mon.smithi050 (mon.0) 603 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:45.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: audit 2024-09-21T17:23:44.380305+0000 mon.smithi050 (mon.0) 604 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:45.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:45 smithi170 bash[24572]: audit 2024-09-21T17:23:44.380305+0000 mon.smithi050 (mon.0) 604 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:46.368 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:23:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.695685+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.695685+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.695800+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: cluster 2024-09-21T17:23:43.695800+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: cluster 2024-09-21T17:23:45.110671+0000 mgr.smithi050.baqqjh (mgr.14203) 132 : cluster [DBG] pgmap v88: 1 pgs: 1 creating+remapped; 0 B data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-21T17:23:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: cluster 2024-09-21T17:23:45.110671+0000 mgr.smithi050.baqqjh (mgr.14203) 132 : cluster [DBG] pgmap v88: 1 pgs: 1 creating+remapped; 0 B data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-21T17:23:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: cluster 2024-09-21T17:23:45.384530+0000 mon.smithi050 (mon.0) 605 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: cluster 2024-09-21T17:23:45.384530+0000 mon.smithi050 (mon.0) 605 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:45.385161+0000 mon.smithi050 (mon.0) 606 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:45.385161+0000 mon.smithi050 (mon.0) 606 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:45.385553+0000 mon.smithi050 (mon.0) 607 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:45.385553+0000 mon.smithi050 (mon.0) 607 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:45.385907+0000 mon.smithi050 (mon.0) 608 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:45.385907+0000 mon.smithi050 (mon.0) 608 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:45.571100+0000 mon.smithi050 (mon.0) 609 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:45.571100+0000 mon.smithi050 (mon.0) 609 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:46.199659+0000 mon.smithi050 (mon.0) 610 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:46.199659+0000 mon.smithi050 (mon.0) 610 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:46.268537+0000 mon.smithi050 (mon.0) 611 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:46.268537+0000 mon.smithi050 (mon.0) 611 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:46.339378+0000 mon.smithi050 (mon.0) 612 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:46 smithi050 bash[19920]: audit 2024-09-21T17:23:46.339378+0000 mon.smithi050 (mon.0) 612 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.695685+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.695685+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.695800+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: cluster 2024-09-21T17:23:43.695800+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: cluster 2024-09-21T17:23:45.110671+0000 mgr.smithi050.baqqjh (mgr.14203) 132 : cluster [DBG] pgmap v88: 1 pgs: 1 creating+remapped; 0 B data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: cluster 2024-09-21T17:23:45.110671+0000 mgr.smithi050.baqqjh (mgr.14203) 132 : cluster [DBG] pgmap v88: 1 pgs: 1 creating+remapped; 0 B data, 114 MiB used, 357 GiB / 358 GiB avail 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: cluster 2024-09-21T17:23:45.384530+0000 mon.smithi050 (mon.0) 605 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: cluster 2024-09-21T17:23:45.384530+0000 mon.smithi050 (mon.0) 605 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:45.385161+0000 mon.smithi050 (mon.0) 606 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:45.385161+0000 mon.smithi050 (mon.0) 606 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:45.385553+0000 mon.smithi050 (mon.0) 607 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:45.385553+0000 mon.smithi050 (mon.0) 607 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:45.385907+0000 mon.smithi050 (mon.0) 608 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:45.385907+0000 mon.smithi050 (mon.0) 608 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:45.571100+0000 mon.smithi050 (mon.0) 609 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:45.571100+0000 mon.smithi050 (mon.0) 609 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:23:46.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:46.199659+0000 mon.smithi050 (mon.0) 610 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:46.199659+0000 mon.smithi050 (mon.0) 610 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:46.268537+0000 mon.smithi050 (mon.0) 611 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:46.268537+0000 mon.smithi050 (mon.0) 611 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:46.339378+0000 mon.smithi050 (mon.0) 612 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:46.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:46 smithi170 bash[24572]: audit 2024-09-21T17:23:46.339378+0000 mon.smithi050 (mon.0) 612 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: cluster 2024-09-21T17:23:46.385334+0000 mon.smithi050 (mon.0) 613 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-21T17:23:47.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: cluster 2024-09-21T17:23:46.385334+0000 mon.smithi050 (mon.0) 613 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.385531+0000 mon.smithi050 (mon.0) 614 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.385531+0000 mon.smithi050 (mon.0) 614 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.385909+0000 mon.smithi050 (mon.0) 615 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.385909+0000 mon.smithi050 (mon.0) 615 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.386208+0000 mon.smithi050 (mon.0) 616 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.386208+0000 mon.smithi050 (mon.0) 616 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.403500+0000 mon.smithi050 (mon.0) 617 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.403500+0000 mon.smithi050 (mon.0) 617 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.482217+0000 mon.smithi050 (mon.0) 618 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.482217+0000 mon.smithi050 (mon.0) 618 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.484805+0000 mon.smithi050 (mon.0) 619 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.484805+0000 mon.smithi050 (mon.0) 619 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.524808+0000 mon.smithi050 (mon.0) 620 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T17:23:47.609 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.524808+0000 mon.smithi050 (mon.0) 620 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.525068+0000 mon.smithi050 (mon.0) 621 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.525068+0000 mon.smithi050 (mon.0) 621 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.525343+0000 mon.smithi050 (mon.0) 622 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.525343+0000 mon.smithi050 (mon.0) 622 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.550920+0000 mon.smithi050 (mon.0) 623 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.550920+0000 mon.smithi050 (mon.0) 623 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.553060+0000 mon.smithi170 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.553060+0000 mon.smithi170 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T17:23:47.610 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.553184+0000 mon.smithi050 (mon.0) 624 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.553184+0000 mon.smithi050 (mon.0) 624 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.553403+0000 mon.smithi050 (mon.0) 625 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.553403+0000 mon.smithi050 (mon.0) 625 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.602987+0000 mon.smithi170 (mon.1) 18 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.602987+0000 mon.smithi170 (mon.1) 18 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.618495+0000 mon.smithi170 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.618495+0000 mon.smithi170 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.618971+0000 mon.smithi050 (mon.0) 626 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.618971+0000 mon.smithi050 (mon.0) 626 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.624988+0000 mon.smithi050 (mon.0) 627 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: audit 2024-09-21T17:23:46.624988+0000 mon.smithi050 (mon.0) 627 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.287138+0000 mon.smithi050 (mon.0) 628 : cluster [DBG] mgrmap e20: smithi050.baqqjh(active, since 2m), standbys: smithi170.lejafv 2024-09-21T17:23:47.611 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:47 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.287138+0000 mon.smithi050 (mon.0) 628 : cluster [DBG] mgrmap e20: smithi050.baqqjh(active, since 2m), standbys: smithi170.lejafv 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: cluster 2024-09-21T17:23:46.385334+0000 mon.smithi050 (mon.0) 613 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: cluster 2024-09-21T17:23:46.385334+0000 mon.smithi050 (mon.0) 613 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.385531+0000 mon.smithi050 (mon.0) 614 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.385531+0000 mon.smithi050 (mon.0) 614 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.385909+0000 mon.smithi050 (mon.0) 615 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.385909+0000 mon.smithi050 (mon.0) 615 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.386208+0000 mon.smithi050 (mon.0) 616 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.386208+0000 mon.smithi050 (mon.0) 616 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.403500+0000 mon.smithi050 (mon.0) 617 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.718 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.403500+0000 mon.smithi050 (mon.0) 617 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.482217+0000 mon.smithi050 (mon.0) 618 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.482217+0000 mon.smithi050 (mon.0) 618 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.484805+0000 mon.smithi050 (mon.0) 619 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.484805+0000 mon.smithi050 (mon.0) 619 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.524808+0000 mon.smithi050 (mon.0) 620 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.524808+0000 mon.smithi050 (mon.0) 620 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.525068+0000 mon.smithi050 (mon.0) 621 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.525068+0000 mon.smithi050 (mon.0) 621 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.525343+0000 mon.smithi050 (mon.0) 622 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.525343+0000 mon.smithi050 (mon.0) 622 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.550920+0000 mon.smithi050 (mon.0) 623 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.550920+0000 mon.smithi050 (mon.0) 623 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.553060+0000 mon.smithi170 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.553060+0000 mon.smithi170 (mon.1) 17 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.553184+0000 mon.smithi050 (mon.0) 624 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:23:47.719 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.553184+0000 mon.smithi050 (mon.0) 624 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi050"} : dispatch 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.553403+0000 mon.smithi050 (mon.0) 625 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.553403+0000 mon.smithi050 (mon.0) 625 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "mon metadata", "id": "smithi170"} : dispatch 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.602987+0000 mon.smithi170 (mon.1) 18 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.602987+0000 mon.smithi170 (mon.1) 18 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.618495+0000 mon.smithi170 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.618495+0000 mon.smithi170 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.618971+0000 mon.smithi050 (mon.0) 626 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.618971+0000 mon.smithi050 (mon.0) 626 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.624988+0000 mon.smithi050 (mon.0) 627 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: audit 2024-09-21T17:23:46.624988+0000 mon.smithi050 (mon.0) 627 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.287138+0000 mon.smithi050 (mon.0) 628 : cluster [DBG] mgrmap e20: smithi050.baqqjh(active, since 2m), standbys: smithi170.lejafv 2024-09-21T17:23:47.720 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:47 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.287138+0000 mon.smithi050 (mon.0) 628 : cluster [DBG] mgrmap e20: smithi050.baqqjh(active, since 2m), standbys: smithi170.lejafv 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.111288+0000 mgr.smithi050.baqqjh (mgr.14203) 133 : cluster [DBG] pgmap v91: 1 pgs: 1 creating+remapped; 0 B data, 145 MiB used, 447 GiB / 447 GiB avail 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.111288+0000 mgr.smithi050.baqqjh (mgr.14203) 133 : cluster [DBG] pgmap v91: 1 pgs: 1 creating+remapped; 0 B data, 145 MiB used, 447 GiB / 447 GiB avail 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.551160+0000 mon.smithi050 (mon.0) 629 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.551160+0000 mon.smithi050 (mon.0) 629 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.556467+0000 mon.smithi050 (mon.0) 630 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.556467+0000 mon.smithi050 (mon.0) 630 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.557061+0000 mon.smithi050 (mon.0) 631 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.557061+0000 mon.smithi050 (mon.0) 631 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.557750+0000 mon.smithi050 (mon.0) 632 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.557750+0000 mon.smithi050 (mon.0) 632 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:48.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.557813+0000 mon.smithi170 (mon.1) 20 : audit [INF] from='osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.557813+0000 mon.smithi170 (mon.1) 20 : audit [INF] from='osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.558325+0000 mon.smithi050 (mon.0) 633 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.558325+0000 mon.smithi050 (mon.0) 633 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.559331+0000 mon.smithi050 (mon.0) 634 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.559331+0000 mon.smithi050 (mon.0) 634 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.635447+0000 mon.smithi050 (mon.0) 635 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.635447+0000 mon.smithi050 (mon.0) 635 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.642187+0000 mon.smithi050 (mon.0) 636 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:48.736 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:48 smithi050 bash[19920]: audit 2024-09-21T17:23:47.642187+0000 mon.smithi050 (mon.0) 636 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.111288+0000 mgr.smithi050.baqqjh (mgr.14203) 133 : cluster [DBG] pgmap v91: 1 pgs: 1 creating+remapped; 0 B data, 145 MiB used, 447 GiB / 447 GiB avail 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.111288+0000 mgr.smithi050.baqqjh (mgr.14203) 133 : cluster [DBG] pgmap v91: 1 pgs: 1 creating+remapped; 0 B data, 145 MiB used, 447 GiB / 447 GiB avail 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.551160+0000 mon.smithi050 (mon.0) 629 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.551160+0000 mon.smithi050 (mon.0) 629 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.556467+0000 mon.smithi050 (mon.0) 630 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.556467+0000 mon.smithi050 (mon.0) 630 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.557061+0000 mon.smithi050 (mon.0) 631 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.557061+0000 mon.smithi050 (mon.0) 631 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.557750+0000 mon.smithi050 (mon.0) 632 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:48.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.557750+0000 mon.smithi050 (mon.0) 632 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.557813+0000 mon.smithi170 (mon.1) 20 : audit [INF] from='osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.557813+0000 mon.smithi170 (mon.1) 20 : audit [INF] from='osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.558325+0000 mon.smithi050 (mon.0) 633 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.558325+0000 mon.smithi050 (mon.0) 633 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.559331+0000 mon.smithi050 (mon.0) 634 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.559331+0000 mon.smithi050 (mon.0) 634 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]} : dispatch 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.635447+0000 mon.smithi050 (mon.0) 635 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.635447+0000 mon.smithi050 (mon.0) 635 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:48.861 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.642187+0000 mon.smithi050 (mon.0) 636 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:48.862 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:48 smithi170 bash[24572]: audit 2024-09-21T17:23:47.642187+0000 mon.smithi050 (mon.0) 636 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.553428+0000 mon.smithi050 (mon.0) 637 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.553428+0000 mon.smithi050 (mon.0) 637 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: cluster 2024-09-21T17:23:48.556611+0000 mon.smithi050 (mon.0) 638 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-21T17:23:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: cluster 2024-09-21T17:23:48.556611+0000 mon.smithi050 (mon.0) 638 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-21T17:23:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.557022+0000 mon.smithi050 (mon.0) 639 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.557022+0000 mon.smithi050 (mon.0) 639 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.557242+0000 mon.smithi050 (mon.0) 640 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.557242+0000 mon.smithi050 (mon.0) 640 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.557419+0000 mon.smithi050 (mon.0) 641 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.557419+0000 mon.smithi050 (mon.0) 641 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.566765+0000 mon.smithi050 (mon.0) 642 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.566765+0000 mon.smithi050 (mon.0) 642 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.912858+0000 mon.smithi050 (mon.0) 643 : audit [INF] from='osd.6 ' entity='osd.6' 2024-09-21T17:23:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:49 smithi050 bash[19920]: audit 2024-09-21T17:23:48.912858+0000 mon.smithi050 (mon.0) 643 : audit [INF] from='osd.6 ' entity='osd.6' 2024-09-21T17:23:49.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.553428+0000 mon.smithi050 (mon.0) 637 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.553428+0000 mon.smithi050 (mon.0) 637 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi170", "root=default"]}]': finished 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: cluster 2024-09-21T17:23:48.556611+0000 mon.smithi050 (mon.0) 638 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: cluster 2024-09-21T17:23:48.556611+0000 mon.smithi050 (mon.0) 638 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.557022+0000 mon.smithi050 (mon.0) 639 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.557022+0000 mon.smithi050 (mon.0) 639 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.557242+0000 mon.smithi050 (mon.0) 640 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.557242+0000 mon.smithi050 (mon.0) 640 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.557419+0000 mon.smithi050 (mon.0) 641 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.557419+0000 mon.smithi050 (mon.0) 641 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.566765+0000 mon.smithi050 (mon.0) 642 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.566765+0000 mon.smithi050 (mon.0) 642 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.912858+0000 mon.smithi050 (mon.0) 643 : audit [INF] from='osd.6 ' entity='osd.6' 2024-09-21T17:23:49.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:49 smithi170 bash[24572]: audit 2024-09-21T17:23:48.912858+0000 mon.smithi050 (mon.0) 643 : audit [INF] from='osd.6 ' entity='osd.6' 2024-09-21T17:23:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.572989+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.572989+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.573092+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:47.573092+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:49.111994+0000 mgr.smithi050.baqqjh (mgr.14203) 134 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:49.111994+0000 mgr.smithi050.baqqjh (mgr.14203) 134 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: audit 2024-09-21T17:23:49.566861+0000 mon.smithi050 (mon.0) 644 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: audit 2024-09-21T17:23:49.566861+0000 mon.smithi050 (mon.0) 644 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:49.916211+0000 mon.smithi050 (mon.0) 645 : cluster [INF] osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429] boot 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:49.916211+0000 mon.smithi050 (mon.0) 645 : cluster [INF] osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429] boot 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:49.916307+0000 mon.smithi050 (mon.0) 646 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: cluster 2024-09-21T17:23:49.916307+0000 mon.smithi050 (mon.0) 646 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: audit 2024-09-21T17:23:49.916986+0000 mon.smithi050 (mon.0) 647 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: audit 2024-09-21T17:23:49.916986+0000 mon.smithi050 (mon.0) 647 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: audit 2024-09-21T17:23:49.917782+0000 mon.smithi050 (mon.0) 648 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:50.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: audit 2024-09-21T17:23:49.917782+0000 mon.smithi050 (mon.0) 648 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:50.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: audit 2024-09-21T17:23:49.918291+0000 mon.smithi050 (mon.0) 649 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:50.860 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:50 smithi170 bash[24572]: audit 2024-09-21T17:23:49.918291+0000 mon.smithi050 (mon.0) 649 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:50.870 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:23:50.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.572989+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:50.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.572989+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.573092+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:47.573092+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:49.111994+0000 mgr.smithi050.baqqjh (mgr.14203) 134 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:49.111994+0000 mgr.smithi050.baqqjh (mgr.14203) 134 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: audit 2024-09-21T17:23:49.566861+0000 mon.smithi050 (mon.0) 644 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: audit 2024-09-21T17:23:49.566861+0000 mon.smithi050 (mon.0) 644 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:49.916211+0000 mon.smithi050 (mon.0) 645 : cluster [INF] osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429] boot 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:49.916211+0000 mon.smithi050 (mon.0) 645 : cluster [INF] osd.6 [v2:172.21.15.170:6824/715811429,v1:172.21.15.170:6825/715811429] boot 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:49.916307+0000 mon.smithi050 (mon.0) 646 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: cluster 2024-09-21T17:23:49.916307+0000 mon.smithi050 (mon.0) 646 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: audit 2024-09-21T17:23:49.916986+0000 mon.smithi050 (mon.0) 647 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: audit 2024-09-21T17:23:49.916986+0000 mon.smithi050 (mon.0) 647 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: audit 2024-09-21T17:23:49.917782+0000 mon.smithi050 (mon.0) 648 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:50.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: audit 2024-09-21T17:23:49.917782+0000 mon.smithi050 (mon.0) 648 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T17:23:50.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: audit 2024-09-21T17:23:49.918291+0000 mon.smithi050 (mon.0) 649 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:50.986 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:50 smithi050 bash[19920]: audit 2024-09-21T17:23:49.918291+0000 mon.smithi050 (mon.0) 649 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:51 smithi050 bash[19920]: audit 2024-09-21T17:23:51.107341+0000 mon.smithi050 (mon.0) 650 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-21T17:23:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:51 smithi050 bash[19920]: audit 2024-09-21T17:23:51.107341+0000 mon.smithi050 (mon.0) 650 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-21T17:23:51.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:51 smithi170 bash[24572]: audit 2024-09-21T17:23:51.107341+0000 mon.smithi050 (mon.0) 650 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-21T17:23:51.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:51 smithi170 bash[24572]: audit 2024-09-21T17:23:51.107341+0000 mon.smithi050 (mon.0) 650 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-21T17:23:52.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: cluster 2024-09-21T17:23:51.112392+0000 mgr.smithi050.baqqjh (mgr.14203) 135 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-09-21T17:23:52.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: cluster 2024-09-21T17:23:51.112392+0000 mgr.smithi050.baqqjh (mgr.14203) 135 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: audit 2024-09-21T17:23:51.571980+0000 mon.smithi050 (mon.0) 651 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: audit 2024-09-21T17:23:51.571980+0000 mon.smithi050 (mon.0) 651 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: cluster 2024-09-21T17:23:51.576625+0000 mon.smithi050 (mon.0) 652 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: cluster 2024-09-21T17:23:51.576625+0000 mon.smithi050 (mon.0) 652 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: audit 2024-09-21T17:23:51.577094+0000 mon.smithi050 (mon.0) 653 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: audit 2024-09-21T17:23:51.577094+0000 mon.smithi050 (mon.0) 653 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: audit 2024-09-21T17:23:51.577551+0000 mon.smithi050 (mon.0) 654 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: audit 2024-09-21T17:23:51.577551+0000 mon.smithi050 (mon.0) 654 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: audit 2024-09-21T17:23:51.577950+0000 mon.smithi050 (mon.0) 655 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:52.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:52 smithi170 bash[24572]: audit 2024-09-21T17:23:51.577950+0000 mon.smithi050 (mon.0) 655 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:52.881 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: cluster 2024-09-21T17:23:51.112392+0000 mgr.smithi050.baqqjh (mgr.14203) 135 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: cluster 2024-09-21T17:23:51.112392+0000 mgr.smithi050.baqqjh (mgr.14203) 135 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: audit 2024-09-21T17:23:51.571980+0000 mon.smithi050 (mon.0) 651 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: audit 2024-09-21T17:23:51.571980+0000 mon.smithi050 (mon.0) 651 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: cluster 2024-09-21T17:23:51.576625+0000 mon.smithi050 (mon.0) 652 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: cluster 2024-09-21T17:23:51.576625+0000 mon.smithi050 (mon.0) 652 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: audit 2024-09-21T17:23:51.577094+0000 mon.smithi050 (mon.0) 653 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: audit 2024-09-21T17:23:51.577094+0000 mon.smithi050 (mon.0) 653 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: audit 2024-09-21T17:23:51.577551+0000 mon.smithi050 (mon.0) 654 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: audit 2024-09-21T17:23:51.577551+0000 mon.smithi050 (mon.0) 654 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: audit 2024-09-21T17:23:51.577950+0000 mon.smithi050 (mon.0) 655 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:52.882 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:52 smithi050 bash[19920]: audit 2024-09-21T17:23:51.577950+0000 mon.smithi050 (mon.0) 655 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:53.223 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:23:53.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:52.574361+0000 mon.smithi050 (mon.0) 656 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:52.574361+0000 mon.smithi050 (mon.0) 656 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: cluster 2024-09-21T17:23:52.578053+0000 mon.smithi050 (mon.0) 657 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: cluster 2024-09-21T17:23:52.578053+0000 mon.smithi050 (mon.0) 657 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:52.579085+0000 mon.smithi050 (mon.0) 658 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:52.579085+0000 mon.smithi050 (mon.0) 658 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:52.579438+0000 mon.smithi050 (mon.0) 659 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:52.579438+0000 mon.smithi050 (mon.0) 659 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:52.588272+0000 mon.smithi050 (mon.0) 660 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:52.588272+0000 mon.smithi050 (mon.0) 660 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:53.222596+0000 mon.smithi050 (mon.0) 661 : audit [DBG] from='client.? 172.21.15.50:0/239328171' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:54.332 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:53 smithi170 bash[24572]: audit 2024-09-21T17:23:53.222596+0000 mon.smithi050 (mon.0) 661 : audit [DBG] from='client.? 172.21.15.50:0/239328171' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:54.333 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:52.574361+0000 mon.smithi050 (mon.0) 656 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:54.333 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:52.574361+0000 mon.smithi050 (mon.0) 656 : audit [INF] from='osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:54.333 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: cluster 2024-09-21T17:23:52.578053+0000 mon.smithi050 (mon.0) 657 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-09-21T17:23:54.333 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: cluster 2024-09-21T17:23:52.578053+0000 mon.smithi050 (mon.0) 657 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-09-21T17:23:54.333 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:52.579085+0000 mon.smithi050 (mon.0) 658 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.333 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:52.579085+0000 mon.smithi050 (mon.0) 658 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.333 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:52.579438+0000 mon.smithi050 (mon.0) 659 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:54.334 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:52.579438+0000 mon.smithi050 (mon.0) 659 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:54.334 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:52.588272+0000 mon.smithi050 (mon.0) 660 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.334 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:52.588272+0000 mon.smithi050 (mon.0) 660 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.334 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:53.222596+0000 mon.smithi050 (mon.0) 661 : audit [DBG] from='client.? 172.21.15.50:0/239328171' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:54.334 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:53 smithi050 bash[19920]: audit 2024-09-21T17:23:53.222596+0000 mon.smithi050 (mon.0) 661 : audit [DBG] from='client.? 172.21.15.50:0/239328171' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:23:54.414 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":32,"num_osds":8,"num_up_osds":6,"osd_up_since":1726939429,"num_in_osds":8,"osd_in_since":1726939381,"num_remapped_pgs":0} 2024-09-21T17:23:54.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:52.144776+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:54.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:52.144776+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:54.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:52.144878+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:54.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:52.144878+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:54.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:53.112694+0000 mgr.smithi050.baqqjh (mgr.14203) 136 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:53.112694+0000 mgr.smithi050.baqqjh (mgr.14203) 136 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:53.590317+0000 mon.smithi050 (mon.0) 662 : cluster [INF] osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731] boot 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:53.590317+0000 mon.smithi050 (mon.0) 662 : cluster [INF] osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731] boot 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:53.590409+0000 mon.smithi050 (mon.0) 663 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: cluster 2024-09-21T17:23:53.590409+0000 mon.smithi050 (mon.0) 663 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: audit 2024-09-21T17:23:53.591188+0000 mon.smithi050 (mon.0) 664 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: audit 2024-09-21T17:23:53.591188+0000 mon.smithi050 (mon.0) 664 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: audit 2024-09-21T17:23:53.591683+0000 mon.smithi050 (mon.0) 665 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:54.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:54 smithi050 bash[19920]: audit 2024-09-21T17:23:53.591683+0000 mon.smithi050 (mon.0) 665 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:52.144776+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:52.144776+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:23:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:52.144878+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:52.144878+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:53.112694+0000 mgr.smithi050.baqqjh (mgr.14203) 136 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:53.112694+0000 mgr.smithi050.baqqjh (mgr.14203) 136 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 179 MiB used, 536 GiB / 536 GiB avail 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:53.590317+0000 mon.smithi050 (mon.0) 662 : cluster [INF] osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731] boot 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:53.590317+0000 mon.smithi050 (mon.0) 662 : cluster [INF] osd.5 [v2:172.21.15.50:6818/2095855731,v1:172.21.15.50:6819/2095855731] boot 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:53.590409+0000 mon.smithi050 (mon.0) 663 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: cluster 2024-09-21T17:23:53.590409+0000 mon.smithi050 (mon.0) 663 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: audit 2024-09-21T17:23:53.591188+0000 mon.smithi050 (mon.0) 664 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: audit 2024-09-21T17:23:53.591188+0000 mon.smithi050 (mon.0) 664 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: audit 2024-09-21T17:23:53.591683+0000 mon.smithi050 (mon.0) 665 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:54.859 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:54 smithi170 bash[24572]: audit 2024-09-21T17:23:53.591683+0000 mon.smithi050 (mon.0) 665 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:55.415 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T17:23:55.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:55 smithi050 bash[19920]: cluster 2024-09-21T17:23:54.608408+0000 mon.smithi050 (mon.0) 666 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-21T17:23:55.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:55 smithi050 bash[19920]: cluster 2024-09-21T17:23:54.608408+0000 mon.smithi050 (mon.0) 666 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-21T17:23:55.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:55 smithi050 bash[19920]: audit 2024-09-21T17:23:54.610468+0000 mon.smithi050 (mon.0) 667 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:55.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:55 smithi050 bash[19920]: audit 2024-09-21T17:23:54.610468+0000 mon.smithi050 (mon.0) 667 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:55 smithi170 bash[24572]: cluster 2024-09-21T17:23:54.608408+0000 mon.smithi050 (mon.0) 666 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-21T17:23:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:55 smithi170 bash[24572]: cluster 2024-09-21T17:23:54.608408+0000 mon.smithi050 (mon.0) 666 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-21T17:23:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:55 smithi170 bash[24572]: audit 2024-09-21T17:23:54.610468+0000 mon.smithi050 (mon.0) 667 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:55 smithi170 bash[24572]: audit 2024-09-21T17:23:54.610468+0000 mon.smithi050 (mon.0) 667 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:56.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:56 smithi050 bash[19920]: cluster 2024-09-21T17:23:55.113309+0000 mgr.smithi050.baqqjh (mgr.14203) 137 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:23:56.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:56 smithi050 bash[19920]: cluster 2024-09-21T17:23:55.113309+0000 mgr.smithi050.baqqjh (mgr.14203) 137 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:23:57.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:56 smithi170 bash[24572]: cluster 2024-09-21T17:23:55.113309+0000 mgr.smithi050.baqqjh (mgr.14203) 137 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:23:57.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:56 smithi170 bash[24572]: cluster 2024-09-21T17:23:55.113309+0000 mgr.smithi050.baqqjh (mgr.14203) 137 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:23:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:57 smithi050 bash[19920]: audit 2024-09-21T17:23:57.379282+0000 mon.smithi050 (mon.0) 668 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-21T17:23:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:57 smithi050 bash[19920]: audit 2024-09-21T17:23:57.379282+0000 mon.smithi050 (mon.0) 668 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-21T17:23:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:57 smithi050 bash[19920]: audit 2024-09-21T17:23:57.390243+0000 mon.smithi050 (mon.0) 669 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:57 smithi050 bash[19920]: audit 2024-09-21T17:23:57.390243+0000 mon.smithi050 (mon.0) 669 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:57 smithi050 bash[19920]: audit 2024-09-21T17:23:57.395327+0000 mon.smithi050 (mon.0) 670 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:57.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:57 smithi050 bash[19920]: audit 2024-09-21T17:23:57.395327+0000 mon.smithi050 (mon.0) 670 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:58.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:57 smithi170 bash[24572]: audit 2024-09-21T17:23:57.379282+0000 mon.smithi050 (mon.0) 668 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-21T17:23:58.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:57 smithi170 bash[24572]: audit 2024-09-21T17:23:57.379282+0000 mon.smithi050 (mon.0) 668 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-21T17:23:58.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:57 smithi170 bash[24572]: audit 2024-09-21T17:23:57.390243+0000 mon.smithi050 (mon.0) 669 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:58.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:57 smithi170 bash[24572]: audit 2024-09-21T17:23:57.390243+0000 mon.smithi050 (mon.0) 669 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:58.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:57 smithi170 bash[24572]: audit 2024-09-21T17:23:57.395327+0000 mon.smithi050 (mon.0) 670 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:58.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:57 smithi170 bash[24572]: audit 2024-09-21T17:23:57.395327+0000 mon.smithi050 (mon.0) 670 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:23:58.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: cluster 2024-09-21T17:23:57.114057+0000 mgr.smithi050.baqqjh (mgr.14203) 138 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:23:58.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: cluster 2024-09-21T17:23:57.114057+0000 mgr.smithi050.baqqjh (mgr.14203) 138 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:23:58.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: audit 2024-09-21T17:23:57.621804+0000 mon.smithi050 (mon.0) 671 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-21T17:23:58.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: audit 2024-09-21T17:23:57.621804+0000 mon.smithi050 (mon.0) 671 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-21T17:23:58.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: cluster 2024-09-21T17:23:57.624996+0000 mon.smithi050 (mon.0) 672 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-21T17:23:58.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: cluster 2024-09-21T17:23:57.624996+0000 mon.smithi050 (mon.0) 672 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-21T17:23:58.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: audit 2024-09-21T17:23:57.625344+0000 mon.smithi050 (mon.0) 673 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:58.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: audit 2024-09-21T17:23:57.625344+0000 mon.smithi050 (mon.0) 673 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:58.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: audit 2024-09-21T17:23:57.625710+0000 mon.smithi050 (mon.0) 674 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:58.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: audit 2024-09-21T17:23:57.625710+0000 mon.smithi050 (mon.0) 674 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:58.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: audit 2024-09-21T17:23:57.836311+0000 mon.smithi050 (mon.0) 675 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:23:58.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:58 smithi050 bash[19920]: audit 2024-09-21T17:23:57.836311+0000 mon.smithi050 (mon.0) 675 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:23:59.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: cluster 2024-09-21T17:23:57.114057+0000 mgr.smithi050.baqqjh (mgr.14203) 138 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:23:59.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: cluster 2024-09-21T17:23:57.114057+0000 mgr.smithi050.baqqjh (mgr.14203) 138 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:23:59.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: audit 2024-09-21T17:23:57.621804+0000 mon.smithi050 (mon.0) 671 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-21T17:23:59.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: audit 2024-09-21T17:23:57.621804+0000 mon.smithi050 (mon.0) 671 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-21T17:23:59.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: cluster 2024-09-21T17:23:57.624996+0000 mon.smithi050 (mon.0) 672 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-21T17:23:59.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: cluster 2024-09-21T17:23:57.624996+0000 mon.smithi050 (mon.0) 672 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-21T17:23:59.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: audit 2024-09-21T17:23:57.625344+0000 mon.smithi050 (mon.0) 673 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:59.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: audit 2024-09-21T17:23:57.625344+0000 mon.smithi050 (mon.0) 673 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi050", "root=default"]} : dispatch 2024-09-21T17:23:59.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: audit 2024-09-21T17:23:57.625710+0000 mon.smithi050 (mon.0) 674 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:59.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: audit 2024-09-21T17:23:57.625710+0000 mon.smithi050 (mon.0) 674 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:59.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: audit 2024-09-21T17:23:57.836311+0000 mon.smithi050 (mon.0) 675 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:23:59.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:58 smithi170 bash[24572]: audit 2024-09-21T17:23:57.836311+0000 mon.smithi050 (mon.0) 675 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:23:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: audit 2024-09-21T17:23:58.624421+0000 mon.smithi050 (mon.0) 676 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: audit 2024-09-21T17:23:58.624421+0000 mon.smithi050 (mon.0) 676 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:23:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: cluster 2024-09-21T17:23:58.630019+0000 mon.smithi050 (mon.0) 677 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-09-21T17:23:59.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: cluster 2024-09-21T17:23:58.630019+0000 mon.smithi050 (mon.0) 677 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-09-21T17:23:59.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: audit 2024-09-21T17:23:58.632448+0000 mon.smithi050 (mon.0) 678 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:59.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: audit 2024-09-21T17:23:58.632448+0000 mon.smithi050 (mon.0) 678 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:59.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: audit 2024-09-21T17:23:58.643702+0000 mon.smithi050 (mon.0) 679 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:59.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: audit 2024-09-21T17:23:58.643702+0000 mon.smithi050 (mon.0) 679 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:23:59.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: audit 2024-09-21T17:23:58.997327+0000 mon.smithi050 (mon.0) 680 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' 2024-09-21T17:23:59.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:23:59 smithi050 bash[19920]: audit 2024-09-21T17:23:58.997327+0000 mon.smithi050 (mon.0) 680 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' 2024-09-21T17:24:00.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: audit 2024-09-21T17:23:58.624421+0000 mon.smithi050 (mon.0) 676 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:24:00.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: audit 2024-09-21T17:23:58.624421+0000 mon.smithi050 (mon.0) 676 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-09-21T17:24:00.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: cluster 2024-09-21T17:23:58.630019+0000 mon.smithi050 (mon.0) 677 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-09-21T17:24:00.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: cluster 2024-09-21T17:23:58.630019+0000 mon.smithi050 (mon.0) 677 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-09-21T17:24:00.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: audit 2024-09-21T17:23:58.632448+0000 mon.smithi050 (mon.0) 678 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:00.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: audit 2024-09-21T17:23:58.632448+0000 mon.smithi050 (mon.0) 678 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:00.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: audit 2024-09-21T17:23:58.643702+0000 mon.smithi050 (mon.0) 679 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:00.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: audit 2024-09-21T17:23:58.643702+0000 mon.smithi050 (mon.0) 679 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:00.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: audit 2024-09-21T17:23:58.997327+0000 mon.smithi050 (mon.0) 680 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' 2024-09-21T17:24:00.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:23:59 smithi170 bash[24572]: audit 2024-09-21T17:23:58.997327+0000 mon.smithi050 (mon.0) 680 : audit [INF] from='osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070]' entity='osd.7' 2024-09-21T17:24:00.234 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:24:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:58.372017+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:24:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:58.372017+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:24:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:58.372070+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:24:00.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:58.372070+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:59.114780+0000 mgr.smithi050.baqqjh (mgr.14203) 139 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:59.114780+0000 mgr.smithi050.baqqjh (mgr.14203) 139 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: audit 2024-09-21T17:23:59.642591+0000 mon.smithi050 (mon.0) 681 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: audit 2024-09-21T17:23:59.642591+0000 mon.smithi050 (mon.0) 681 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:59.651048+0000 mon.smithi050 (mon.0) 682 : cluster [INF] osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070] boot 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:59.651048+0000 mon.smithi050 (mon.0) 682 : cluster [INF] osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070] boot 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:59.651167+0000 mon.smithi050 (mon.0) 683 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: cluster 2024-09-21T17:23:59.651167+0000 mon.smithi050 (mon.0) 683 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: audit 2024-09-21T17:23:59.651640+0000 mon.smithi050 (mon.0) 684 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: audit 2024-09-21T17:23:59.651640+0000 mon.smithi050 (mon.0) 684 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: audit 2024-09-21T17:24:00.572140+0000 mon.smithi050 (mon.0) 685 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:00.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:00 smithi050 bash[19920]: audit 2024-09-21T17:24:00.572140+0000 mon.smithi050 (mon.0) 685 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:01.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:58.372017+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:58.372017+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:58.372070+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:58.372070+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:59.114780+0000 mgr.smithi050.baqqjh (mgr.14203) 139 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:59.114780+0000 mgr.smithi050.baqqjh (mgr.14203) 139 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: audit 2024-09-21T17:23:59.642591+0000 mon.smithi050 (mon.0) 681 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: audit 2024-09-21T17:23:59.642591+0000 mon.smithi050 (mon.0) 681 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:59.651048+0000 mon.smithi050 (mon.0) 682 : cluster [INF] osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070] boot 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:59.651048+0000 mon.smithi050 (mon.0) 682 : cluster [INF] osd.7 [v2:172.21.15.50:6826/1304301070,v1:172.21.15.50:6827/1304301070] boot 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:59.651167+0000 mon.smithi050 (mon.0) 683 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: cluster 2024-09-21T17:23:59.651167+0000 mon.smithi050 (mon.0) 683 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: audit 2024-09-21T17:23:59.651640+0000 mon.smithi050 (mon.0) 684 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: audit 2024-09-21T17:23:59.651640+0000 mon.smithi050 (mon.0) 684 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: audit 2024-09-21T17:24:00.572140+0000 mon.smithi050 (mon.0) 685 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:01.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:00 smithi170 bash[24572]: audit 2024-09-21T17:24:00.572140+0000 mon.smithi050 (mon.0) 685 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:01.734 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:24:01.946 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:01 smithi050 bash[19920]: cluster 2024-09-21T17:24:00.653053+0000 mon.smithi050 (mon.0) 686 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-21T17:24:01.946 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:01 smithi050 bash[19920]: cluster 2024-09-21T17:24:00.653053+0000 mon.smithi050 (mon.0) 686 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-21T17:24:02.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:01 smithi170 bash[24572]: cluster 2024-09-21T17:24:00.653053+0000 mon.smithi050 (mon.0) 686 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-21T17:24:02.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:01 smithi170 bash[24572]: cluster 2024-09-21T17:24:00.653053+0000 mon.smithi050 (mon.0) 686 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-21T17:24:02.401 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":39,"num_osds":8,"num_up_osds":8,"osd_up_since":1726939439,"num_in_osds":8,"osd_in_since":1726939381,"num_remapped_pgs":1} 2024-09-21T17:24:02.401 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd dump --format=json 2024-09-21T17:24:02.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:02 smithi050 bash[19920]: cluster 2024-09-21T17:24:01.115304+0000 mgr.smithi050.baqqjh (mgr.14203) 140 : cluster [DBG] pgmap v109: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:02 smithi050 bash[19920]: cluster 2024-09-21T17:24:01.115304+0000 mgr.smithi050.baqqjh (mgr.14203) 140 : cluster [DBG] pgmap v109: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:02 smithi050 bash[19920]: cluster 2024-09-21T17:24:01.658604+0000 mon.smithi050 (mon.0) 687 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-21T17:24:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:02 smithi050 bash[19920]: cluster 2024-09-21T17:24:01.658604+0000 mon.smithi050 (mon.0) 687 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-21T17:24:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:02 smithi050 bash[19920]: audit 2024-09-21T17:24:01.733106+0000 mon.smithi050 (mon.0) 688 : audit [DBG] from='client.? 172.21.15.50:0/219535283' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:24:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:02 smithi050 bash[19920]: audit 2024-09-21T17:24:01.733106+0000 mon.smithi050 (mon.0) 688 : audit [DBG] from='client.? 172.21.15.50:0/219535283' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:24:03.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:02 smithi170 bash[24572]: cluster 2024-09-21T17:24:01.115304+0000 mgr.smithi050.baqqjh (mgr.14203) 140 : cluster [DBG] pgmap v109: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:03.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:02 smithi170 bash[24572]: cluster 2024-09-21T17:24:01.115304+0000 mgr.smithi050.baqqjh (mgr.14203) 140 : cluster [DBG] pgmap v109: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:03.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:02 smithi170 bash[24572]: cluster 2024-09-21T17:24:01.658604+0000 mon.smithi050 (mon.0) 687 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-21T17:24:03.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:02 smithi170 bash[24572]: cluster 2024-09-21T17:24:01.658604+0000 mon.smithi050 (mon.0) 687 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-21T17:24:03.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:02 smithi170 bash[24572]: audit 2024-09-21T17:24:01.733106+0000 mon.smithi050 (mon.0) 688 : audit [DBG] from='client.? 172.21.15.50:0/219535283' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:24:03.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:02 smithi170 bash[24572]: audit 2024-09-21T17:24:01.733106+0000 mon.smithi050 (mon.0) 688 : audit [DBG] from='client.? 172.21.15.50:0/219535283' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T17:24:03.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:03 smithi050 bash[19920]: cluster 2024-09-21T17:24:02.663218+0000 mon.smithi050 (mon.0) 689 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-21T17:24:03.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:03 smithi050 bash[19920]: cluster 2024-09-21T17:24:02.663218+0000 mon.smithi050 (mon.0) 689 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-21T17:24:03.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:03 smithi050 bash[19920]: audit 2024-09-21T17:24:03.388471+0000 mon.smithi050 (mon.0) 690 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:03.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:03 smithi050 bash[19920]: audit 2024-09-21T17:24:03.388471+0000 mon.smithi050 (mon.0) 690 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:03.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:03 smithi050 bash[19920]: audit 2024-09-21T17:24:03.393034+0000 mon.smithi050 (mon.0) 691 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:03.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:03 smithi050 bash[19920]: audit 2024-09-21T17:24:03.393034+0000 mon.smithi050 (mon.0) 691 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:03.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:03 smithi050 bash[19920]: cluster 2024-09-21T17:24:03.661316+0000 mon.smithi050 (mon.0) 692 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-21T17:24:03.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:03 smithi050 bash[19920]: cluster 2024-09-21T17:24:03.661316+0000 mon.smithi050 (mon.0) 692 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-21T17:24:04.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:03 smithi170 bash[24572]: cluster 2024-09-21T17:24:02.663218+0000 mon.smithi050 (mon.0) 689 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-21T17:24:04.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:03 smithi170 bash[24572]: cluster 2024-09-21T17:24:02.663218+0000 mon.smithi050 (mon.0) 689 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-21T17:24:04.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:03 smithi170 bash[24572]: audit 2024-09-21T17:24:03.388471+0000 mon.smithi050 (mon.0) 690 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:04.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:03 smithi170 bash[24572]: audit 2024-09-21T17:24:03.388471+0000 mon.smithi050 (mon.0) 690 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:04.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:03 smithi170 bash[24572]: audit 2024-09-21T17:24:03.393034+0000 mon.smithi050 (mon.0) 691 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:04.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:03 smithi170 bash[24572]: audit 2024-09-21T17:24:03.393034+0000 mon.smithi050 (mon.0) 691 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:04.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:03 smithi170 bash[24572]: cluster 2024-09-21T17:24:03.661316+0000 mon.smithi050 (mon.0) 692 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-21T17:24:04.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:03 smithi170 bash[24572]: cluster 2024-09-21T17:24:03.661316+0000 mon.smithi050 (mon.0) 692 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-21T17:24:05.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:04 smithi170 bash[24572]: cluster 2024-09-21T17:24:03.115635+0000 mgr.smithi050.baqqjh (mgr.14203) 141 : cluster [DBG] pgmap v112: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:05.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:04 smithi170 bash[24572]: cluster 2024-09-21T17:24:03.115635+0000 mgr.smithi050.baqqjh (mgr.14203) 141 : cluster [DBG] pgmap v112: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:05.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:04 smithi170 bash[24572]: audit 2024-09-21T17:24:03.744981+0000 mon.smithi050 (mon.0) 693 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:05.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:04 smithi170 bash[24572]: audit 2024-09-21T17:24:03.744981+0000 mon.smithi050 (mon.0) 693 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:05.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:04 smithi170 bash[24572]: audit 2024-09-21T17:24:03.750182+0000 mon.smithi050 (mon.0) 694 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:05.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:04 smithi170 bash[24572]: audit 2024-09-21T17:24:03.750182+0000 mon.smithi050 (mon.0) 694 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:05.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:04 smithi050 bash[19920]: cluster 2024-09-21T17:24:03.115635+0000 mgr.smithi050.baqqjh (mgr.14203) 141 : cluster [DBG] pgmap v112: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:05.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:04 smithi050 bash[19920]: cluster 2024-09-21T17:24:03.115635+0000 mgr.smithi050.baqqjh (mgr.14203) 141 : cluster [DBG] pgmap v112: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:05.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:04 smithi050 bash[19920]: audit 2024-09-21T17:24:03.744981+0000 mon.smithi050 (mon.0) 693 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:05.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:04 smithi050 bash[19920]: audit 2024-09-21T17:24:03.744981+0000 mon.smithi050 (mon.0) 693 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:05.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:04 smithi050 bash[19920]: audit 2024-09-21T17:24:03.750182+0000 mon.smithi050 (mon.0) 694 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:05.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:04 smithi050 bash[19920]: audit 2024-09-21T17:24:03.750182+0000 mon.smithi050 (mon.0) 694 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:06.958 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:24:07.054 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:06 smithi050 bash[19920]: cluster 2024-09-21T17:24:05.116202+0000 mgr.smithi050.baqqjh (mgr.14203) 142 : cluster [DBG] pgmap v114: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:07.054 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:06 smithi050 bash[19920]: cluster 2024-09-21T17:24:05.116202+0000 mgr.smithi050.baqqjh (mgr.14203) 142 : cluster [DBG] pgmap v114: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:07.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:06 smithi170 bash[24572]: cluster 2024-09-21T17:24:05.116202+0000 mgr.smithi050.baqqjh (mgr.14203) 142 : cluster [DBG] pgmap v114: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:07.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:06 smithi170 bash[24572]: cluster 2024-09-21T17:24:05.116202+0000 mgr.smithi050.baqqjh (mgr.14203) 142 : cluster [DBG] pgmap v114: 1 pgs: 1 unknown; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:08.080 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:07 smithi050 bash[19920]: cluster 2024-09-21T17:24:07.116843+0000 mgr.smithi050.baqqjh (mgr.14203) 143 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-21T17:24:08.080 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:07 smithi050 bash[19920]: cluster 2024-09-21T17:24:07.116843+0000 mgr.smithi050.baqqjh (mgr.14203) 143 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-21T17:24:08.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:07 smithi170 bash[24572]: cluster 2024-09-21T17:24:07.116843+0000 mgr.smithi050.baqqjh (mgr.14203) 143 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-21T17:24:08.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:07 smithi170 bash[24572]: cluster 2024-09-21T17:24:07.116843+0000 mgr.smithi050.baqqjh (mgr.14203) 143 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-21T17:24:08.443 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:24:08.443 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":41,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","created":"2024-09-21T17:18:32.320519+0000","modified":"2024-09-21T17:24:03.657452+0000","last_up_change":"2024-09-21T17:23:59.633440+0000","last_in_change":"2024-09-21T17:23:01.674508+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-21T17:23:41.649980+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":"01a3d8da-4808-4bc7-9af6-3c46c4bd4034","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6800","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6801","nonce":455256004}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6802","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6803","nonce":455256004}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6806","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6807","nonce":455256004}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6804","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6805","nonce":455256004}]},"public_addr":"172.21.15.170:6801/455256004","cluster_addr":"172.21.15.170:6803/455256004","heartbeat_back_addr":"172.21.15.170:6807/455256004","heartbeat_front_addr":"172.21.15.170:6805/455256004","state":["exists","up"]},{"osd":1,"uuid":"0759c15c-a958-43d1-a16a-292bbf5d1b60","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6803","nonce":3853477500}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6805","nonce":3853477500}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6809","nonce":3853477500}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6807","nonce":3853477500}]},"public_addr":"172.21.15.50:6803/3853477500","cluster_addr":"172.21.15.50:6805/3853477500","heartbeat_back_addr":"172.21.15.50:6809/3853477500","heartbeat_front_addr":"172.21.15.50:6807/3853477500","state":["exists","up"]},{"osd":2,"uuid":"b0a4502a-ab47-4c75-aba8-787cda9ff586","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6808","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6809","nonce":3606395045}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6810","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6811","nonce":3606395045}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6814","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6815","nonce":3606395045}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6812","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6813","nonce":3606395045}]},"public_addr":"172.21.15.170:6809/3606395045","cluster_addr":"172.21.15.170:6811/3606395045","heartbeat_back_addr":"172.21.15.170:6815/3606395045","heartbeat_front_addr":"172.21.15.170:6813/3606395045","state":["exists","up"]},{"osd":3,"uuid":"2dd69733-3b18-4f8c-9066-2b215746bb7c","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.50:6810","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6811","nonce":1274023134}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6813","nonce":1274023134}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6817","nonce":1274023134}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6815","nonce":1274023134}]},"public_addr":"172.21.15.50:6811/1274023134","cluster_addr":"172.21.15.50:6813/1274023134","heartbeat_back_addr":"172.21.15.50:6817/1274023134","heartbeat_front_addr":"172.21.15.50:6815/1274023134","state":["exists","up"]},{"osd":4,"uuid":"16d97a87-74d6-4204-a4b9-a352ef162f79","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6816","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6817","nonce":2593634852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6818","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6819","nonce":2593634852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6822","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6823","nonce":2593634852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6820","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6821","nonce":2593634852}]},"public_addr":"172.21.15.170:6817/2593634852","cluster_addr":"172.21.15.170:6819/2593634852","heartbeat_back_addr":"172.21.15.170:6823/2593634852","heartbeat_front_addr":"172.21.15.170:6821/2593634852","state":["exists","up"]},{"osd":5,"uuid":"e743f305-d074-457b-af5f-9dc85dcbb4bd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6818","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6819","nonce":2095855731}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6820","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6821","nonce":2095855731}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6824","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6825","nonce":2095855731}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6822","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6823","nonce":2095855731}]},"public_addr":"172.21.15.50:6819/2095855731","cluster_addr":"172.21.15.50:6821/2095855731","heartbeat_back_addr":"172.21.15.50:6825/2095855731","heartbeat_front_addr":"172.21.15.50:6823/2095855731","state":["exists","up"]},{"osd":6,"uuid":"46b098af-887f-4dfe-9bd5-395359d09723","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6824","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6825","nonce":715811429}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6826","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6827","nonce":715811429}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6830","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6831","nonce":715811429}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6828","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6829","nonce":715811429}]},"public_addr":"172.21.15.170:6825/715811429","cluster_addr":"172.21.15.170:6827/715811429","heartbeat_back_addr":"172.21.15.170:6831/715811429","heartbeat_front_addr":"172.21.15.170:6829/715811429","state":["exists","up"]},{"osd":7,"uuid":"82417463-a378-407a-9672-f11db8aa07b7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6826","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6827","nonce":1304301070}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6828","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6829","nonce":1304301070}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6832","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6833","nonce":1304301070}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6830","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6831","nonce":1304301070}]},"public_addr":"172.21.15.50:6827/1304301070","cluster_addr":"172.21.15.50:6829/1304301070","heartbeat_back_addr":"172.21.15.50:6833/1304301070","heartbeat_front_addr":"172.21.15.50:6831/1304301070","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-21T17:23:31.992909+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-21T17:23:36.701327+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-21T17:23:37.875363+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-21T17:23:42.732167+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-21T17:23:43.695807+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-21T17:23:52.144883+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-21T17:23:47.573097+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-21T17:23:58.372073+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:0/402694360":"2024-09-22T17:21:15.070232+0000","172.21.15.50:0/1239064235":"2024-09-22T17:21:15.070232+0000","172.21.15.50:6801/3346325552":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/461535536":"2024-09-22T17:21:15.070232+0000","172.21.15.50:0/428041091":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/2211296993":"2024-09-22T17:18:59.505784+0000","172.21.15.50:6801/1228815983":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/3158685145":"2024-09-22T17:19:49.154023+0000","172.21.15.50:6800/1228815983":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/451356106":"2024-09-22T17:19:49.154023+0000","172.21.15.50:6800/3346325552":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/3677520875":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/796946174":"2024-09-22T17:18:59.505784+0000","172.21.15.50:6800/2085077567":"2024-09-22T17:21:15.070232+0000","172.21.15.50:6801/2085077567":"2024-09-22T17:21:15.070232+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-21T17:24:09.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:08 smithi050 bash[19920]: audit 2024-09-21T17:24:08.441737+0000 mon.smithi050 (mon.0) 695 : audit [DBG] from='client.? 172.21.15.50:0/3701779394' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:09.089 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:08 smithi050 bash[19920]: audit 2024-09-21T17:24:08.441737+0000 mon.smithi050 (mon.0) 695 : audit [DBG] from='client.? 172.21.15.50:0/3701779394' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:09.090 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-21T17:23:41.649980+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-21T17:24:09.090 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd pool get .mgr pg_num 2024-09-21T17:24:09.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:08 smithi170 bash[24572]: audit 2024-09-21T17:24:08.441737+0000 mon.smithi050 (mon.0) 695 : audit [DBG] from='client.? 172.21.15.50:0/3701779394' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:09.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:08 smithi170 bash[24572]: audit 2024-09-21T17:24:08.441737+0000 mon.smithi050 (mon.0) 695 : audit [DBG] from='client.? 172.21.15.50:0/3701779394' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:09.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:09 smithi050 bash[19920]: cluster 2024-09-21T17:24:09.117311+0000 mgr.smithi050.baqqjh (mgr.14203) 144 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-21T17:24:09.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:09 smithi050 bash[19920]: cluster 2024-09-21T17:24:09.117311+0000 mgr.smithi050.baqqjh (mgr.14203) 144 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-21T17:24:10.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:09 smithi170 bash[24572]: cluster 2024-09-21T17:24:09.117311+0000 mgr.smithi050.baqqjh (mgr.14203) 144 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-21T17:24:10.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:09 smithi170 bash[24572]: cluster 2024-09-21T17:24:09.117311+0000 mgr.smithi050.baqqjh (mgr.14203) 144 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-09-21T17:24:12.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:12 smithi170 bash[24572]: cluster 2024-09-21T17:24:11.117844+0000 mgr.smithi050.baqqjh (mgr.14203) 145 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-21T17:24:12.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:12 smithi170 bash[24572]: cluster 2024-09-21T17:24:11.117844+0000 mgr.smithi050.baqqjh (mgr.14203) 145 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-21T17:24:12.438 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:12 smithi050 bash[19920]: cluster 2024-09-21T17:24:11.117844+0000 mgr.smithi050.baqqjh (mgr.14203) 145 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-21T17:24:12.438 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:12 smithi050 bash[19920]: cluster 2024-09-21T17:24:11.117844+0000 mgr.smithi050.baqqjh (mgr.14203) 145 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-09-21T17:24:14.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:14 smithi050 bash[19920]: cluster 2024-09-21T17:24:13.118362+0000 mgr.smithi050.baqqjh (mgr.14203) 146 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-21T17:24:14.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:14 smithi050 bash[19920]: cluster 2024-09-21T17:24:13.118362+0000 mgr.smithi050.baqqjh (mgr.14203) 146 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-21T17:24:14.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:14 smithi170 bash[24572]: cluster 2024-09-21T17:24:13.118362+0000 mgr.smithi050.baqqjh (mgr.14203) 146 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-21T17:24:14.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:14 smithi170 bash[24572]: cluster 2024-09-21T17:24:13.118362+0000 mgr.smithi050.baqqjh (mgr.14203) 146 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-21T17:24:14.675 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: cephadm 2024-09-21T17:24:14.848876+0000 mgr.smithi050.baqqjh (mgr.14203) 147 : cephadm [INF] Detected new or changed devices on smithi170 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: cephadm 2024-09-21T17:24:14.848876+0000 mgr.smithi050.baqqjh (mgr.14203) 147 : cephadm [INF] Detected new or changed devices on smithi170 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.860317+0000 mon.smithi050 (mon.0) 696 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.860317+0000 mon.smithi050 (mon.0) 696 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.870766+0000 mon.smithi050 (mon.0) 697 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.870766+0000 mon.smithi050 (mon.0) 697 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.874377+0000 mon.smithi050 (mon.0) 698 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.874377+0000 mon.smithi050 (mon.0) 698 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.876255+0000 mon.smithi050 (mon.0) 699 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.876255+0000 mon.smithi050 (mon.0) 699 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.877953+0000 mon.smithi050 (mon.0) 700 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.877953+0000 mon.smithi050 (mon.0) 700 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.879677+0000 mon.smithi050 (mon.0) 701 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.879677+0000 mon.smithi050 (mon.0) 701 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: cephadm 2024-09-21T17:24:14.880975+0000 mgr.smithi050.baqqjh (mgr.14203) 148 : cephadm [INF] Adjusting osd_memory_target on smithi170 to 3772M 2024-09-21T17:24:16.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: cephadm 2024-09-21T17:24:14.880975+0000 mgr.smithi050.baqqjh (mgr.14203) 148 : cephadm [INF] Adjusting osd_memory_target on smithi170 to 3772M 2024-09-21T17:24:16.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.887593+0000 mon.smithi050 (mon.0) 702 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:14.887593+0000 mon.smithi050 (mon.0) 702 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: cluster 2024-09-21T17:24:15.118911+0000 mgr.smithi050.baqqjh (mgr.14203) 149 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-21T17:24:16.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: cluster 2024-09-21T17:24:15.118911+0000 mgr.smithi050.baqqjh (mgr.14203) 149 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-21T17:24:16.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:15.575167+0000 mon.smithi050 (mon.0) 703 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:16.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:15 smithi050 bash[19920]: audit 2024-09-21T17:24:15.575167+0000 mon.smithi050 (mon.0) 703 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:16.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: cephadm 2024-09-21T17:24:14.848876+0000 mgr.smithi050.baqqjh (mgr.14203) 147 : cephadm [INF] Detected new or changed devices on smithi170 2024-09-21T17:24:16.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: cephadm 2024-09-21T17:24:14.848876+0000 mgr.smithi050.baqqjh (mgr.14203) 147 : cephadm [INF] Detected new or changed devices on smithi170 2024-09-21T17:24:16.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.860317+0000 mon.smithi050 (mon.0) 696 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.860317+0000 mon.smithi050 (mon.0) 696 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.870766+0000 mon.smithi050 (mon.0) 697 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.870766+0000 mon.smithi050 (mon.0) 697 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.874377+0000 mon.smithi050 (mon.0) 698 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.874377+0000 mon.smithi050 (mon.0) 698 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.876255+0000 mon.smithi050 (mon.0) 699 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.876255+0000 mon.smithi050 (mon.0) 699 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.877953+0000 mon.smithi050 (mon.0) 700 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.877953+0000 mon.smithi050 (mon.0) 700 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.879677+0000 mon.smithi050 (mon.0) 701 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.879677+0000 mon.smithi050 (mon.0) 701 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: cephadm 2024-09-21T17:24:14.880975+0000 mgr.smithi050.baqqjh (mgr.14203) 148 : cephadm [INF] Adjusting osd_memory_target on smithi170 to 3772M 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: cephadm 2024-09-21T17:24:14.880975+0000 mgr.smithi050.baqqjh (mgr.14203) 148 : cephadm [INF] Adjusting osd_memory_target on smithi170 to 3772M 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.887593+0000 mon.smithi050 (mon.0) 702 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:14.887593+0000 mon.smithi050 (mon.0) 702 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:16.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: cluster 2024-09-21T17:24:15.118911+0000 mgr.smithi050.baqqjh (mgr.14203) 149 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-21T17:24:16.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: cluster 2024-09-21T17:24:15.118911+0000 mgr.smithi050.baqqjh (mgr.14203) 149 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 50 KiB/s, 0 objects/s recovering 2024-09-21T17:24:16.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:15.575167+0000 mon.smithi050 (mon.0) 703 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:16.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:15 smithi170 bash[24572]: audit 2024-09-21T17:24:15.575167+0000 mon.smithi050 (mon.0) 703 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:16.607 INFO:teuthology.orchestra.run.smithi050.stdout:pg_num: 1 2024-09-21T17:24:17.349 INFO:tasks.cephadm:Setting up client nodes... 2024-09-21T17:24:17.349 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-21T17:24:17.349 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: cephadm 2024-09-21T17:24:16.036939+0000 mgr.smithi050.baqqjh (mgr.14203) 150 : cephadm [INF] Detected new or changed devices on smithi050 2024-09-21T17:24:17.349 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: cephadm 2024-09-21T17:24:16.036939+0000 mgr.smithi050.baqqjh (mgr.14203) 150 : cephadm [INF] Detected new or changed devices on smithi050 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.045466+0000 mon.smithi050 (mon.0) 704 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.045466+0000 mon.smithi050 (mon.0) 704 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.055216+0000 mon.smithi050 (mon.0) 705 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.055216+0000 mon.smithi050 (mon.0) 705 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.059067+0000 mon.smithi050 (mon.0) 706 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.059067+0000 mon.smithi050 (mon.0) 706 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.060746+0000 mon.smithi050 (mon.0) 707 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.060746+0000 mon.smithi050 (mon.0) 707 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.062187+0000 mon.smithi050 (mon.0) 708 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.062187+0000 mon.smithi050 (mon.0) 708 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.063516+0000 mon.smithi050 (mon.0) 709 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.350 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.063516+0000 mon.smithi050 (mon.0) 709 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: cephadm 2024-09-21T17:24:16.064618+0000 mgr.smithi050.baqqjh (mgr.14203) 151 : cephadm [INF] Adjusting osd_memory_target on smithi050 to 3005M 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: cephadm 2024-09-21T17:24:16.064618+0000 mgr.smithi050.baqqjh (mgr.14203) 151 : cephadm [INF] Adjusting osd_memory_target on smithi050 to 3005M 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.069510+0000 mon.smithi050 (mon.0) 710 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.069510+0000 mon.smithi050 (mon.0) 710 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.073297+0000 mon.smithi050 (mon.0) 711 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.073297+0000 mon.smithi050 (mon.0) 711 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.074894+0000 mon.smithi050 (mon.0) 712 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.074894+0000 mon.smithi050 (mon.0) 712 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.081556+0000 mon.smithi050 (mon.0) 713 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.081556+0000 mon.smithi050 (mon.0) 713 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.085337+0000 mon.smithi050 (mon.0) 714 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.085337+0000 mon.smithi050 (mon.0) 714 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:24:17.351 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.094618+0000 mon.smithi050 (mon.0) 715 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.094618+0000 mon.smithi050 (mon.0) 715 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.095964+0000 mon.smithi050 (mon.0) 716 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.095964+0000 mon.smithi050 (mon.0) 716 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.103590+0000 mon.smithi050 (mon.0) 717 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.103590+0000 mon.smithi050 (mon.0) 717 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.105029+0000 mon.smithi050 (mon.0) 718 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.105029+0000 mon.smithi050 (mon.0) 718 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.606074+0000 mon.smithi050 (mon.0) 719 : audit [DBG] from='client.? 172.21.15.50:0/611882569' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-21T17:24:17.352 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:17 smithi050 bash[19920]: audit 2024-09-21T17:24:16.606074+0000 mon.smithi050 (mon.0) 719 : audit [DBG] from='client.? 172.21.15.50:0/611882569' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-21T17:24:17.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: cephadm 2024-09-21T17:24:16.036939+0000 mgr.smithi050.baqqjh (mgr.14203) 150 : cephadm [INF] Detected new or changed devices on smithi050 2024-09-21T17:24:17.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: cephadm 2024-09-21T17:24:16.036939+0000 mgr.smithi050.baqqjh (mgr.14203) 150 : cephadm [INF] Detected new or changed devices on smithi050 2024-09-21T17:24:17.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.045466+0000 mon.smithi050 (mon.0) 704 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.045466+0000 mon.smithi050 (mon.0) 704 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.055216+0000 mon.smithi050 (mon.0) 705 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.055216+0000 mon.smithi050 (mon.0) 705 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.059067+0000 mon.smithi050 (mon.0) 706 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.059067+0000 mon.smithi050 (mon.0) 706 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.060746+0000 mon.smithi050 (mon.0) 707 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.060746+0000 mon.smithi050 (mon.0) 707 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.062187+0000 mon.smithi050 (mon.0) 708 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.062187+0000 mon.smithi050 (mon.0) 708 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.063516+0000 mon.smithi050 (mon.0) 709 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.063516+0000 mon.smithi050 (mon.0) 709 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: cephadm 2024-09-21T17:24:16.064618+0000 mgr.smithi050.baqqjh (mgr.14203) 151 : cephadm [INF] Adjusting osd_memory_target on smithi050 to 3005M 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: cephadm 2024-09-21T17:24:16.064618+0000 mgr.smithi050.baqqjh (mgr.14203) 151 : cephadm [INF] Adjusting osd_memory_target on smithi050 to 3005M 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.069510+0000 mon.smithi050 (mon.0) 710 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.359 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.069510+0000 mon.smithi050 (mon.0) 710 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.073297+0000 mon.smithi050 (mon.0) 711 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.073297+0000 mon.smithi050 (mon.0) 711 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.074894+0000 mon.smithi050 (mon.0) 712 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.074894+0000 mon.smithi050 (mon.0) 712 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.081556+0000 mon.smithi050 (mon.0) 713 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.081556+0000 mon.smithi050 (mon.0) 713 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.085337+0000 mon.smithi050 (mon.0) 714 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.085337+0000 mon.smithi050 (mon.0) 714 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.094618+0000 mon.smithi050 (mon.0) 715 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.094618+0000 mon.smithi050 (mon.0) 715 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.095964+0000 mon.smithi050 (mon.0) 716 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.095964+0000 mon.smithi050 (mon.0) 716 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.360 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.103590+0000 mon.smithi050 (mon.0) 717 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:24:17.361 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.103590+0000 mon.smithi050 (mon.0) 717 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T17:24:17.361 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.105029+0000 mon.smithi050 (mon.0) 718 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.361 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.105029+0000 mon.smithi050 (mon.0) 718 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:24:17.361 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.606074+0000 mon.smithi050 (mon.0) 719 : audit [DBG] from='client.? 172.21.15.50:0/611882569' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-21T17:24:17.361 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:17 smithi170 bash[24572]: audit 2024-09-21T17:24:16.606074+0000 mon.smithi050 (mon.0) 719 : audit [DBG] from='client.? 172.21.15.50:0/611882569' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-21T17:24:18.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:18 smithi170 bash[24572]: cluster 2024-09-21T17:24:17.119531+0000 mgr.smithi050.baqqjh (mgr.14203) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-21T17:24:18.358 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:18 smithi170 bash[24572]: cluster 2024-09-21T17:24:17.119531+0000 mgr.smithi050.baqqjh (mgr.14203) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-21T17:24:18.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:18 smithi050 bash[19920]: cluster 2024-09-21T17:24:17.119531+0000 mgr.smithi050.baqqjh (mgr.14203) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-21T17:24:18.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:18 smithi050 bash[19920]: cluster 2024-09-21T17:24:17.119531+0000 mgr.smithi050.baqqjh (mgr.14203) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-21T17:24:20.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:20 smithi050 bash[19920]: cluster 2024-09-21T17:24:19.120106+0000 mgr.smithi050.baqqjh (mgr.14203) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:20.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:20 smithi050 bash[19920]: cluster 2024-09-21T17:24:19.120106+0000 mgr.smithi050.baqqjh (mgr.14203) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:20.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:20 smithi170 bash[24572]: cluster 2024-09-21T17:24:19.120106+0000 mgr.smithi050.baqqjh (mgr.14203) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:20.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:20 smithi170 bash[24572]: cluster 2024-09-21T17:24:19.120106+0000 mgr.smithi050.baqqjh (mgr.14203) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:21.246 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:24:22.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:22 smithi050 bash[19920]: cluster 2024-09-21T17:24:21.120677+0000 mgr.smithi050.baqqjh (mgr.14203) 154 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:22.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:22 smithi050 bash[19920]: cluster 2024-09-21T17:24:21.120677+0000 mgr.smithi050.baqqjh (mgr.14203) 154 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:22.564 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:22 smithi170 bash[24572]: cluster 2024-09-21T17:24:21.120677+0000 mgr.smithi050.baqqjh (mgr.14203) 154 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:22.564 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:22 smithi170 bash[24572]: cluster 2024-09-21T17:24:21.120677+0000 mgr.smithi050.baqqjh (mgr.14203) 154 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:23.300 INFO:teuthology.orchestra.run.smithi050.stdout:[client.0] 2024-09-21T17:24:23.301 INFO:teuthology.orchestra.run.smithi050.stdout: key = AQBHAe9mDja1ERAAqx59g/D45s05F/N/soaIZA== 2024-09-21T17:24:24.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:24 smithi050 bash[19920]: cluster 2024-09-21T17:24:23.121205+0000 mgr.smithi050.baqqjh (mgr.14203) 155 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:24.265 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:24 smithi050 bash[19920]: cluster 2024-09-21T17:24:23.121205+0000 mgr.smithi050.baqqjh (mgr.14203) 155 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:24.265 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:24 smithi050 bash[19920]: audit 2024-09-21T17:24:23.296781+0000 mon.smithi050 (mon.0) 720 : audit [INF] from='client.? 172.21.15.50:0/1445719968' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T17:24:24.265 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:24 smithi050 bash[19920]: audit 2024-09-21T17:24:23.296781+0000 mon.smithi050 (mon.0) 720 : audit [INF] from='client.? 172.21.15.50:0/1445719968' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T17:24:24.266 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:24 smithi050 bash[19920]: audit 2024-09-21T17:24:23.300072+0000 mon.smithi050 (mon.0) 721 : audit [INF] from='client.? 172.21.15.50:0/1445719968' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-21T17:24:24.266 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:24 smithi050 bash[19920]: audit 2024-09-21T17:24:23.300072+0000 mon.smithi050 (mon.0) 721 : audit [INF] from='client.? 172.21.15.50:0/1445719968' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-21T17:24:24.285 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:24:24.285 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-21T17:24:24.285 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-21T17:24:24.306 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-21T17:24:24.316 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:24 smithi170 bash[24572]: cluster 2024-09-21T17:24:23.121205+0000 mgr.smithi050.baqqjh (mgr.14203) 155 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:24.316 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:24 smithi170 bash[24572]: cluster 2024-09-21T17:24:23.121205+0000 mgr.smithi050.baqqjh (mgr.14203) 155 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:24.316 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:24 smithi170 bash[24572]: audit 2024-09-21T17:24:23.296781+0000 mon.smithi050 (mon.0) 720 : audit [INF] from='client.? 172.21.15.50:0/1445719968' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T17:24:24.316 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:24 smithi170 bash[24572]: audit 2024-09-21T17:24:23.296781+0000 mon.smithi050 (mon.0) 720 : audit [INF] from='client.? 172.21.15.50:0/1445719968' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T17:24:24.316 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:24 smithi170 bash[24572]: audit 2024-09-21T17:24:23.300072+0000 mon.smithi050 (mon.0) 721 : audit [INF] from='client.? 172.21.15.50:0/1445719968' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-21T17:24:24.316 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:24 smithi170 bash[24572]: audit 2024-09-21T17:24:23.300072+0000 mon.smithi050 (mon.0) 721 : audit [INF] from='client.? 172.21.15.50:0/1445719968' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-21T17:24:26.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:26 smithi050 bash[19920]: cluster 2024-09-21T17:24:25.121624+0000 mgr.smithi050.baqqjh (mgr.14203) 156 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:26.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:26 smithi050 bash[19920]: cluster 2024-09-21T17:24:25.121624+0000 mgr.smithi050.baqqjh (mgr.14203) 156 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:26.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:26 smithi170 bash[24572]: cluster 2024-09-21T17:24:25.121624+0000 mgr.smithi050.baqqjh (mgr.14203) 156 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:26.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:26 smithi170 bash[24572]: cluster 2024-09-21T17:24:25.121624+0000 mgr.smithi050.baqqjh (mgr.14203) 156 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:28.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:28 smithi050 bash[19920]: cluster 2024-09-21T17:24:27.122203+0000 mgr.smithi050.baqqjh (mgr.14203) 157 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:28.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:28 smithi050 bash[19920]: cluster 2024-09-21T17:24:27.122203+0000 mgr.smithi050.baqqjh (mgr.14203) 157 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:28.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:28 smithi170 bash[24572]: cluster 2024-09-21T17:24:27.122203+0000 mgr.smithi050.baqqjh (mgr.14203) 157 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:28.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:28 smithi170 bash[24572]: cluster 2024-09-21T17:24:27.122203+0000 mgr.smithi050.baqqjh (mgr.14203) 157 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:29.086 INFO:teuthology.orchestra.run.smithi170.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi170/config 2024-09-21T17:24:30.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:30 smithi050 bash[19920]: cluster 2024-09-21T17:24:29.122769+0000 mgr.smithi050.baqqjh (mgr.14203) 158 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:30.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:30 smithi050 bash[19920]: cluster 2024-09-21T17:24:29.122769+0000 mgr.smithi050.baqqjh (mgr.14203) 158 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:30.529 INFO:teuthology.orchestra.run.smithi170.stdout:[client.1] 2024-09-21T17:24:30.529 INFO:teuthology.orchestra.run.smithi170.stdout: key = AQBOAe9m1dQZHxAA6AI9jlDqcQ3ZnECNQ4l6Dg== 2024-09-21T17:24:30.541 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:30 smithi170 bash[24572]: cluster 2024-09-21T17:24:29.122769+0000 mgr.smithi050.baqqjh (mgr.14203) 158 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:30.542 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:30 smithi170 bash[24572]: cluster 2024-09-21T17:24:29.122769+0000 mgr.smithi050.baqqjh (mgr.14203) 158 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:31.222 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:24:31.222 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-21T17:24:31.222 DEBUG:teuthology.orchestra.run.smithi170:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-21T17:24:31.286 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph config log 1 --format=json 2024-09-21T17:24:31.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:31 smithi050 bash[19920]: audit 2024-09-21T17:24:30.520737+0000 mon.smithi170 (mon.1) 21 : audit [INF] from='client.? 172.21.15.170:0/3375757809' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T17:24:31.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:31 smithi050 bash[19920]: audit 2024-09-21T17:24:30.520737+0000 mon.smithi170 (mon.1) 21 : audit [INF] from='client.? 172.21.15.170:0/3375757809' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T17:24:31.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:31 smithi050 bash[19920]: audit 2024-09-21T17:24:30.521474+0000 mon.smithi050 (mon.0) 722 : 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-21T17:24:31.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:31 smithi050 bash[19920]: audit 2024-09-21T17:24:30.521474+0000 mon.smithi050 (mon.0) 722 : 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-21T17:24:31.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:31 smithi050 bash[19920]: audit 2024-09-21T17:24:30.524584+0000 mon.smithi050 (mon.0) 723 : 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-21T17:24:31.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:31 smithi050 bash[19920]: audit 2024-09-21T17:24:30.524584+0000 mon.smithi050 (mon.0) 723 : 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-21T17:24:31.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:31 smithi050 bash[19920]: audit 2024-09-21T17:24:30.575504+0000 mon.smithi050 (mon.0) 724 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:31.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:31 smithi050 bash[19920]: audit 2024-09-21T17:24:30.575504+0000 mon.smithi050 (mon.0) 724 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:31.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:31 smithi170 bash[24572]: audit 2024-09-21T17:24:30.520737+0000 mon.smithi170 (mon.1) 21 : audit [INF] from='client.? 172.21.15.170:0/3375757809' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T17:24:31.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:31 smithi170 bash[24572]: audit 2024-09-21T17:24:30.520737+0000 mon.smithi170 (mon.1) 21 : audit [INF] from='client.? 172.21.15.170:0/3375757809' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T17:24:31.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:31 smithi170 bash[24572]: audit 2024-09-21T17:24:30.521474+0000 mon.smithi050 (mon.0) 722 : 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-21T17:24:31.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:31 smithi170 bash[24572]: audit 2024-09-21T17:24:30.521474+0000 mon.smithi050 (mon.0) 722 : 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-21T17:24:31.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:31 smithi170 bash[24572]: audit 2024-09-21T17:24:30.524584+0000 mon.smithi050 (mon.0) 723 : 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-21T17:24:31.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:31 smithi170 bash[24572]: audit 2024-09-21T17:24:30.524584+0000 mon.smithi050 (mon.0) 723 : 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-21T17:24:31.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:31 smithi170 bash[24572]: audit 2024-09-21T17:24:30.575504+0000 mon.smithi050 (mon.0) 724 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:31.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:31 smithi170 bash[24572]: audit 2024-09-21T17:24:30.575504+0000 mon.smithi050 (mon.0) 724 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:32.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:32 smithi170 bash[24572]: cluster 2024-09-21T17:24:31.123353+0000 mgr.smithi050.baqqjh (mgr.14203) 159 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:32.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:32 smithi170 bash[24572]: cluster 2024-09-21T17:24:31.123353+0000 mgr.smithi050.baqqjh (mgr.14203) 159 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:32.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:32 smithi050 bash[19920]: cluster 2024-09-21T17:24:31.123353+0000 mgr.smithi050.baqqjh (mgr.14203) 159 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:32.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:32 smithi050 bash[19920]: cluster 2024-09-21T17:24:31.123353+0000 mgr.smithi050.baqqjh (mgr.14203) 159 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:34 smithi050 bash[19920]: cluster 2024-09-21T17:24:33.123968+0000 mgr.smithi050.baqqjh (mgr.14203) 160 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:34.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:34 smithi050 bash[19920]: cluster 2024-09-21T17:24:33.123968+0000 mgr.smithi050.baqqjh (mgr.14203) 160 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:34.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:34 smithi170 bash[24572]: cluster 2024-09-21T17:24:33.123968+0000 mgr.smithi050.baqqjh (mgr.14203) 160 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:34.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:34 smithi170 bash[24572]: cluster 2024-09-21T17:24:33.123968+0000 mgr.smithi050.baqqjh (mgr.14203) 160 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:35.519 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:24:36.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:36 smithi170 bash[24572]: cluster 2024-09-21T17:24:35.124603+0000 mgr.smithi050.baqqjh (mgr.14203) 161 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:36.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:36 smithi170 bash[24572]: cluster 2024-09-21T17:24:35.124603+0000 mgr.smithi050.baqqjh (mgr.14203) 161 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:36.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:36 smithi050 bash[19920]: cluster 2024-09-21T17:24:35.124603+0000 mgr.smithi050.baqqjh (mgr.14203) 161 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:36.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:36 smithi050 bash[19920]: cluster 2024-09-21T17:24:35.124603+0000 mgr.smithi050.baqqjh (mgr.14203) 161 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:37.359 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:24:37.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:37 smithi050 bash[19920]: audit 2024-09-21T17:24:37.359058+0000 mon.smithi050 (mon.0) 725 : audit [DBG] from='client.? 172.21.15.50:0/1301241559' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-21T17:24:37.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:37 smithi050 bash[19920]: audit 2024-09-21T17:24:37.359058+0000 mon.smithi050 (mon.0) 725 : audit [DBG] from='client.? 172.21.15.50:0/1301241559' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-21T17:24:37.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:37 smithi170 bash[24572]: audit 2024-09-21T17:24:37.359058+0000 mon.smithi050 (mon.0) 725 : audit [DBG] from='client.? 172.21.15.50:0/1301241559' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-21T17:24:37.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:37 smithi170 bash[24572]: audit 2024-09-21T17:24:37.359058+0000 mon.smithi050 (mon.0) 725 : audit [DBG] from='client.? 172.21.15.50:0/1301241559' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-21T17:24:38.037 INFO:teuthology.orchestra.run.smithi050.stdout:[{"version":20,"timestamp":"2024-09-21T17:24:16.065189+0000","name":"","changes":[{"name":"osd/host:smithi050/osd_memory_target","new_value":"3151431475"}]}] 2024-09-21T17:24:38.037 INFO:tasks.ceph_manager:config epoch is 20 2024-09-21T17:24:38.037 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-21T17:24:38.037 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-21T17:24:38.038 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph mgr dump --format=json 2024-09-21T17:24:38.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:38 smithi170 bash[24572]: cluster 2024-09-21T17:24:37.125058+0000 mgr.smithi050.baqqjh (mgr.14203) 162 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:38.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:38 smithi170 bash[24572]: cluster 2024-09-21T17:24:37.125058+0000 mgr.smithi050.baqqjh (mgr.14203) 162 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:38.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:38 smithi050 bash[19920]: cluster 2024-09-21T17:24:37.125058+0000 mgr.smithi050.baqqjh (mgr.14203) 162 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:38.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:38 smithi050 bash[19920]: cluster 2024-09-21T17:24:37.125058+0000 mgr.smithi050.baqqjh (mgr.14203) 162 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:40.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:40 smithi170 bash[24572]: cluster 2024-09-21T17:24:39.125604+0000 mgr.smithi050.baqqjh (mgr.14203) 163 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:40.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:40 smithi170 bash[24572]: cluster 2024-09-21T17:24:39.125604+0000 mgr.smithi050.baqqjh (mgr.14203) 163 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:40.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:40 smithi050 bash[19920]: cluster 2024-09-21T17:24:39.125604+0000 mgr.smithi050.baqqjh (mgr.14203) 163 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:40.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:40 smithi050 bash[19920]: cluster 2024-09-21T17:24:39.125604+0000 mgr.smithi050.baqqjh (mgr.14203) 163 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:41.918 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:24:42.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:42 smithi170 bash[24572]: cluster 2024-09-21T17:24:41.126278+0000 mgr.smithi050.baqqjh (mgr.14203) 164 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:42.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:42 smithi170 bash[24572]: cluster 2024-09-21T17:24:41.126278+0000 mgr.smithi050.baqqjh (mgr.14203) 164 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:42.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:42 smithi050 bash[19920]: cluster 2024-09-21T17:24:41.126278+0000 mgr.smithi050.baqqjh (mgr.14203) 164 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:42.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:42 smithi050 bash[19920]: cluster 2024-09-21T17:24:41.126278+0000 mgr.smithi050.baqqjh (mgr.14203) 164 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:43.895 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:24:44.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:44 smithi050 bash[19920]: cluster 2024-09-21T17:24:43.126874+0000 mgr.smithi050.baqqjh (mgr.14203) 165 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:44.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:44 smithi050 bash[19920]: cluster 2024-09-21T17:24:43.126874+0000 mgr.smithi050.baqqjh (mgr.14203) 165 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:44.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:44 smithi050 bash[19920]: audit 2024-09-21T17:24:43.885932+0000 mon.smithi050 (mon.0) 726 : audit [DBG] from='client.? 172.21.15.50:0/100839898' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-21T17:24:44.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:44 smithi050 bash[19920]: audit 2024-09-21T17:24:43.885932+0000 mon.smithi050 (mon.0) 726 : audit [DBG] from='client.? 172.21.15.50:0/100839898' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-21T17:24:44.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:44 smithi170 bash[24572]: cluster 2024-09-21T17:24:43.126874+0000 mgr.smithi050.baqqjh (mgr.14203) 165 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:44.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:44 smithi170 bash[24572]: cluster 2024-09-21T17:24:43.126874+0000 mgr.smithi050.baqqjh (mgr.14203) 165 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:44.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:44 smithi170 bash[24572]: audit 2024-09-21T17:24:43.885932+0000 mon.smithi050 (mon.0) 726 : audit [DBG] from='client.? 172.21.15.50:0/100839898' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-21T17:24:44.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:44 smithi170 bash[24572]: audit 2024-09-21T17:24:43.885932+0000 mon.smithi050 (mon.0) 726 : audit [DBG] from='client.? 172.21.15.50:0/100839898' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-21T17:24:45.067 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":20,"flags":0,"active_gid":14203,"active_name":"smithi050.baqqjh","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6800","nonce":1867669794},{"type":"v1","addr":"172.21.15.50:6801","nonce":1867669794}]},"active_addr":"172.21.15.50:6801/1867669794","active_change":"2024-09-21T17:21:15.070536+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":14222,"name":"smithi170.lejafv","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.8","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":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","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.8","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":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","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.50:8443/","prometheus":"http://172.21.15.50: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.50:0","nonce":3316877788}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":973152501}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":2030739378}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":82021998}]}]} 2024-09-21T17:24:45.072 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-21T17:24:45.072 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-21T17:24:45.073 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd dump --format=json 2024-09-21T17:24:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:46 smithi170 bash[24572]: cluster 2024-09-21T17:24:45.127453+0000 mgr.smithi050.baqqjh (mgr.14203) 166 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:46 smithi170 bash[24572]: cluster 2024-09-21T17:24:45.127453+0000 mgr.smithi050.baqqjh (mgr.14203) 166 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:46 smithi170 bash[24572]: audit 2024-09-21T17:24:45.576189+0000 mon.smithi050 (mon.0) 727 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:46 smithi170 bash[24572]: audit 2024-09-21T17:24:45.576189+0000 mon.smithi050 (mon.0) 727 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:46 smithi170 bash[24572]: audit 2024-09-21T17:24:46.166884+0000 mon.smithi050 (mon.0) 728 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:46 smithi170 bash[24572]: audit 2024-09-21T17:24:46.166884+0000 mon.smithi050 (mon.0) 728 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:46 smithi170 bash[24572]: audit 2024-09-21T17:24:46.176815+0000 mon.smithi050 (mon.0) 729 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:46.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:46 smithi170 bash[24572]: audit 2024-09-21T17:24:46.176815+0000 mon.smithi050 (mon.0) 729 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:46.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:46 smithi050 bash[19920]: cluster 2024-09-21T17:24:45.127453+0000 mgr.smithi050.baqqjh (mgr.14203) 166 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:46.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:46 smithi050 bash[19920]: cluster 2024-09-21T17:24:45.127453+0000 mgr.smithi050.baqqjh (mgr.14203) 166 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:46 smithi050 bash[19920]: audit 2024-09-21T17:24:45.576189+0000 mon.smithi050 (mon.0) 727 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:46 smithi050 bash[19920]: audit 2024-09-21T17:24:45.576189+0000 mon.smithi050 (mon.0) 727 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:24:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:46 smithi050 bash[19920]: audit 2024-09-21T17:24:46.166884+0000 mon.smithi050 (mon.0) 728 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:46 smithi050 bash[19920]: audit 2024-09-21T17:24:46.166884+0000 mon.smithi050 (mon.0) 728 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:46 smithi050 bash[19920]: audit 2024-09-21T17:24:46.176815+0000 mon.smithi050 (mon.0) 729 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:46.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:46 smithi050 bash[19920]: audit 2024-09-21T17:24:46.176815+0000 mon.smithi050 (mon.0) 729 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:48.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:48 smithi170 bash[24572]: cluster 2024-09-21T17:24:47.128088+0000 mgr.smithi050.baqqjh (mgr.14203) 167 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:48.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:48 smithi170 bash[24572]: cluster 2024-09-21T17:24:47.128088+0000 mgr.smithi050.baqqjh (mgr.14203) 167 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:48.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:48 smithi170 bash[24572]: audit 2024-09-21T17:24:48.248771+0000 mon.smithi050 (mon.0) 730 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:48.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:48 smithi170 bash[24572]: audit 2024-09-21T17:24:48.248771+0000 mon.smithi050 (mon.0) 730 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:48.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:48 smithi170 bash[24572]: audit 2024-09-21T17:24:48.259735+0000 mon.smithi050 (mon.0) 731 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:48.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:48 smithi170 bash[24572]: audit 2024-09-21T17:24:48.259735+0000 mon.smithi050 (mon.0) 731 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:48.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:48 smithi050 bash[19920]: cluster 2024-09-21T17:24:47.128088+0000 mgr.smithi050.baqqjh (mgr.14203) 167 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:48.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:48 smithi050 bash[19920]: cluster 2024-09-21T17:24:47.128088+0000 mgr.smithi050.baqqjh (mgr.14203) 167 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:48.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:48 smithi050 bash[19920]: audit 2024-09-21T17:24:48.248771+0000 mon.smithi050 (mon.0) 730 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:48.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:48 smithi050 bash[19920]: audit 2024-09-21T17:24:48.248771+0000 mon.smithi050 (mon.0) 730 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:48.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:48 smithi050 bash[19920]: audit 2024-09-21T17:24:48.259735+0000 mon.smithi050 (mon.0) 731 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:48.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:48 smithi050 bash[19920]: audit 2024-09-21T17:24:48.259735+0000 mon.smithi050 (mon.0) 731 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:24:49.912 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:24:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:50 smithi170 bash[24572]: cluster 2024-09-21T17:24:49.128654+0000 mgr.smithi050.baqqjh (mgr.14203) 168 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:50 smithi170 bash[24572]: cluster 2024-09-21T17:24:49.128654+0000 mgr.smithi050.baqqjh (mgr.14203) 168 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:50.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:50 smithi050 bash[19920]: cluster 2024-09-21T17:24:49.128654+0000 mgr.smithi050.baqqjh (mgr.14203) 168 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:50.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:50 smithi050 bash[19920]: cluster 2024-09-21T17:24:49.128654+0000 mgr.smithi050.baqqjh (mgr.14203) 168 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:51.384 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:24:51.384 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":41,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","created":"2024-09-21T17:18:32.320519+0000","modified":"2024-09-21T17:24:03.657452+0000","last_up_change":"2024-09-21T17:23:59.633440+0000","last_in_change":"2024-09-21T17:23:01.674508+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-21T17:23:41.649980+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":"01a3d8da-4808-4bc7-9af6-3c46c4bd4034","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6800","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6801","nonce":455256004}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6802","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6803","nonce":455256004}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6806","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6807","nonce":455256004}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6804","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6805","nonce":455256004}]},"public_addr":"172.21.15.170:6801/455256004","cluster_addr":"172.21.15.170:6803/455256004","heartbeat_back_addr":"172.21.15.170:6807/455256004","heartbeat_front_addr":"172.21.15.170:6805/455256004","state":["exists","up"]},{"osd":1,"uuid":"0759c15c-a958-43d1-a16a-292bbf5d1b60","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6803","nonce":3853477500}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6805","nonce":3853477500}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6809","nonce":3853477500}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6807","nonce":3853477500}]},"public_addr":"172.21.15.50:6803/3853477500","cluster_addr":"172.21.15.50:6805/3853477500","heartbeat_back_addr":"172.21.15.50:6809/3853477500","heartbeat_front_addr":"172.21.15.50:6807/3853477500","state":["exists","up"]},{"osd":2,"uuid":"b0a4502a-ab47-4c75-aba8-787cda9ff586","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6808","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6809","nonce":3606395045}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6810","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6811","nonce":3606395045}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6814","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6815","nonce":3606395045}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6812","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6813","nonce":3606395045}]},"public_addr":"172.21.15.170:6809/3606395045","cluster_addr":"172.21.15.170:6811/3606395045","heartbeat_back_addr":"172.21.15.170:6815/3606395045","heartbeat_front_addr":"172.21.15.170:6813/3606395045","state":["exists","up"]},{"osd":3,"uuid":"2dd69733-3b18-4f8c-9066-2b215746bb7c","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.50:6810","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6811","nonce":1274023134}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6813","nonce":1274023134}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6817","nonce":1274023134}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6815","nonce":1274023134}]},"public_addr":"172.21.15.50:6811/1274023134","cluster_addr":"172.21.15.50:6813/1274023134","heartbeat_back_addr":"172.21.15.50:6817/1274023134","heartbeat_front_addr":"172.21.15.50:6815/1274023134","state":["exists","up"]},{"osd":4,"uuid":"16d97a87-74d6-4204-a4b9-a352ef162f79","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6816","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6817","nonce":2593634852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6818","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6819","nonce":2593634852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6822","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6823","nonce":2593634852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6820","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6821","nonce":2593634852}]},"public_addr":"172.21.15.170:6817/2593634852","cluster_addr":"172.21.15.170:6819/2593634852","heartbeat_back_addr":"172.21.15.170:6823/2593634852","heartbeat_front_addr":"172.21.15.170:6821/2593634852","state":["exists","up"]},{"osd":5,"uuid":"e743f305-d074-457b-af5f-9dc85dcbb4bd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6818","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6819","nonce":2095855731}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6820","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6821","nonce":2095855731}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6824","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6825","nonce":2095855731}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6822","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6823","nonce":2095855731}]},"public_addr":"172.21.15.50:6819/2095855731","cluster_addr":"172.21.15.50:6821/2095855731","heartbeat_back_addr":"172.21.15.50:6825/2095855731","heartbeat_front_addr":"172.21.15.50:6823/2095855731","state":["exists","up"]},{"osd":6,"uuid":"46b098af-887f-4dfe-9bd5-395359d09723","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6824","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6825","nonce":715811429}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6826","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6827","nonce":715811429}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6830","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6831","nonce":715811429}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6828","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6829","nonce":715811429}]},"public_addr":"172.21.15.170:6825/715811429","cluster_addr":"172.21.15.170:6827/715811429","heartbeat_back_addr":"172.21.15.170:6831/715811429","heartbeat_front_addr":"172.21.15.170:6829/715811429","state":["exists","up"]},{"osd":7,"uuid":"82417463-a378-407a-9672-f11db8aa07b7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6826","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6827","nonce":1304301070}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6828","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6829","nonce":1304301070}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6832","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6833","nonce":1304301070}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6830","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6831","nonce":1304301070}]},"public_addr":"172.21.15.50:6827/1304301070","cluster_addr":"172.21.15.50:6829/1304301070","heartbeat_back_addr":"172.21.15.50:6833/1304301070","heartbeat_front_addr":"172.21.15.50:6831/1304301070","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-21T17:23:31.992909+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-21T17:23:36.701327+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-21T17:23:37.875363+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-21T17:23:42.732167+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-21T17:23:43.695807+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-21T17:23:52.144883+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-21T17:23:47.573097+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-21T17:23:58.372073+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:0/402694360":"2024-09-22T17:21:15.070232+0000","172.21.15.50:0/1239064235":"2024-09-22T17:21:15.070232+0000","172.21.15.50:6801/3346325552":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/461535536":"2024-09-22T17:21:15.070232+0000","172.21.15.50:0/428041091":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/2211296993":"2024-09-22T17:18:59.505784+0000","172.21.15.50:6801/1228815983":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/3158685145":"2024-09-22T17:19:49.154023+0000","172.21.15.50:6800/1228815983":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/451356106":"2024-09-22T17:19:49.154023+0000","172.21.15.50:6800/3346325552":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/3677520875":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/796946174":"2024-09-22T17:18:59.505784+0000","172.21.15.50:6800/2085077567":"2024-09-22T17:21:15.070232+0000","172.21.15.50:6801/2085077567":"2024-09-22T17:21:15.070232+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-21T17:24:51.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:51 smithi050 bash[19920]: audit 2024-09-21T17:24:51.382856+0000 mon.smithi050 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.50:0/88880438' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:51.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:51 smithi050 bash[19920]: audit 2024-09-21T17:24:51.382856+0000 mon.smithi050 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.50:0/88880438' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:51.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:51 smithi170 bash[24572]: audit 2024-09-21T17:24:51.382856+0000 mon.smithi050 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.50:0/88880438' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:51.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:51 smithi170 bash[24572]: audit 2024-09-21T17:24:51.382856+0000 mon.smithi050 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.50:0/88880438' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:52.083 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-21T17:24:52.084 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd dump --format=json 2024-09-21T17:24:52.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:52 smithi170 bash[24572]: cluster 2024-09-21T17:24:51.129072+0000 mgr.smithi050.baqqjh (mgr.14203) 169 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:52.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:52 smithi170 bash[24572]: cluster 2024-09-21T17:24:51.129072+0000 mgr.smithi050.baqqjh (mgr.14203) 169 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:52.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:52 smithi050 bash[19920]: cluster 2024-09-21T17:24:51.129072+0000 mgr.smithi050.baqqjh (mgr.14203) 169 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:52.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:52 smithi050 bash[19920]: cluster 2024-09-21T17:24:51.129072+0000 mgr.smithi050.baqqjh (mgr.14203) 169 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:54 smithi170 bash[24572]: cluster 2024-09-21T17:24:53.129565+0000 mgr.smithi050.baqqjh (mgr.14203) 170 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:54 smithi170 bash[24572]: cluster 2024-09-21T17:24:53.129565+0000 mgr.smithi050.baqqjh (mgr.14203) 170 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:54.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:54 smithi050 bash[19920]: cluster 2024-09-21T17:24:53.129565+0000 mgr.smithi050.baqqjh (mgr.14203) 170 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:54.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:54 smithi050 bash[19920]: cluster 2024-09-21T17:24:53.129565+0000 mgr.smithi050.baqqjh (mgr.14203) 170 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:56.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:56 smithi170 bash[24572]: cluster 2024-09-21T17:24:55.130168+0000 mgr.smithi050.baqqjh (mgr.14203) 171 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:56.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:56 smithi170 bash[24572]: cluster 2024-09-21T17:24:55.130168+0000 mgr.smithi050.baqqjh (mgr.14203) 171 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:56.904 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:24:56.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:56 smithi050 bash[19920]: cluster 2024-09-21T17:24:55.130168+0000 mgr.smithi050.baqqjh (mgr.14203) 171 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:56.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:56 smithi050 bash[19920]: cluster 2024-09-21T17:24:55.130168+0000 mgr.smithi050.baqqjh (mgr.14203) 171 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:58.276 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:24:58.276 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":41,"fsid":"58e4c4c0-783d-11ef-baf6-efdc52797490","created":"2024-09-21T17:18:32.320519+0000","modified":"2024-09-21T17:24:03.657452+0000","last_up_change":"2024-09-21T17:23:59.633440+0000","last_in_change":"2024-09-21T17:23:01.674508+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-21T17:23:41.649980+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":"01a3d8da-4808-4bc7-9af6-3c46c4bd4034","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6800","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6801","nonce":455256004}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6802","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6803","nonce":455256004}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6806","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6807","nonce":455256004}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6804","nonce":455256004},{"type":"v1","addr":"172.21.15.170:6805","nonce":455256004}]},"public_addr":"172.21.15.170:6801/455256004","cluster_addr":"172.21.15.170:6803/455256004","heartbeat_back_addr":"172.21.15.170:6807/455256004","heartbeat_front_addr":"172.21.15.170:6805/455256004","state":["exists","up"]},{"osd":1,"uuid":"0759c15c-a958-43d1-a16a-292bbf5d1b60","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":25,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6803","nonce":3853477500}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6805","nonce":3853477500}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6809","nonce":3853477500}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":3853477500},{"type":"v1","addr":"172.21.15.50:6807","nonce":3853477500}]},"public_addr":"172.21.15.50:6803/3853477500","cluster_addr":"172.21.15.50:6805/3853477500","heartbeat_back_addr":"172.21.15.50:6809/3853477500","heartbeat_front_addr":"172.21.15.50:6807/3853477500","state":["exists","up"]},{"osd":2,"uuid":"b0a4502a-ab47-4c75-aba8-787cda9ff586","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6808","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6809","nonce":3606395045}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6810","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6811","nonce":3606395045}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6814","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6815","nonce":3606395045}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6812","nonce":3606395045},{"type":"v1","addr":"172.21.15.170:6813","nonce":3606395045}]},"public_addr":"172.21.15.170:6809/3606395045","cluster_addr":"172.21.15.170:6811/3606395045","heartbeat_back_addr":"172.21.15.170:6815/3606395045","heartbeat_front_addr":"172.21.15.170:6813/3606395045","state":["exists","up"]},{"osd":3,"uuid":"2dd69733-3b18-4f8c-9066-2b215746bb7c","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.50:6810","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6811","nonce":1274023134}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6813","nonce":1274023134}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6817","nonce":1274023134}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":1274023134},{"type":"v1","addr":"172.21.15.50:6815","nonce":1274023134}]},"public_addr":"172.21.15.50:6811/1274023134","cluster_addr":"172.21.15.50:6813/1274023134","heartbeat_back_addr":"172.21.15.50:6817/1274023134","heartbeat_front_addr":"172.21.15.50:6815/1274023134","state":["exists","up"]},{"osd":4,"uuid":"16d97a87-74d6-4204-a4b9-a352ef162f79","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6816","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6817","nonce":2593634852}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6818","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6819","nonce":2593634852}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6822","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6823","nonce":2593634852}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6820","nonce":2593634852},{"type":"v1","addr":"172.21.15.170:6821","nonce":2593634852}]},"public_addr":"172.21.15.170:6817/2593634852","cluster_addr":"172.21.15.170:6819/2593634852","heartbeat_back_addr":"172.21.15.170:6823/2593634852","heartbeat_front_addr":"172.21.15.170:6821/2593634852","state":["exists","up"]},{"osd":5,"uuid":"e743f305-d074-457b-af5f-9dc85dcbb4bd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6818","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6819","nonce":2095855731}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6820","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6821","nonce":2095855731}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6824","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6825","nonce":2095855731}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6822","nonce":2095855731},{"type":"v1","addr":"172.21.15.50:6823","nonce":2095855731}]},"public_addr":"172.21.15.50:6819/2095855731","cluster_addr":"172.21.15.50:6821/2095855731","heartbeat_back_addr":"172.21.15.50:6825/2095855731","heartbeat_front_addr":"172.21.15.50:6823/2095855731","state":["exists","up"]},{"osd":6,"uuid":"46b098af-887f-4dfe-9bd5-395359d09723","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6824","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6825","nonce":715811429}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6826","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6827","nonce":715811429}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6830","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6831","nonce":715811429}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.170:6828","nonce":715811429},{"type":"v1","addr":"172.21.15.170:6829","nonce":715811429}]},"public_addr":"172.21.15.170:6825/715811429","cluster_addr":"172.21.15.170:6827/715811429","heartbeat_back_addr":"172.21.15.170:6831/715811429","heartbeat_front_addr":"172.21.15.170:6829/715811429","state":["exists","up"]},{"osd":7,"uuid":"82417463-a378-407a-9672-f11db8aa07b7","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":37,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6826","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6827","nonce":1304301070}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6828","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6829","nonce":1304301070}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6832","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6833","nonce":1304301070}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6830","nonce":1304301070},{"type":"v1","addr":"172.21.15.50:6831","nonce":1304301070}]},"public_addr":"172.21.15.50:6827/1304301070","cluster_addr":"172.21.15.50:6829/1304301070","heartbeat_back_addr":"172.21.15.50:6833/1304301070","heartbeat_front_addr":"172.21.15.50:6831/1304301070","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-21T17:23:31.992909+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-21T17:23:36.701327+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-21T17:23:37.875363+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-21T17:23:42.732167+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-21T17:23:43.695807+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-21T17:23:52.144883+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-21T17:23:47.573097+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-21T17:23:58.372073+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:0/402694360":"2024-09-22T17:21:15.070232+0000","172.21.15.50:0/1239064235":"2024-09-22T17:21:15.070232+0000","172.21.15.50:6801/3346325552":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/461535536":"2024-09-22T17:21:15.070232+0000","172.21.15.50:0/428041091":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/2211296993":"2024-09-22T17:18:59.505784+0000","172.21.15.50:6801/1228815983":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/3158685145":"2024-09-22T17:19:49.154023+0000","172.21.15.50:6800/1228815983":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/451356106":"2024-09-22T17:19:49.154023+0000","172.21.15.50:6800/3346325552":"2024-09-22T17:18:59.505784+0000","172.21.15.50:0/3677520875":"2024-09-22T17:19:49.154023+0000","172.21.15.50:0/796946174":"2024-09-22T17:18:59.505784+0000","172.21.15.50:6800/2085077567":"2024-09-22T17:21:15.070232+0000","172.21.15.50:6801/2085077567":"2024-09-22T17:21:15.070232+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-21T17:24:58.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:58 smithi170 bash[24572]: cluster 2024-09-21T17:24:57.130790+0000 mgr.smithi050.baqqjh (mgr.14203) 172 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:58.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:58 smithi170 bash[24572]: cluster 2024-09-21T17:24:57.130790+0000 mgr.smithi050.baqqjh (mgr.14203) 172 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:58.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:58 smithi170 bash[24572]: audit 2024-09-21T17:24:58.275086+0000 mon.smithi050 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.50:0/849220255' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:58.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:24:58 smithi170 bash[24572]: audit 2024-09-21T17:24:58.275086+0000 mon.smithi050 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.50:0/849220255' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:58.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:58 smithi050 bash[19920]: cluster 2024-09-21T17:24:57.130790+0000 mgr.smithi050.baqqjh (mgr.14203) 172 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:58.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:58 smithi050 bash[19920]: cluster 2024-09-21T17:24:57.130790+0000 mgr.smithi050.baqqjh (mgr.14203) 172 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:24:58.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:58 smithi050 bash[19920]: audit 2024-09-21T17:24:58.275086+0000 mon.smithi050 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.50:0/849220255' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:58.890 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:24:58 smithi050 bash[19920]: audit 2024-09-21T17:24:58.275086+0000 mon.smithi050 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.50:0/849220255' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T17:24:58.891 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph tell osd.0 flush_pg_stats 2024-09-21T17:24:58.892 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph tell osd.1 flush_pg_stats 2024-09-21T17:24:58.892 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph tell osd.2 flush_pg_stats 2024-09-21T17:24:58.893 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph tell osd.3 flush_pg_stats 2024-09-21T17:24:58.893 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph tell osd.4 flush_pg_stats 2024-09-21T17:24:58.893 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph tell osd.5 flush_pg_stats 2024-09-21T17:24:58.894 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph tell osd.6 flush_pg_stats 2024-09-21T17:24:58.894 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph tell osd.7 flush_pg_stats 2024-09-21T17:25:00.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:00 smithi050 bash[19920]: cluster 2024-09-21T17:24:59.131234+0000 mgr.smithi050.baqqjh (mgr.14203) 173 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:00.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:00 smithi050 bash[19920]: cluster 2024-09-21T17:24:59.131234+0000 mgr.smithi050.baqqjh (mgr.14203) 173 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:00.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:00 smithi050 bash[19920]: audit 2024-09-21T17:25:00.576355+0000 mon.smithi050 (mon.0) 734 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:00.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:00 smithi050 bash[19920]: audit 2024-09-21T17:25:00.576355+0000 mon.smithi050 (mon.0) 734 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:00.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:00 smithi170 bash[24572]: cluster 2024-09-21T17:24:59.131234+0000 mgr.smithi050.baqqjh (mgr.14203) 173 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:00.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:00 smithi170 bash[24572]: cluster 2024-09-21T17:24:59.131234+0000 mgr.smithi050.baqqjh (mgr.14203) 173 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:00.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:00 smithi170 bash[24572]: audit 2024-09-21T17:25:00.576355+0000 mon.smithi050 (mon.0) 734 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:00.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:00 smithi170 bash[24572]: audit 2024-09-21T17:25:00.576355+0000 mon.smithi050 (mon.0) 734 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:02.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:02 smithi170 bash[24572]: cluster 2024-09-21T17:25:01.131840+0000 mgr.smithi050.baqqjh (mgr.14203) 174 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:02.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:02 smithi170 bash[24572]: cluster 2024-09-21T17:25:01.131840+0000 mgr.smithi050.baqqjh (mgr.14203) 174 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:02.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:02 smithi050 bash[19920]: cluster 2024-09-21T17:25:01.131840+0000 mgr.smithi050.baqqjh (mgr.14203) 174 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:02.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:02 smithi050 bash[19920]: cluster 2024-09-21T17:25:01.131840+0000 mgr.smithi050.baqqjh (mgr.14203) 174 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:03.858 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:03.859 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:03.859 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:03.859 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:03.859 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:03.860 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:03.862 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:03.864 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:04.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:04 smithi170 bash[24572]: cluster 2024-09-21T17:25:03.132398+0000 mgr.smithi050.baqqjh (mgr.14203) 175 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:04.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:04 smithi170 bash[24572]: cluster 2024-09-21T17:25:03.132398+0000 mgr.smithi050.baqqjh (mgr.14203) 175 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:04.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:04 smithi050 bash[19920]: cluster 2024-09-21T17:25:03.132398+0000 mgr.smithi050.baqqjh (mgr.14203) 175 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:04.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:04 smithi050 bash[19920]: cluster 2024-09-21T17:25:03.132398+0000 mgr.smithi050.baqqjh (mgr.14203) 175 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:06.677 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:06 smithi050 bash[19920]: cluster 2024-09-21T17:25:05.133078+0000 mgr.smithi050.baqqjh (mgr.14203) 176 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:06.677 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:06 smithi050 bash[19920]: cluster 2024-09-21T17:25:05.133078+0000 mgr.smithi050.baqqjh (mgr.14203) 176 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:07.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:06 smithi170 bash[24572]: cluster 2024-09-21T17:25:05.133078+0000 mgr.smithi050.baqqjh (mgr.14203) 176 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:07.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:06 smithi170 bash[24572]: cluster 2024-09-21T17:25:05.133078+0000 mgr.smithi050.baqqjh (mgr.14203) 176 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:08.832 INFO:teuthology.orchestra.run.smithi050.stdout:90194313237 2024-09-21T17:25:08.832 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.2 2024-09-21T17:25:08.898 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:08 smithi050 bash[19920]: cluster 2024-09-21T17:25:07.133507+0000 mgr.smithi050.baqqjh (mgr.14203) 177 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:08.898 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:08 smithi050 bash[19920]: cluster 2024-09-21T17:25:07.133507+0000 mgr.smithi050.baqqjh (mgr.14203) 177 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:08.992 INFO:teuthology.orchestra.run.smithi050.stdout:85899345940 2024-09-21T17:25:08.993 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.1 2024-09-21T17:25:09.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:08 smithi170 bash[24572]: cluster 2024-09-21T17:25:07.133507+0000 mgr.smithi050.baqqjh (mgr.14203) 177 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:09.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:08 smithi170 bash[24572]: cluster 2024-09-21T17:25:07.133507+0000 mgr.smithi050.baqqjh (mgr.14203) 177 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:09.240 INFO:teuthology.orchestra.run.smithi050.stdout:68719476758 2024-09-21T17:25:09.241 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.0 2024-09-21T17:25:10.603 INFO:teuthology.orchestra.run.smithi050.stdout:158913789969 2024-09-21T17:25:10.604 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.7 2024-09-21T17:25:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:10 smithi050 bash[19920]: cluster 2024-09-21T17:25:09.133830+0000 mgr.smithi050.baqqjh (mgr.14203) 178 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:10.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:10 smithi050 bash[19920]: cluster 2024-09-21T17:25:09.133830+0000 mgr.smithi050.baqqjh (mgr.14203) 178 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:10.800 INFO:teuthology.orchestra.run.smithi050.stdout:141733920786 2024-09-21T17:25:10.801 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.5 2024-09-21T17:25:10.937 INFO:teuthology.orchestra.run.smithi050.stdout:128849018899 2024-09-21T17:25:10.938 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.6 2024-09-21T17:25:11.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:10 smithi170 bash[24572]: cluster 2024-09-21T17:25:09.133830+0000 mgr.smithi050.baqqjh (mgr.14203) 178 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:11.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:10 smithi170 bash[24572]: cluster 2024-09-21T17:25:09.133830+0000 mgr.smithi050.baqqjh (mgr.14203) 178 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:11.692 INFO:teuthology.orchestra.run.smithi050.stdout:103079215124 2024-09-21T17:25:11.692 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.3 2024-09-21T17:25:11.706 INFO:teuthology.orchestra.run.smithi050.stdout:107374182420 2024-09-21T17:25:11.706 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.4 2024-09-21T17:25:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:12 smithi050 bash[19920]: cluster 2024-09-21T17:25:11.134179+0000 mgr.smithi050.baqqjh (mgr.14203) 179 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:12.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:12 smithi050 bash[19920]: cluster 2024-09-21T17:25:11.134179+0000 mgr.smithi050.baqqjh (mgr.14203) 179 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:12 smithi170 bash[24572]: cluster 2024-09-21T17:25:11.134179+0000 mgr.smithi050.baqqjh (mgr.14203) 179 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:12 smithi170 bash[24572]: cluster 2024-09-21T17:25:11.134179+0000 mgr.smithi050.baqqjh (mgr.14203) 179 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:14.684 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:14.684 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:14.685 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:14.685 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:14.685 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:14.927 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:14 smithi050 bash[19920]: cluster 2024-09-21T17:25:13.136320+0000 mgr.smithi050.baqqjh (mgr.14203) 180 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:14.928 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:14 smithi050 bash[19920]: cluster 2024-09-21T17:25:13.136320+0000 mgr.smithi050.baqqjh (mgr.14203) 180 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:15.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:14 smithi170 bash[24572]: cluster 2024-09-21T17:25:13.136320+0000 mgr.smithi050.baqqjh (mgr.14203) 180 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:15.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:14 smithi170 bash[24572]: cluster 2024-09-21T17:25:13.136320+0000 mgr.smithi050.baqqjh (mgr.14203) 180 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:15.706 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:15.706 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:15.706 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:15.958 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:15 smithi050 bash[19920]: audit 2024-09-21T17:25:15.577542+0000 mon.smithi050 (mon.0) 735 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:15.958 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:15 smithi050 bash[19920]: audit 2024-09-21T17:25:15.577542+0000 mon.smithi050 (mon.0) 735 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:16.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:15 smithi170 bash[24572]: audit 2024-09-21T17:25:15.577542+0000 mon.smithi050 (mon.0) 735 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:16.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:15 smithi170 bash[24572]: audit 2024-09-21T17:25:15.577542+0000 mon.smithi050 (mon.0) 735 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:16.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:16 smithi050 bash[19920]: cluster 2024-09-21T17:25:15.136900+0000 mgr.smithi050.baqqjh (mgr.14203) 181 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:16.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:16 smithi050 bash[19920]: cluster 2024-09-21T17:25:15.136900+0000 mgr.smithi050.baqqjh (mgr.14203) 181 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:17.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:16 smithi170 bash[24572]: cluster 2024-09-21T17:25:15.136900+0000 mgr.smithi050.baqqjh (mgr.14203) 181 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:17.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:16 smithi170 bash[24572]: cluster 2024-09-21T17:25:15.136900+0000 mgr.smithi050.baqqjh (mgr.14203) 181 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:17.501 INFO:teuthology.orchestra.run.smithi050.stdout:85899345942 2024-09-21T17:25:17.979 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:17 smithi050 bash[19920]: audit 2024-09-21T17:25:17.501257+0000 mon.smithi050 (mon.0) 736 : audit [DBG] from='client.? 172.21.15.50:0/1003521305' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-21T17:25:17.979 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:17 smithi050 bash[19920]: audit 2024-09-21T17:25:17.501257+0000 mon.smithi050 (mon.0) 736 : audit [DBG] from='client.? 172.21.15.50:0/1003521305' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-21T17:25:18.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:17 smithi170 bash[24572]: audit 2024-09-21T17:25:17.501257+0000 mon.smithi050 (mon.0) 736 : audit [DBG] from='client.? 172.21.15.50:0/1003521305' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-21T17:25:18.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:17 smithi170 bash[24572]: audit 2024-09-21T17:25:17.501257+0000 mon.smithi050 (mon.0) 736 : audit [DBG] from='client.? 172.21.15.50:0/1003521305' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-21T17:25:18.330 INFO:teuthology.orchestra.run.smithi050.stdout:158913789971 2024-09-21T17:25:18.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:18 smithi050 bash[19920]: cluster 2024-09-21T17:25:17.137400+0000 mgr.smithi050.baqqjh (mgr.14203) 182 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:18.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:18 smithi050 bash[19920]: cluster 2024-09-21T17:25:17.137400+0000 mgr.smithi050.baqqjh (mgr.14203) 182 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:18.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:18 smithi050 bash[19920]: audit 2024-09-21T17:25:18.330139+0000 mon.smithi050 (mon.0) 737 : audit [DBG] from='client.? 172.21.15.50:0/3244010648' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-21T17:25:18.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:18 smithi050 bash[19920]: audit 2024-09-21T17:25:18.330139+0000 mon.smithi050 (mon.0) 737 : audit [DBG] from='client.? 172.21.15.50:0/3244010648' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-21T17:25:19.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:18 smithi170 bash[24572]: cluster 2024-09-21T17:25:17.137400+0000 mgr.smithi050.baqqjh (mgr.14203) 182 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:19.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:18 smithi170 bash[24572]: cluster 2024-09-21T17:25:17.137400+0000 mgr.smithi050.baqqjh (mgr.14203) 182 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:19.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:18 smithi170 bash[24572]: audit 2024-09-21T17:25:18.330139+0000 mon.smithi050 (mon.0) 737 : audit [DBG] from='client.? 172.21.15.50:0/3244010648' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-21T17:25:19.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:18 smithi170 bash[24572]: audit 2024-09-21T17:25:18.330139+0000 mon.smithi050 (mon.0) 737 : audit [DBG] from='client.? 172.21.15.50:0/3244010648' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-21T17:25:19.302 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345940 got 85899345942 for osd.1 2024-09-21T17:25:19.302 DEBUG:teuthology.parallel:result is None 2024-09-21T17:25:19.785 INFO:tasks.cephadm.ceph_manager.ceph:need seq 158913789969 got 158913789971 for osd.7 2024-09-21T17:25:19.785 DEBUG:teuthology.parallel:result is None 2024-09-21T17:25:20.197 INFO:teuthology.orchestra.run.smithi050.stdout:68719476760 2024-09-21T17:25:20.227 INFO:teuthology.orchestra.run.smithi050.stdout:103079215126 2024-09-21T17:25:20.338 INFO:teuthology.orchestra.run.smithi050.stdout:90194313239 2024-09-21T17:25:20.356 INFO:teuthology.orchestra.run.smithi050.stdout:141733920788 2024-09-21T17:25:20.375 INFO:teuthology.orchestra.run.smithi050.stdout:107374182422 2024-09-21T17:25:20.420 INFO:teuthology.orchestra.run.smithi050.stdout:128849018901 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: cluster 2024-09-21T17:25:19.137945+0000 mgr.smithi050.baqqjh (mgr.14203) 183 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: cluster 2024-09-21T17:25:19.137945+0000 mgr.smithi050.baqqjh (mgr.14203) 183 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.196990+0000 mon.smithi050 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.50:0/328447840' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.196990+0000 mon.smithi050 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.50:0/328447840' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.227193+0000 mon.smithi050 (mon.0) 739 : audit [DBG] from='client.? 172.21.15.50:0/63056197' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.227193+0000 mon.smithi050 (mon.0) 739 : audit [DBG] from='client.? 172.21.15.50:0/63056197' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.337972+0000 mon.smithi050 (mon.0) 740 : audit [DBG] from='client.? 172.21.15.50:0/3635310023' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.337972+0000 mon.smithi050 (mon.0) 740 : audit [DBG] from='client.? 172.21.15.50:0/3635310023' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.356083+0000 mon.smithi050 (mon.0) 741 : audit [DBG] from='client.? 172.21.15.50:0/3265393307' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.356083+0000 mon.smithi050 (mon.0) 741 : audit [DBG] from='client.? 172.21.15.50:0/3265393307' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-21T17:25:20.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.375040+0000 mon.smithi050 (mon.0) 742 : audit [DBG] from='client.? 172.21.15.50:0/1750359588' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-21T17:25:20.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.375040+0000 mon.smithi050 (mon.0) 742 : audit [DBG] from='client.? 172.21.15.50:0/1750359588' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-21T17:25:20.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.420308+0000 mon.smithi050 (mon.0) 743 : audit [DBG] from='client.? 172.21.15.50:0/4239569816' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-21T17:25:20.985 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:20 smithi050 bash[19920]: audit 2024-09-21T17:25:20.420308+0000 mon.smithi050 (mon.0) 743 : audit [DBG] from='client.? 172.21.15.50:0/4239569816' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-21T17:25:21.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: cluster 2024-09-21T17:25:19.137945+0000 mgr.smithi050.baqqjh (mgr.14203) 183 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:21.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: cluster 2024-09-21T17:25:19.137945+0000 mgr.smithi050.baqqjh (mgr.14203) 183 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:21.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.196990+0000 mon.smithi050 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.50:0/328447840' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-21T17:25:21.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.196990+0000 mon.smithi050 (mon.0) 738 : audit [DBG] from='client.? 172.21.15.50:0/328447840' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.227193+0000 mon.smithi050 (mon.0) 739 : audit [DBG] from='client.? 172.21.15.50:0/63056197' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.227193+0000 mon.smithi050 (mon.0) 739 : audit [DBG] from='client.? 172.21.15.50:0/63056197' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.337972+0000 mon.smithi050 (mon.0) 740 : audit [DBG] from='client.? 172.21.15.50:0/3635310023' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.337972+0000 mon.smithi050 (mon.0) 740 : audit [DBG] from='client.? 172.21.15.50:0/3635310023' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.356083+0000 mon.smithi050 (mon.0) 741 : audit [DBG] from='client.? 172.21.15.50:0/3265393307' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.356083+0000 mon.smithi050 (mon.0) 741 : audit [DBG] from='client.? 172.21.15.50:0/3265393307' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.375040+0000 mon.smithi050 (mon.0) 742 : audit [DBG] from='client.? 172.21.15.50:0/1750359588' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.375040+0000 mon.smithi050 (mon.0) 742 : audit [DBG] from='client.? 172.21.15.50:0/1750359588' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.420308+0000 mon.smithi050 (mon.0) 743 : audit [DBG] from='client.? 172.21.15.50:0/4239569816' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-21T17:25:21.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:20 smithi170 bash[24572]: audit 2024-09-21T17:25:20.420308+0000 mon.smithi050 (mon.0) 743 : audit [DBG] from='client.? 172.21.15.50:0/4239569816' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-21T17:25:21.932 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476758 got 68719476760 for osd.0 2024-09-21T17:25:21.932 DEBUG:teuthology.parallel:result is None 2024-09-21T17:25:21.964 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215124 got 103079215126 for osd.3 2024-09-21T17:25:21.964 DEBUG:teuthology.parallel:result is None 2024-09-21T17:25:22.245 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182420 got 107374182422 for osd.4 2024-09-21T17:25:22.245 DEBUG:teuthology.parallel:result is None 2024-09-21T17:25:22.410 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313237 got 90194313239 for osd.2 2024-09-21T17:25:22.410 DEBUG:teuthology.parallel:result is None 2024-09-21T17:25:22.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:22 smithi050 bash[19920]: cluster 2024-09-21T17:25:21.138334+0000 mgr.smithi050.baqqjh (mgr.14203) 184 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:22.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:22 smithi050 bash[19920]: cluster 2024-09-21T17:25:21.138334+0000 mgr.smithi050.baqqjh (mgr.14203) 184 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:23.044 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920786 got 141733920788 for osd.5 2024-09-21T17:25:23.045 DEBUG:teuthology.parallel:result is None 2024-09-21T17:25:23.066 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018899 got 128849018901 for osd.6 2024-09-21T17:25:23.066 DEBUG:teuthology.parallel:result is None 2024-09-21T17:25:23.066 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-21T17:25:23.066 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph pg dump --format=json 2024-09-21T17:25:23.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:22 smithi170 bash[24572]: cluster 2024-09-21T17:25:21.138334+0000 mgr.smithi050.baqqjh (mgr.14203) 184 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:23.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:22 smithi170 bash[24572]: cluster 2024-09-21T17:25:21.138334+0000 mgr.smithi050.baqqjh (mgr.14203) 184 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:24.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:24 smithi050 bash[19920]: cluster 2024-09-21T17:25:23.138685+0000 mgr.smithi050.baqqjh (mgr.14203) 185 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:24.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:24 smithi050 bash[19920]: cluster 2024-09-21T17:25:23.138685+0000 mgr.smithi050.baqqjh (mgr.14203) 185 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:25.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:24 smithi170 bash[24572]: cluster 2024-09-21T17:25:23.138685+0000 mgr.smithi050.baqqjh (mgr.14203) 185 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:25.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:24 smithi170 bash[24572]: cluster 2024-09-21T17:25:23.138685+0000 mgr.smithi050.baqqjh (mgr.14203) 185 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:26.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:26 smithi050 bash[19920]: cluster 2024-09-21T17:25:25.139229+0000 mgr.smithi050.baqqjh (mgr.14203) 186 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:26.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:26 smithi050 bash[19920]: cluster 2024-09-21T17:25:25.139229+0000 mgr.smithi050.baqqjh (mgr.14203) 186 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:27.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:26 smithi170 bash[24572]: cluster 2024-09-21T17:25:25.139229+0000 mgr.smithi050.baqqjh (mgr.14203) 186 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:27.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:26 smithi170 bash[24572]: cluster 2024-09-21T17:25:25.139229+0000 mgr.smithi050.baqqjh (mgr.14203) 186 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:27.927 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:28.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:28 smithi050 bash[19920]: cluster 2024-09-21T17:25:27.139840+0000 mgr.smithi050.baqqjh (mgr.14203) 187 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:28.930 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:28 smithi050 bash[19920]: cluster 2024-09-21T17:25:27.139840+0000 mgr.smithi050.baqqjh (mgr.14203) 187 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:29.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:28 smithi170 bash[24572]: cluster 2024-09-21T17:25:27.139840+0000 mgr.smithi050.baqqjh (mgr.14203) 187 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:29.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:28 smithi170 bash[24572]: cluster 2024-09-21T17:25:27.139840+0000 mgr.smithi050.baqqjh (mgr.14203) 187 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:29.288 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:25:29.288 INFO:teuthology.orchestra.run.smithi050.stderr:dumped all 2024-09-21T17:25:29.954 INFO:teuthology.orchestra.run.smithi050.stdout:{"pg_ready":true,"pg_map":{"version":156,"stamp":"2024-09-21T17:25:29.140073+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":242052,"kb_used_data":5004,"kb_used_omap":12,"kb_used_meta":236851,"kb_avail":749686396,"statfs":{"total":767926730752,"available":767678869504,"internally_reserved":0,"allocated":5124096,"data_stored":3115592,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12752,"internal_metadata":242535984},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.002880"},"pg_stats":[{"pgid":"1.0","version":"27'172","reported_seq":239,"reported_epoch":41,"state":"active+clean","last_fresh":"2024-09-21T17:24:03.666530+0000","last_change":"2024-09-21T17:24:03.666140+0000","last_active":"2024-09-21T17:24:03.666530+0000","last_peered":"2024-09-21T17:24:03.666530+0000","last_clean":"2024-09-21T17:24:03.666530+0000","last_became_active":"2024-09-21T17:24:03.665697+0000","last_became_peered":"2024-09-21T17:24:03.665697+0000","last_unstale":"2024-09-21T17:24:03.666530+0000","last_undegraded":"2024-09-21T17:24:03.666530+0000","last_fullsized":"2024-09-21T17:24:03.666530+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-21T17:23:41.757779+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-21T17:23:41.757779+0000","last_clean_scrub_stamp":"2024-09-21T17:23:41.757779+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-22T20:29:49.227265+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":1781760,"data_stored":1771104,"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":37,"seq":158913789973,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32180,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708876,"statfs":{"total":95990841344,"available":95957889024,"internally_reserved":0,"allocated":1011712,"data_stored":758429,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":31914442},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":33,"seq":141733920790,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713620,"statfs":{"total":95990841344,"available":95962746880,"internally_reserved":0,"allocated":417792,"data_stored":168061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":30,"seq":128849018903,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709460,"statfs":{"total":95990841344,"available":95958487040,"internally_reserved":0,"allocated":417792,"data_stored":168061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":25,"seq":107374182424,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31604,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709452,"statfs":{"total":95990841344,"available":95958478848,"internally_reserved":0,"allocated":417792,"data_stored":168061,"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":28020,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713036,"statfs":{"total":95990841344,"available":95962148864,"internally_reserved":0,"allocated":1011712,"data_stored":758429,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":21,"seq":90194313241,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709460,"statfs":{"total":95990841344,"available":95958487040,"internally_reserved":0,"allocated":417792,"data_stored":168061,"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":20,"seq":85899345945,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27440,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713616,"statfs":{"total":95990841344,"available":95962742784,"internally_reserved":0,"allocated":417792,"data_stored":168061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":68719476762,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32180,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708876,"statfs":{"total":95990841344,"available":95957889024,"internally_reserved":0,"allocated":1011712,"data_stored":758429,"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":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":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-21T17:25:29.955 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph pg dump --format=json 2024-09-21T17:25:30.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:30 smithi050 bash[19920]: cluster 2024-09-21T17:25:29.140313+0000 mgr.smithi050.baqqjh (mgr.14203) 188 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:30.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:30 smithi050 bash[19920]: cluster 2024-09-21T17:25:29.140313+0000 mgr.smithi050.baqqjh (mgr.14203) 188 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:30.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:30 smithi050 bash[19920]: audit 2024-09-21T17:25:29.286852+0000 mgr.smithi050.baqqjh (mgr.14203) 189 : audit [DBG] from='client.14474 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:25:30.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:30 smithi050 bash[19920]: audit 2024-09-21T17:25:29.286852+0000 mgr.smithi050.baqqjh (mgr.14203) 189 : audit [DBG] from='client.14474 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:25:30.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:30 smithi050 bash[19920]: audit 2024-09-21T17:25:30.578055+0000 mon.smithi050 (mon.0) 744 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:30.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:30 smithi050 bash[19920]: audit 2024-09-21T17:25:30.578055+0000 mon.smithi050 (mon.0) 744 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:31.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:30 smithi170 bash[24572]: cluster 2024-09-21T17:25:29.140313+0000 mgr.smithi050.baqqjh (mgr.14203) 188 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:31.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:30 smithi170 bash[24572]: cluster 2024-09-21T17:25:29.140313+0000 mgr.smithi050.baqqjh (mgr.14203) 188 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:31.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:30 smithi170 bash[24572]: audit 2024-09-21T17:25:29.286852+0000 mgr.smithi050.baqqjh (mgr.14203) 189 : audit [DBG] from='client.14474 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:25:31.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:30 smithi170 bash[24572]: audit 2024-09-21T17:25:29.286852+0000 mgr.smithi050.baqqjh (mgr.14203) 189 : audit [DBG] from='client.14474 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:25:31.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:30 smithi170 bash[24572]: audit 2024-09-21T17:25:30.578055+0000 mon.smithi050 (mon.0) 744 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:31.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:30 smithi170 bash[24572]: audit 2024-09-21T17:25:30.578055+0000 mon.smithi050 (mon.0) 744 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:32.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:32 smithi050 bash[19920]: cluster 2024-09-21T17:25:31.140872+0000 mgr.smithi050.baqqjh (mgr.14203) 190 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:32.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:32 smithi050 bash[19920]: cluster 2024-09-21T17:25:31.140872+0000 mgr.smithi050.baqqjh (mgr.14203) 190 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:33.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:32 smithi170 bash[24572]: cluster 2024-09-21T17:25:31.140872+0000 mgr.smithi050.baqqjh (mgr.14203) 190 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:33.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:32 smithi170 bash[24572]: cluster 2024-09-21T17:25:31.140872+0000 mgr.smithi050.baqqjh (mgr.14203) 190 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:34.787 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:34.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:34 smithi050 bash[19920]: cluster 2024-09-21T17:25:33.141536+0000 mgr.smithi050.baqqjh (mgr.14203) 191 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:34.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:34 smithi050 bash[19920]: cluster 2024-09-21T17:25:33.141536+0000 mgr.smithi050.baqqjh (mgr.14203) 191 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:35.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:34 smithi170 bash[24572]: cluster 2024-09-21T17:25:33.141536+0000 mgr.smithi050.baqqjh (mgr.14203) 191 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:35.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:34 smithi170 bash[24572]: cluster 2024-09-21T17:25:33.141536+0000 mgr.smithi050.baqqjh (mgr.14203) 191 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:36.217 INFO:teuthology.orchestra.run.smithi050.stderr:dumped all 2024-09-21T17:25:36.217 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:25:36.810 INFO:teuthology.orchestra.run.smithi050.stdout:{"pg_ready":true,"pg_map":{"version":159,"stamp":"2024-09-21T17:25:35.141917+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":242052,"kb_used_data":5004,"kb_used_omap":12,"kb_used_meta":236851,"kb_avail":749686396,"statfs":{"total":767926730752,"available":767678869504,"internally_reserved":0,"allocated":5124096,"data_stored":3115592,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12752,"internal_metadata":242535984},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003400"},"pg_stats":[{"pgid":"1.0","version":"27'172","reported_seq":239,"reported_epoch":41,"state":"active+clean","last_fresh":"2024-09-21T17:24:03.666530+0000","last_change":"2024-09-21T17:24:03.666140+0000","last_active":"2024-09-21T17:24:03.666530+0000","last_peered":"2024-09-21T17:24:03.666530+0000","last_clean":"2024-09-21T17:24:03.666530+0000","last_became_active":"2024-09-21T17:24:03.665697+0000","last_became_peered":"2024-09-21T17:24:03.665697+0000","last_unstale":"2024-09-21T17:24:03.666530+0000","last_undegraded":"2024-09-21T17:24:03.666530+0000","last_fullsized":"2024-09-21T17:24:03.666530+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-21T17:23:41.757779+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-21T17:23:41.757779+0000","last_clean_scrub_stamp":"2024-09-21T17:23:41.757779+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-22T20:29:49.227265+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":1781760,"data_stored":1771104,"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":37,"seq":158913789974,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32180,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708876,"statfs":{"total":95990841344,"available":95957889024,"internally_reserved":0,"allocated":1011712,"data_stored":758429,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":31914442},"hb_peers":[0,1,2,3,4,5,6],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":5,"up_from":33,"seq":141733920792,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713620,"statfs":{"total":95990841344,"available":95962746880,"internally_reserved":0,"allocated":417792,"data_stored":168061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":6,"up_from":30,"seq":128849018904,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709460,"statfs":{"total":95990841344,"available":95958487040,"internally_reserved":0,"allocated":417792,"data_stored":168061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":31914438},"hb_peers":[0,1,2,3,4,5,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":25,"seq":107374182425,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31604,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709452,"statfs":{"total":95990841344,"available":95958478848,"internally_reserved":0,"allocated":417792,"data_stored":168061,"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":103079215129,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28020,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713036,"statfs":{"total":95990841344,"available":95962148864,"internally_reserved":0,"allocated":1011712,"data_stored":758429,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5,6,7],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":21,"seq":90194313242,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709460,"statfs":{"total":95990841344,"available":95958487040,"internally_reserved":0,"allocated":417792,"data_stored":168061,"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":20,"seq":85899345946,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27440,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713616,"statfs":{"total":95990841344,"available":95962742784,"internally_reserved":0,"allocated":417792,"data_stored":168061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":32180,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708876,"statfs":{"total":95990841344,"available":95957889024,"internally_reserved":0,"allocated":1011712,"data_stored":758429,"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":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":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-21T17:25:36.811 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-21T17:25:36.811 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-21T17:25:36.811 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-21T17:25:36.811 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph health --format=json 2024-09-21T17:25:36.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:36 smithi050 bash[19920]: cluster 2024-09-21T17:25:35.142276+0000 mgr.smithi050.baqqjh (mgr.14203) 192 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:36.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:36 smithi050 bash[19920]: cluster 2024-09-21T17:25:35.142276+0000 mgr.smithi050.baqqjh (mgr.14203) 192 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:37.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:36 smithi170 bash[24572]: cluster 2024-09-21T17:25:35.142276+0000 mgr.smithi050.baqqjh (mgr.14203) 192 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:37.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:36 smithi170 bash[24572]: cluster 2024-09-21T17:25:35.142276+0000 mgr.smithi050.baqqjh (mgr.14203) 192 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:37.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:37 smithi050 bash[19920]: audit 2024-09-21T17:25:36.216286+0000 mgr.smithi050.baqqjh (mgr.14203) 193 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:25:37.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:37 smithi050 bash[19920]: audit 2024-09-21T17:25:36.216286+0000 mgr.smithi050.baqqjh (mgr.14203) 193 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:25:38.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:37 smithi170 bash[24572]: audit 2024-09-21T17:25:36.216286+0000 mgr.smithi050.baqqjh (mgr.14203) 193 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:25:38.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:37 smithi170 bash[24572]: audit 2024-09-21T17:25:36.216286+0000 mgr.smithi050.baqqjh (mgr.14203) 193 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:25:38.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:38 smithi050 bash[19920]: cluster 2024-09-21T17:25:37.142905+0000 mgr.smithi050.baqqjh (mgr.14203) 194 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:38.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:38 smithi050 bash[19920]: cluster 2024-09-21T17:25:37.142905+0000 mgr.smithi050.baqqjh (mgr.14203) 194 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:39.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:38 smithi170 bash[24572]: cluster 2024-09-21T17:25:37.142905+0000 mgr.smithi050.baqqjh (mgr.14203) 194 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:39.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:38 smithi170 bash[24572]: cluster 2024-09-21T17:25:37.142905+0000 mgr.smithi050.baqqjh (mgr.14203) 194 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:40.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:40 smithi050 bash[19920]: cluster 2024-09-21T17:25:39.143466+0000 mgr.smithi050.baqqjh (mgr.14203) 195 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:40.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:40 smithi050 bash[19920]: cluster 2024-09-21T17:25:39.143466+0000 mgr.smithi050.baqqjh (mgr.14203) 195 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:41.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:40 smithi170 bash[24572]: cluster 2024-09-21T17:25:39.143466+0000 mgr.smithi050.baqqjh (mgr.14203) 195 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:41.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:40 smithi170 bash[24572]: cluster 2024-09-21T17:25:39.143466+0000 mgr.smithi050.baqqjh (mgr.14203) 195 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:41.632 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:42.966 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:25:42.967 INFO:teuthology.orchestra.run.smithi050.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-21T17:25:42.979 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:42 smithi050 bash[19920]: cluster 2024-09-21T17:25:41.144139+0000 mgr.smithi050.baqqjh (mgr.14203) 196 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:42.979 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:42 smithi050 bash[19920]: cluster 2024-09-21T17:25:41.144139+0000 mgr.smithi050.baqqjh (mgr.14203) 196 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:42 smithi170 bash[24572]: cluster 2024-09-21T17:25:41.144139+0000 mgr.smithi050.baqqjh (mgr.14203) 196 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:42 smithi170 bash[24572]: cluster 2024-09-21T17:25:41.144139+0000 mgr.smithi050.baqqjh (mgr.14203) 196 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:43.550 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-21T17:25:43.550 INFO:tasks.cephadm:Setup complete, yielding 2024-09-21T17:25:43.551 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T17:25:43.559 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:25:43.559 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch status' 2024-09-21T17:25:43.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:43 smithi050 bash[19920]: audit 2024-09-21T17:25:42.966575+0000 mon.smithi050 (mon.0) 745 : audit [DBG] from='client.? 172.21.15.50:0/982317895' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-21T17:25:43.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:43 smithi050 bash[19920]: audit 2024-09-21T17:25:42.966575+0000 mon.smithi050 (mon.0) 745 : audit [DBG] from='client.? 172.21.15.50:0/982317895' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-21T17:25:44.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:43 smithi170 bash[24572]: audit 2024-09-21T17:25:42.966575+0000 mon.smithi050 (mon.0) 745 : audit [DBG] from='client.? 172.21.15.50:0/982317895' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-21T17:25:44.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:43 smithi170 bash[24572]: audit 2024-09-21T17:25:42.966575+0000 mon.smithi050 (mon.0) 745 : audit [DBG] from='client.? 172.21.15.50:0/982317895' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-21T17:25:44.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:44 smithi050 bash[19920]: cluster 2024-09-21T17:25:43.144683+0000 mgr.smithi050.baqqjh (mgr.14203) 197 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:44.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:44 smithi050 bash[19920]: cluster 2024-09-21T17:25:43.144683+0000 mgr.smithi050.baqqjh (mgr.14203) 197 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:45.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:44 smithi170 bash[24572]: cluster 2024-09-21T17:25:43.144683+0000 mgr.smithi050.baqqjh (mgr.14203) 197 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:45.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:44 smithi170 bash[24572]: cluster 2024-09-21T17:25:43.144683+0000 mgr.smithi050.baqqjh (mgr.14203) 197 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:45.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:45 smithi050 bash[19920]: audit 2024-09-21T17:25:45.578667+0000 mon.smithi050 (mon.0) 746 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:45.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:45 smithi050 bash[19920]: audit 2024-09-21T17:25:45.578667+0000 mon.smithi050 (mon.0) 746 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:46.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:45 smithi170 bash[24572]: audit 2024-09-21T17:25:45.578667+0000 mon.smithi050 (mon.0) 746 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:46.147 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:45 smithi170 bash[24572]: audit 2024-09-21T17:25:45.578667+0000 mon.smithi050 (mon.0) 746 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:25:46.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:46 smithi050 bash[19920]: cluster 2024-09-21T17:25:45.145254+0000 mgr.smithi050.baqqjh (mgr.14203) 198 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:46.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:46 smithi050 bash[19920]: cluster 2024-09-21T17:25:45.145254+0000 mgr.smithi050.baqqjh (mgr.14203) 198 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:47.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:46 smithi170 bash[24572]: cluster 2024-09-21T17:25:45.145254+0000 mgr.smithi050.baqqjh (mgr.14203) 198 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:47.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:46 smithi170 bash[24572]: cluster 2024-09-21T17:25:45.145254+0000 mgr.smithi050.baqqjh (mgr.14203) 198 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:48.376 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:48.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:48 smithi050 bash[19920]: cluster 2024-09-21T17:25:47.145729+0000 mgr.smithi050.baqqjh (mgr.14203) 199 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:48.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:48 smithi050 bash[19920]: cluster 2024-09-21T17:25:47.145729+0000 mgr.smithi050.baqqjh (mgr.14203) 199 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:49.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:48 smithi170 bash[24572]: cluster 2024-09-21T17:25:47.145729+0000 mgr.smithi050.baqqjh (mgr.14203) 199 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:49.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:48 smithi170 bash[24572]: cluster 2024-09-21T17:25:47.145729+0000 mgr.smithi050.baqqjh (mgr.14203) 199 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:49.805 INFO:teuthology.orchestra.run.smithi050.stdout:Backend: cephadm 2024-09-21T17:25:49.805 INFO:teuthology.orchestra.run.smithi050.stdout:Available: Yes 2024-09-21T17:25:49.805 INFO:teuthology.orchestra.run.smithi050.stdout:Paused: No 2024-09-21T17:25:50.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:49 smithi170 bash[24572]: audit 2024-09-21T17:25:48.766250+0000 mon.smithi050 (mon.0) 747 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:25:50.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:49 smithi170 bash[24572]: audit 2024-09-21T17:25:48.766250+0000 mon.smithi050 (mon.0) 747 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:25:50.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:49 smithi050 bash[19920]: audit 2024-09-21T17:25:48.766250+0000 mon.smithi050 (mon.0) 747 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:25:50.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:49 smithi050 bash[19920]: audit 2024-09-21T17:25:48.766250+0000 mon.smithi050 (mon.0) 747 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:25:50.395 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ps' 2024-09-21T17:25:51.068 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:50 smithi050 bash[19920]: cluster 2024-09-21T17:25:49.146224+0000 mgr.smithi050.baqqjh (mgr.14203) 200 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:51.069 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:50 smithi050 bash[19920]: cluster 2024-09-21T17:25:49.146224+0000 mgr.smithi050.baqqjh (mgr.14203) 200 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:51.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:50 smithi170 bash[24572]: cluster 2024-09-21T17:25:49.146224+0000 mgr.smithi050.baqqjh (mgr.14203) 200 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:51.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:50 smithi170 bash[24572]: cluster 2024-09-21T17:25:49.146224+0000 mgr.smithi050.baqqjh (mgr.14203) 200 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:52.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:51 smithi170 bash[24572]: audit 2024-09-21T17:25:49.804424+0000 mgr.smithi050.baqqjh (mgr.14203) 201 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:25:52.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:51 smithi170 bash[24572]: audit 2024-09-21T17:25:49.804424+0000 mgr.smithi050.baqqjh (mgr.14203) 201 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:25:52.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:51 smithi050 bash[19920]: audit 2024-09-21T17:25:49.804424+0000 mgr.smithi050.baqqjh (mgr.14203) 201 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:25:52.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:51 smithi050 bash[19920]: audit 2024-09-21T17:25:49.804424+0000 mgr.smithi050.baqqjh (mgr.14203) 201 : audit [DBG] from='client.14486 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:25:53.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:52 smithi170 bash[24572]: cluster 2024-09-21T17:25:51.146816+0000 mgr.smithi050.baqqjh (mgr.14203) 202 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:53.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:52 smithi170 bash[24572]: cluster 2024-09-21T17:25:51.146816+0000 mgr.smithi050.baqqjh (mgr.14203) 202 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:53.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:52 smithi050 bash[19920]: cluster 2024-09-21T17:25:51.146816+0000 mgr.smithi050.baqqjh (mgr.14203) 202 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:53.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:52 smithi050 bash[19920]: cluster 2024-09-21T17:25:51.146816+0000 mgr.smithi050.baqqjh (mgr.14203) 202 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:54.911 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:25:55.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:54 smithi170 bash[24572]: cluster 2024-09-21T17:25:53.147385+0000 mgr.smithi050.baqqjh (mgr.14203) 203 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:55.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:54 smithi170 bash[24572]: cluster 2024-09-21T17:25:53.147385+0000 mgr.smithi050.baqqjh (mgr.14203) 203 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:55.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:54 smithi170 bash[24572]: audit 2024-09-21T17:25:54.299467+0000 mon.smithi050 (mon.0) 748 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:55.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:54 smithi170 bash[24572]: audit 2024-09-21T17:25:54.299467+0000 mon.smithi050 (mon.0) 748 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:55.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:54 smithi170 bash[24572]: audit 2024-09-21T17:25:54.303417+0000 mon.smithi050 (mon.0) 749 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:55.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:54 smithi170 bash[24572]: audit 2024-09-21T17:25:54.303417+0000 mon.smithi050 (mon.0) 749 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:55.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:54 smithi050 bash[19920]: cluster 2024-09-21T17:25:53.147385+0000 mgr.smithi050.baqqjh (mgr.14203) 203 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:55.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:54 smithi050 bash[19920]: cluster 2024-09-21T17:25:53.147385+0000 mgr.smithi050.baqqjh (mgr.14203) 203 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:55.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:54 smithi050 bash[19920]: audit 2024-09-21T17:25:54.299467+0000 mon.smithi050 (mon.0) 748 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:55.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:54 smithi050 bash[19920]: audit 2024-09-21T17:25:54.299467+0000 mon.smithi050 (mon.0) 748 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:55.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:54 smithi050 bash[19920]: audit 2024-09-21T17:25:54.303417+0000 mon.smithi050 (mon.0) 749 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:55.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:54 smithi050 bash[19920]: audit 2024-09-21T17:25:54.303417+0000 mon.smithi050 (mon.0) 749 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:54.789141+0000 mon.smithi050 (mon.0) 750 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:54.789141+0000 mon.smithi050 (mon.0) 750 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:54.793361+0000 mon.smithi050 (mon.0) 751 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:54.793361+0000 mon.smithi050 (mon.0) 751 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: cluster 2024-09-21T17:25:55.147785+0000 mgr.smithi050.baqqjh (mgr.14203) 204 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: cluster 2024-09-21T17:25:55.147785+0000 mgr.smithi050.baqqjh (mgr.14203) 204 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:55.428501+0000 mon.smithi050 (mon.0) 752 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:55.428501+0000 mon.smithi050 (mon.0) 752 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:25:56.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:55.429681+0000 mon.smithi050 (mon.0) 753 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:25:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:55.429681+0000 mon.smithi050 (mon.0) 753 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:25:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:55.436153+0000 mon.smithi050 (mon.0) 754 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:55.436153+0000 mon.smithi050 (mon.0) 754 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:55.440205+0000 mon.smithi050 (mon.0) 755 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:25:56.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:55 smithi170 bash[24572]: audit 2024-09-21T17:25:55.440205+0000 mon.smithi050 (mon.0) 755 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:54.789141+0000 mon.smithi050 (mon.0) 750 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:54.789141+0000 mon.smithi050 (mon.0) 750 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:54.793361+0000 mon.smithi050 (mon.0) 751 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:54.793361+0000 mon.smithi050 (mon.0) 751 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: cluster 2024-09-21T17:25:55.147785+0000 mgr.smithi050.baqqjh (mgr.14203) 204 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: cluster 2024-09-21T17:25:55.147785+0000 mgr.smithi050.baqqjh (mgr.14203) 204 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:55.428501+0000 mon.smithi050 (mon.0) 752 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:55.428501+0000 mon.smithi050 (mon.0) 752 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:55.429681+0000 mon.smithi050 (mon.0) 753 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:25:56.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:55.429681+0000 mon.smithi050 (mon.0) 753 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:25:56.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:55.436153+0000 mon.smithi050 (mon.0) 754 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:55.436153+0000 mon.smithi050 (mon.0) 754 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:25:56.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:55.440205+0000 mon.smithi050 (mon.0) 755 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:25:56.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:55 smithi050 bash[19920]: audit 2024-09-21T17:25:55.440205+0000 mon.smithi050 (mon.0) 755 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:25:56.351 INFO:teuthology.orchestra.run.smithi050.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-21T17:25:56.351 INFO:teuthology.orchestra.run.smithi050.stdout:alertmanager.smithi050 smithi050 *:9093,9094 running (3m) 1s ago 5m 13.9M - 0.27.0 11f11916f8cd 655deda7ef6d 2024-09-21T17:25:56.351 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-exporter.smithi050 smithi050 *:9926 running (5m) 1s ago 5m 8848k - 19.3.0-5129-g0ecbb435 3fa9090ef91d 3529e9840264 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-exporter.smithi170 smithi170 *:9926 running (4m) 2s ago 4m 6104k - 19.3.0-5129-g0ecbb435 3fa9090ef91d fde7507812b5 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:crash.smithi050 smithi050 running (5m) 1s ago 5m 7247k - 19.3.0-5129-g0ecbb435 3fa9090ef91d 38b4edac6df9 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:crash.smithi170 smithi170 running (4m) 2s ago 4m 7212k - 19.3.0-5129-g0ecbb435 3fa9090ef91d 2f3410473c71 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:grafana.smithi050 smithi050 *:3000 running (3m) 1s ago 5m 69.7M - 10.4.8 5aad1d7cf004 21eef8c7e0d7 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:mgr.smithi050.baqqjh smithi050 *:9283,8765,8443 running (7m) 1s ago 7m 500M - 19.3.0-5129-g0ecbb435 3fa9090ef91d 23c3ae50f8d4 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:mgr.smithi170.lejafv smithi170 *:8443,9283,8765 running (4m) 2s ago 4m 440M - 19.3.0-5129-g0ecbb435 3fa9090ef91d eec43dfd6c72 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:mon.smithi050 smithi050 running (7m) 1s ago 7m 49.8M 2048M 19.3.0-5129-g0ecbb435 3fa9090ef91d 3078833f1ffa 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:mon.smithi170 smithi170 running (4m) 2s ago 4m 41.5M 2048M 19.3.0-5129-g0ecbb435 3fa9090ef91d c50df59aa4c3 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:node-exporter.smithi050 smithi050 *:9100 running (5m) 1s ago 5m 8416k - 1.7.0 72c9c2088986 6bb87ddec53d 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:node-exporter.smithi170 smithi170 *:9100 running (4m) 2s ago 4m 8435k - 1.7.0 72c9c2088986 a81eb40645bd 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:osd.0 smithi170 running (2m) 2s ago 2m 45.7M 3772M 19.3.0-5129-g0ecbb435 3fa9090ef91d c076392ff95d 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:osd.1 smithi050 running (2m) 1s ago 2m 40.5M 3005M 19.3.0-5129-g0ecbb435 3fa9090ef91d baf5370d88a8 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:osd.2 smithi170 running (2m) 2s ago 2m 42.9M 3772M 19.3.0-5129-g0ecbb435 3fa9090ef91d e456cfb1982c 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:osd.3 smithi050 running (2m) 1s ago 2m 38.7M 3005M 19.3.0-5129-g0ecbb435 3fa9090ef91d fcae7f14a25d 2024-09-21T17:25:56.352 INFO:teuthology.orchestra.run.smithi050.stdout:osd.4 smithi170 running (2m) 2s ago 2m 42.3M 3772M 19.3.0-5129-g0ecbb435 3fa9090ef91d 81a0a74d2630 2024-09-21T17:25:56.353 INFO:teuthology.orchestra.run.smithi050.stdout:osd.5 smithi050 running (2m) 1s ago 2m 36.1M 3005M 19.3.0-5129-g0ecbb435 3fa9090ef91d 1ad3ba82952d 2024-09-21T17:25:56.353 INFO:teuthology.orchestra.run.smithi050.stdout:osd.6 smithi170 running (2m) 2s ago 2m 41.4M 3772M 19.3.0-5129-g0ecbb435 3fa9090ef91d f844c0ed6e73 2024-09-21T17:25:56.353 INFO:teuthology.orchestra.run.smithi050.stdout:osd.7 smithi050 running (2m) 1s ago 2m 45.6M 3005M 19.3.0-5129-g0ecbb435 3fa9090ef91d 20ba12e04674 2024-09-21T17:25:56.353 INFO:teuthology.orchestra.run.smithi050.stdout:prometheus.smithi050 smithi050 *:9095 running (3m) 1s ago 4m 42.0M - 2.51.0 1d3b7f56885b 31be57be126b 2024-09-21T17:25:56.966 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ls' 2024-09-21T17:25:57.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:56 smithi170 bash[24572]: audit 2024-09-21T17:25:56.311890+0000 mgr.smithi050.baqqjh (mgr.14203) 205 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:25:57.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:56 smithi170 bash[24572]: audit 2024-09-21T17:25:56.311890+0000 mgr.smithi050.baqqjh (mgr.14203) 205 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:25:57.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:56 smithi050 bash[19920]: audit 2024-09-21T17:25:56.311890+0000 mgr.smithi050.baqqjh (mgr.14203) 205 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:25:57.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:56 smithi050 bash[19920]: audit 2024-09-21T17:25:56.311890+0000 mgr.smithi050.baqqjh (mgr.14203) 205 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:25:58.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:57 smithi170 bash[24572]: cluster 2024-09-21T17:25:57.148272+0000 mgr.smithi050.baqqjh (mgr.14203) 206 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:58.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:25:57 smithi170 bash[24572]: cluster 2024-09-21T17:25:57.148272+0000 mgr.smithi050.baqqjh (mgr.14203) 206 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:58.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:57 smithi050 bash[19920]: cluster 2024-09-21T17:25:57.148272+0000 mgr.smithi050.baqqjh (mgr.14203) 206 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:25:58.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:25:57 smithi050 bash[19920]: cluster 2024-09-21T17:25:57.148272+0000 mgr.smithi050.baqqjh (mgr.14203) 206 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:00.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:00 smithi050 bash[19920]: cluster 2024-09-21T17:25:59.148840+0000 mgr.smithi050.baqqjh (mgr.14203) 207 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:00.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:00 smithi050 bash[19920]: cluster 2024-09-21T17:25:59.148840+0000 mgr.smithi050.baqqjh (mgr.14203) 207 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:00.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:00 smithi170 bash[24572]: cluster 2024-09-21T17:25:59.148840+0000 mgr.smithi050.baqqjh (mgr.14203) 207 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:00.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:00 smithi170 bash[24572]: cluster 2024-09-21T17:25:59.148840+0000 mgr.smithi050.baqqjh (mgr.14203) 207 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:01.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:01 smithi050 bash[19920]: audit 2024-09-21T17:26:00.578969+0000 mon.smithi050 (mon.0) 756 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:01.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:01 smithi050 bash[19920]: audit 2024-09-21T17:26:00.578969+0000 mon.smithi050 (mon.0) 756 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:01.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:01 smithi170 bash[24572]: audit 2024-09-21T17:26:00.578969+0000 mon.smithi050 (mon.0) 756 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:01.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:01 smithi170 bash[24572]: audit 2024-09-21T17:26:00.578969+0000 mon.smithi050 (mon.0) 756 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:01.804 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:26:02.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:02 smithi050 bash[19920]: cluster 2024-09-21T17:26:01.149434+0000 mgr.smithi050.baqqjh (mgr.14203) 208 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:02.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:02 smithi050 bash[19920]: cluster 2024-09-21T17:26:01.149434+0000 mgr.smithi050.baqqjh (mgr.14203) 208 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:02.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:02 smithi170 bash[24572]: cluster 2024-09-21T17:26:01.149434+0000 mgr.smithi050.baqqjh (mgr.14203) 208 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:02.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:02 smithi170 bash[24572]: cluster 2024-09-21T17:26:01.149434+0000 mgr.smithi050.baqqjh (mgr.14203) 208 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:03.323 INFO:teuthology.orchestra.run.smithi050.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-21T17:26:03.323 INFO:teuthology.orchestra.run.smithi050.stdout:alertmanager ?:9093,9094 1/1 8s ago 6m count:1 2024-09-21T17:26:03.324 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-exporter ?:9926 2/2 9s ago 6m * 2024-09-21T17:26:03.324 INFO:teuthology.orchestra.run.smithi050.stdout:crash 2/2 9s ago 6m * 2024-09-21T17:26:03.324 INFO:teuthology.orchestra.run.smithi050.stdout:grafana ?:3000 1/1 8s ago 6m count:1 2024-09-21T17:26:03.324 INFO:teuthology.orchestra.run.smithi050.stdout:mgr 2/2 9s ago 6m count:2 2024-09-21T17:26:03.324 INFO:teuthology.orchestra.run.smithi050.stdout:mon 2/2 9s ago 5m smithi050:172.21.15.50=smithi050;smithi170:172.21.15.170=smithi170;count:2 2024-09-21T17:26:03.324 INFO:teuthology.orchestra.run.smithi050.stdout:node-exporter ?:9100 2/2 9s ago 6m * 2024-09-21T17:26:03.324 INFO:teuthology.orchestra.run.smithi050.stdout:osd.all-available-devices 8 9s ago 3m * 2024-09-21T17:26:03.324 INFO:teuthology.orchestra.run.smithi050.stdout:prometheus ?:9095 1/1 8s ago 6m count:1 2024-09-21T17:26:03.946 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch host ls' 2024-09-21T17:26:04.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:04 smithi050 bash[19920]: cluster 2024-09-21T17:26:03.149829+0000 mgr.smithi050.baqqjh (mgr.14203) 209 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:04.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:04 smithi050 bash[19920]: cluster 2024-09-21T17:26:03.149829+0000 mgr.smithi050.baqqjh (mgr.14203) 209 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:04.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:04 smithi050 bash[19920]: audit 2024-09-21T17:26:03.309011+0000 mgr.smithi050.baqqjh (mgr.14203) 210 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:04.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:04 smithi050 bash[19920]: audit 2024-09-21T17:26:03.309011+0000 mgr.smithi050.baqqjh (mgr.14203) 210 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:04.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:04 smithi170 bash[24572]: cluster 2024-09-21T17:26:03.149829+0000 mgr.smithi050.baqqjh (mgr.14203) 209 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:04.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:04 smithi170 bash[24572]: cluster 2024-09-21T17:26:03.149829+0000 mgr.smithi050.baqqjh (mgr.14203) 209 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:04.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:04 smithi170 bash[24572]: audit 2024-09-21T17:26:03.309011+0000 mgr.smithi050.baqqjh (mgr.14203) 210 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:04.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:04 smithi170 bash[24572]: audit 2024-09-21T17:26:03.309011+0000 mgr.smithi050.baqqjh (mgr.14203) 210 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:06.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:06 smithi050 bash[19920]: cluster 2024-09-21T17:26:05.150342+0000 mgr.smithi050.baqqjh (mgr.14203) 211 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:06.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:06 smithi050 bash[19920]: cluster 2024-09-21T17:26:05.150342+0000 mgr.smithi050.baqqjh (mgr.14203) 211 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:06.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:06 smithi170 bash[24572]: cluster 2024-09-21T17:26:05.150342+0000 mgr.smithi050.baqqjh (mgr.14203) 211 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:06.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:06 smithi170 bash[24572]: cluster 2024-09-21T17:26:05.150342+0000 mgr.smithi050.baqqjh (mgr.14203) 211 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:08.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:08 smithi050 bash[19920]: cluster 2024-09-21T17:26:07.150950+0000 mgr.smithi050.baqqjh (mgr.14203) 212 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:08.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:08 smithi050 bash[19920]: cluster 2024-09-21T17:26:07.150950+0000 mgr.smithi050.baqqjh (mgr.14203) 212 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:08.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:08 smithi170 bash[24572]: cluster 2024-09-21T17:26:07.150950+0000 mgr.smithi050.baqqjh (mgr.14203) 212 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:08.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:08 smithi170 bash[24572]: cluster 2024-09-21T17:26:07.150950+0000 mgr.smithi050.baqqjh (mgr.14203) 212 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:08.770 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:26:10.113 INFO:teuthology.orchestra.run.smithi050.stdout:HOST ADDR LABELS STATUS 2024-09-21T17:26:10.113 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 172.21.15.50 2024-09-21T17:26:10.114 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 172.21.15.170 2024-09-21T17:26:10.114 INFO:teuthology.orchestra.run.smithi050.stdout:2 hosts in cluster 2024-09-21T17:26:10.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:10 smithi050 bash[19920]: cluster 2024-09-21T17:26:09.151482+0000 mgr.smithi050.baqqjh (mgr.14203) 213 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:10.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:10 smithi050 bash[19920]: cluster 2024-09-21T17:26:09.151482+0000 mgr.smithi050.baqqjh (mgr.14203) 213 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:10.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:10 smithi170 bash[24572]: cluster 2024-09-21T17:26:09.151482+0000 mgr.smithi050.baqqjh (mgr.14203) 213 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:10.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:10 smithi170 bash[24572]: cluster 2024-09-21T17:26:09.151482+0000 mgr.smithi050.baqqjh (mgr.14203) 213 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:10.712 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch device ls' 2024-09-21T17:26:11.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:11 smithi050 bash[19920]: audit 2024-09-21T17:26:10.112177+0000 mgr.smithi050.baqqjh (mgr.14203) 214 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:11.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:11 smithi050 bash[19920]: audit 2024-09-21T17:26:10.112177+0000 mgr.smithi050.baqqjh (mgr.14203) 214 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:11.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:11 smithi170 bash[24572]: audit 2024-09-21T17:26:10.112177+0000 mgr.smithi050.baqqjh (mgr.14203) 214 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:11.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:11 smithi170 bash[24572]: audit 2024-09-21T17:26:10.112177+0000 mgr.smithi050.baqqjh (mgr.14203) 214 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:12.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:12 smithi170 bash[24572]: cluster 2024-09-21T17:26:11.152076+0000 mgr.smithi050.baqqjh (mgr.14203) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:12.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:12 smithi170 bash[24572]: cluster 2024-09-21T17:26:11.152076+0000 mgr.smithi050.baqqjh (mgr.14203) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:12.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:12 smithi050 bash[19920]: cluster 2024-09-21T17:26:11.152076+0000 mgr.smithi050.baqqjh (mgr.14203) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:12.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:12 smithi050 bash[19920]: cluster 2024-09-21T17:26:11.152076+0000 mgr.smithi050.baqqjh (mgr.14203) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:14.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:14 smithi170 bash[24572]: cluster 2024-09-21T17:26:13.152646+0000 mgr.smithi050.baqqjh (mgr.14203) 216 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:14.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:14 smithi170 bash[24572]: cluster 2024-09-21T17:26:13.152646+0000 mgr.smithi050.baqqjh (mgr.14203) 216 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:14.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:14 smithi050 bash[19920]: cluster 2024-09-21T17:26:13.152646+0000 mgr.smithi050.baqqjh (mgr.14203) 216 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:14.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:14 smithi050 bash[19920]: cluster 2024-09-21T17:26:13.152646+0000 mgr.smithi050.baqqjh (mgr.14203) 216 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:15.536 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:26:16.516 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:16 smithi050 bash[19920]: cluster 2024-09-21T17:26:15.153205+0000 mgr.smithi050.baqqjh (mgr.14203) 217 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:16.516 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:16 smithi050 bash[19920]: cluster 2024-09-21T17:26:15.153205+0000 mgr.smithi050.baqqjh (mgr.14203) 217 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:16.516 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:16 smithi050 bash[19920]: audit 2024-09-21T17:26:15.579401+0000 mon.smithi050 (mon.0) 757 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:16.517 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:16 smithi050 bash[19920]: audit 2024-09-21T17:26:15.579401+0000 mon.smithi050 (mon.0) 757 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:16.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:16 smithi170 bash[24572]: cluster 2024-09-21T17:26:15.153205+0000 mgr.smithi050.baqqjh (mgr.14203) 217 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:16.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:16 smithi170 bash[24572]: cluster 2024-09-21T17:26:15.153205+0000 mgr.smithi050.baqqjh (mgr.14203) 217 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:16.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:16 smithi170 bash[24572]: audit 2024-09-21T17:26:15.579401+0000 mon.smithi050 (mon.0) 757 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:16.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:16 smithi170 bash[24572]: audit 2024-09-21T17:26:15.579401+0000 mon.smithi050 (mon.0) 757 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:16.844 INFO:teuthology.orchestra.run.smithi050.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513001F480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme1n1 ssd Linux_22529d1c3b616a045ef3 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme2n1 ssd Linux_16d4952100dbf8308b2e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme3n1 ssd Linux_90eaf7d672274c059129 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme4n1 ssd Linux_394de47363a49daa9827 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7476002R480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme1n1 ssd Linux_b38d836397281e448f07 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme2n1 ssd Linux_58cf1920b46c49c0939e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme3n1 ssd Linux_378ab28caf8cdbeb7c75 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:16.869 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme4n1 ssd Linux_f05538e2fd38847ccb68 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:17.500 INFO:teuthology.run_tasks:Running task vip... 2024-09-21T17:26:17.513 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-21T17:26:17.513 INFO:tasks.vip:peername 172.21.15.50 2024-09-21T17:26:17.516 INFO:tasks.vip:172.21.15.50 in 172.21.0.0/20, pos 3889 2024-09-21T17:26:17.520 INFO:tasks.vip:smithi050.front.sepia.ceph.com static 10.0.15.50, vnet 10.0.0.0/16 2024-09-21T17:26:17.520 INFO:tasks.vip:VIPs are [IPv4Address('10.0.31.50')] 2024-09-21T17:26:17.520 DEBUG:teuthology.orchestra.run.smithi050:> sudo ip route ls 2024-09-21T17:26:17.534 INFO:teuthology.orchestra.run.smithi050.stdout:default via 172.21.15.254 dev ens1f0 2024-09-21T17:26:17.534 INFO:teuthology.orchestra.run.smithi050.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-21T17:26:17.534 INFO:teuthology.orchestra.run.smithi050.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.50 2024-09-21T17:26:17.536 INFO:tasks.vip:Configuring 10.0.15.50 on smithi050.front.sepia.ceph.com iface ens1f0... 2024-09-21T17:26:17.536 DEBUG:teuthology.orchestra.run.smithi050:> sudo ip addr add 10.0.15.50/16 dev ens1f0 2024-09-21T17:26:17.592 INFO:tasks.vip:peername 172.21.15.170 2024-09-21T17:26:17.595 INFO:tasks.vip:172.21.15.170 in 172.21.0.0/20, pos 4009 2024-09-21T17:26:17.599 INFO:tasks.vip:smithi170.front.sepia.ceph.com static 10.0.15.170, vnet 10.0.0.0/16 2024-09-21T17:26:17.599 DEBUG:teuthology.orchestra.run.smithi170:> sudo ip route ls 2024-09-21T17:26:17.613 INFO:teuthology.orchestra.run.smithi170.stdout:default via 172.21.15.254 dev enp3s0f1 2024-09-21T17:26:17.613 INFO:teuthology.orchestra.run.smithi170.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.170 metric 100 2024-09-21T17:26:17.613 INFO:teuthology.orchestra.run.smithi170.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.170 metric 100 2024-09-21T17:26:17.613 INFO:teuthology.orchestra.run.smithi170.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-21T17:26:17.614 INFO:teuthology.orchestra.run.smithi170.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.170 metric 100 2024-09-21T17:26:17.614 INFO:teuthology.orchestra.run.smithi170.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-09-21T17:26:17.614 INFO:teuthology.orchestra.run.smithi170.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-09-21T17:26:17.614 INFO:teuthology.orchestra.run.smithi170.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.170 metric 100 2024-09-21T17:26:17.614 INFO:tasks.vip:Configuring 10.0.15.170 on smithi170.front.sepia.ceph.com iface enp3s0f1... 2024-09-21T17:26:17.615 DEBUG:teuthology.orchestra.run.smithi170:> sudo ip addr add 10.0.15.170/16 dev enp3s0f1 2024-09-21T17:26:17.672 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T17:26:17.683 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:26:17.683 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch device ls --refresh' 2024-09-21T17:26:18.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:18 smithi170 bash[24572]: audit 2024-09-21T17:26:16.839601+0000 mgr.smithi050.baqqjh (mgr.14203) 218 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:18.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:18 smithi170 bash[24572]: audit 2024-09-21T17:26:16.839601+0000 mgr.smithi050.baqqjh (mgr.14203) 218 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:18.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:18 smithi170 bash[24572]: cluster 2024-09-21T17:26:17.153789+0000 mgr.smithi050.baqqjh (mgr.14203) 219 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:18.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:18 smithi170 bash[24572]: cluster 2024-09-21T17:26:17.153789+0000 mgr.smithi050.baqqjh (mgr.14203) 219 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:18.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:18 smithi050 bash[19920]: audit 2024-09-21T17:26:16.839601+0000 mgr.smithi050.baqqjh (mgr.14203) 218 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:18.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:18 smithi050 bash[19920]: audit 2024-09-21T17:26:16.839601+0000 mgr.smithi050.baqqjh (mgr.14203) 218 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:18.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:18 smithi050 bash[19920]: cluster 2024-09-21T17:26:17.153789+0000 mgr.smithi050.baqqjh (mgr.14203) 219 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:18.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:18 smithi050 bash[19920]: cluster 2024-09-21T17:26:17.153789+0000 mgr.smithi050.baqqjh (mgr.14203) 219 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:20.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:20 smithi170 bash[24572]: cluster 2024-09-21T17:26:19.154354+0000 mgr.smithi050.baqqjh (mgr.14203) 220 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:20.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:20 smithi170 bash[24572]: cluster 2024-09-21T17:26:19.154354+0000 mgr.smithi050.baqqjh (mgr.14203) 220 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:20.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:20 smithi050 bash[19920]: cluster 2024-09-21T17:26:19.154354+0000 mgr.smithi050.baqqjh (mgr.14203) 220 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:20.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:20 smithi050 bash[19920]: cluster 2024-09-21T17:26:19.154354+0000 mgr.smithi050.baqqjh (mgr.14203) 220 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:22.512 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:26:22.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:22 smithi170 bash[24572]: cluster 2024-09-21T17:26:21.154958+0000 mgr.smithi050.baqqjh (mgr.14203) 221 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:22.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:22 smithi170 bash[24572]: cluster 2024-09-21T17:26:21.154958+0000 mgr.smithi050.baqqjh (mgr.14203) 221 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:22.608 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:22 smithi050 bash[19920]: cluster 2024-09-21T17:26:21.154958+0000 mgr.smithi050.baqqjh (mgr.14203) 221 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:22.608 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:22 smithi050 bash[19920]: cluster 2024-09-21T17:26:21.154958+0000 mgr.smithi050.baqqjh (mgr.14203) 221 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:23.789 INFO:teuthology.orchestra.run.smithi050.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-21T17:26:23.789 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513001F480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T17:26:23.789 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme1n1 ssd Linux_22529d1c3b616a045ef3 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:23.789 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme2n1 ssd Linux_16d4952100dbf8308b2e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:23.789 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme3n1 ssd Linux_90eaf7d672274c059129 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:23.789 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme4n1 ssd Linux_394de47363a49daa9827 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:23.790 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7476002R480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T17:26:23.790 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme1n1 ssd Linux_b38d836397281e448f07 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:23.790 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme2n1 ssd Linux_58cf1920b46c49c0939e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:23.790 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme3n1 ssd Linux_378ab28caf8cdbeb7c75 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:23.790 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme4n1 ssd Linux_f05538e2fd38847ccb68 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:26:24.462 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-21T17:26:24.471 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:26:24.472 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-21T17:26:24.485 INFO:teuthology.orchestra.run.smithi050.stderr:+ systemctl stop nfs-server 2024-09-21T17:26:24.605 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:24 smithi050 bash[19920]: cluster 2024-09-21T17:26:23.155532+0000 mgr.smithi050.baqqjh (mgr.14203) 222 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:24.605 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:24 smithi050 bash[19920]: cluster 2024-09-21T17:26:23.155532+0000 mgr.smithi050.baqqjh (mgr.14203) 222 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:24.606 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:24 smithi050 bash[19920]: audit 2024-09-21T17:26:23.790028+0000 mon.smithi050 (mon.0) 758 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:26:24.606 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:24 smithi050 bash[19920]: audit 2024-09-21T17:26:23.790028+0000 mon.smithi050 (mon.0) 758 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:26:24.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:24 smithi170 bash[24572]: cluster 2024-09-21T17:26:23.155532+0000 mgr.smithi050.baqqjh (mgr.14203) 222 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:24.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:24 smithi170 bash[24572]: cluster 2024-09-21T17:26:23.155532+0000 mgr.smithi050.baqqjh (mgr.14203) 222 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:24.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:24 smithi170 bash[24572]: audit 2024-09-21T17:26:23.790028+0000 mon.smithi050 (mon.0) 758 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:26:24.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:24 smithi170 bash[24572]: audit 2024-09-21T17:26:23.790028+0000 mon.smithi050 (mon.0) 758 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:26:24.614 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi170.front.sepia.ceph.com 2024-09-21T17:26:24.615 DEBUG:teuthology.orchestra.run.smithi170:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-21T17:26:24.627 INFO:teuthology.orchestra.run.smithi170.stderr:+ systemctl stop nfs-server 2024-09-21T17:26:24.729 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T17:26:24.741 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:26:24.741 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-21T17:26:25.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:25 smithi170 bash[24572]: audit 2024-09-21T17:26:23.786239+0000 mgr.smithi050.baqqjh (mgr.14203) 223 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:25.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:25 smithi170 bash[24572]: audit 2024-09-21T17:26:23.786239+0000 mgr.smithi050.baqqjh (mgr.14203) 223 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:25.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:25 smithi050 bash[19920]: audit 2024-09-21T17:26:23.786239+0000 mgr.smithi050.baqqjh (mgr.14203) 223 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:25.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:25 smithi050 bash[19920]: audit 2024-09-21T17:26:23.786239+0000 mgr.smithi050.baqqjh (mgr.14203) 223 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:26.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:26 smithi170 bash[24572]: cluster 2024-09-21T17:26:25.156130+0000 mgr.smithi050.baqqjh (mgr.14203) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:26.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:26 smithi170 bash[24572]: cluster 2024-09-21T17:26:25.156130+0000 mgr.smithi050.baqqjh (mgr.14203) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:26.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:26 smithi050 bash[19920]: cluster 2024-09-21T17:26:25.156130+0000 mgr.smithi050.baqqjh (mgr.14203) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:26.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:26 smithi050 bash[19920]: cluster 2024-09-21T17:26:25.156130+0000 mgr.smithi050.baqqjh (mgr.14203) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:28.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:28 smithi170 bash[24572]: cluster 2024-09-21T17:26:27.156741+0000 mgr.smithi050.baqqjh (mgr.14203) 225 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:28.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:28 smithi170 bash[24572]: cluster 2024-09-21T17:26:27.156741+0000 mgr.smithi050.baqqjh (mgr.14203) 225 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:28.704 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:28 smithi050 bash[19920]: cluster 2024-09-21T17:26:27.156741+0000 mgr.smithi050.baqqjh (mgr.14203) 225 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:28.704 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:28 smithi050 bash[19920]: cluster 2024-09-21T17:26:27.156741+0000 mgr.smithi050.baqqjh (mgr.14203) 225 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:28.899 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:26:30.382 INFO:teuthology.orchestra.run.smithi050.stdout:Scheduled rgw.foorgw update... 2024-09-21T17:26:30.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: cluster 2024-09-21T17:26:29.157131+0000 mgr.smithi050.baqqjh (mgr.14203) 226 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:30.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: cluster 2024-09-21T17:26:29.157131+0000 mgr.smithi050.baqqjh (mgr.14203) 226 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:30.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.338115+0000 mon.smithi050 (mon.0) 759 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.338115+0000 mon.smithi050 (mon.0) 759 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.343314+0000 mon.smithi050 (mon.0) 760 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.343314+0000 mon.smithi050 (mon.0) 760 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.791187+0000 mon.smithi050 (mon.0) 761 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.791187+0000 mon.smithi050 (mon.0) 761 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.796296+0000 mon.smithi050 (mon.0) 762 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.796296+0000 mon.smithi050 (mon.0) 762 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.826504+0000 mon.smithi050 (mon.0) 763 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.826504+0000 mon.smithi050 (mon.0) 763 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.831808+0000 mon.smithi050 (mon.0) 764 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:29.831808+0000 mon.smithi050 (mon.0) 764 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:30.287546+0000 mon.smithi050 (mon.0) 765 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:30.287546+0000 mon.smithi050 (mon.0) 765 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:30.292617+0000 mon.smithi050 (mon.0) 766 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:30 smithi170 bash[24572]: audit 2024-09-21T17:26:30.292617+0000 mon.smithi050 (mon.0) 766 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: cluster 2024-09-21T17:26:29.157131+0000 mgr.smithi050.baqqjh (mgr.14203) 226 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:30.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: cluster 2024-09-21T17:26:29.157131+0000 mgr.smithi050.baqqjh (mgr.14203) 226 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:30.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.338115+0000 mon.smithi050 (mon.0) 759 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.338115+0000 mon.smithi050 (mon.0) 759 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.343314+0000 mon.smithi050 (mon.0) 760 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.343314+0000 mon.smithi050 (mon.0) 760 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.791187+0000 mon.smithi050 (mon.0) 761 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.791187+0000 mon.smithi050 (mon.0) 761 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.796296+0000 mon.smithi050 (mon.0) 762 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.796296+0000 mon.smithi050 (mon.0) 762 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.826504+0000 mon.smithi050 (mon.0) 763 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.826504+0000 mon.smithi050 (mon.0) 763 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.831808+0000 mon.smithi050 (mon.0) 764 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:29.831808+0000 mon.smithi050 (mon.0) 764 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:30.287546+0000 mon.smithi050 (mon.0) 765 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:30.287546+0000 mon.smithi050 (mon.0) 765 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:30.292617+0000 mon.smithi050 (mon.0) 766 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:30.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:30 smithi050 bash[19920]: audit 2024-09-21T17:26:30.292617+0000 mon.smithi050 (mon.0) 766 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:31.069 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.50/16' 2024-09-21T17:26:31.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:31 smithi050 bash[19920]: audit 2024-09-21T17:26:30.374979+0000 mgr.smithi050.baqqjh (mgr.14203) 227 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:31 smithi050 bash[19920]: audit 2024-09-21T17:26:30.374979+0000 mgr.smithi050.baqqjh (mgr.14203) 227 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:31 smithi050 bash[19920]: cephadm 2024-09-21T17:26:30.376312+0000 mgr.smithi050.baqqjh (mgr.14203) 228 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T17:26:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:31 smithi050 bash[19920]: cephadm 2024-09-21T17:26:30.376312+0000 mgr.smithi050.baqqjh (mgr.14203) 228 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T17:26:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:31 smithi050 bash[19920]: audit 2024-09-21T17:26:30.382494+0000 mon.smithi050 (mon.0) 767 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:31 smithi050 bash[19920]: audit 2024-09-21T17:26:30.382494+0000 mon.smithi050 (mon.0) 767 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:31 smithi050 bash[19920]: audit 2024-09-21T17:26:30.579706+0000 mon.smithi050 (mon.0) 768 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:31.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:31 smithi050 bash[19920]: audit 2024-09-21T17:26:30.579706+0000 mon.smithi050 (mon.0) 768 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:31.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:31 smithi170 bash[24572]: audit 2024-09-21T17:26:30.374979+0000 mgr.smithi050.baqqjh (mgr.14203) 227 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:31.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:31 smithi170 bash[24572]: audit 2024-09-21T17:26:30.374979+0000 mgr.smithi050.baqqjh (mgr.14203) 227 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:31.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:31 smithi170 bash[24572]: cephadm 2024-09-21T17:26:30.376312+0000 mgr.smithi050.baqqjh (mgr.14203) 228 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T17:26:31.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:31 smithi170 bash[24572]: cephadm 2024-09-21T17:26:30.376312+0000 mgr.smithi050.baqqjh (mgr.14203) 228 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T17:26:31.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:31 smithi170 bash[24572]: audit 2024-09-21T17:26:30.382494+0000 mon.smithi050 (mon.0) 767 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:31.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:31 smithi170 bash[24572]: audit 2024-09-21T17:26:30.382494+0000 mon.smithi050 (mon.0) 767 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:31.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:31 smithi170 bash[24572]: audit 2024-09-21T17:26:30.579706+0000 mon.smithi050 (mon.0) 768 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:31.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:31 smithi170 bash[24572]: audit 2024-09-21T17:26:30.579706+0000 mon.smithi050 (mon.0) 768 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:32.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:32 smithi170 bash[24572]: cluster 2024-09-21T17:26:31.157652+0000 mgr.smithi050.baqqjh (mgr.14203) 229 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:32.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:32 smithi170 bash[24572]: cluster 2024-09-21T17:26:31.157652+0000 mgr.smithi050.baqqjh (mgr.14203) 229 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:32.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:32 smithi050 bash[19920]: cluster 2024-09-21T17:26:31.157652+0000 mgr.smithi050.baqqjh (mgr.14203) 229 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:32.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:32 smithi050 bash[19920]: cluster 2024-09-21T17:26:31.157652+0000 mgr.smithi050.baqqjh (mgr.14203) 229 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:34 smithi050 bash[19920]: cluster 2024-09-21T17:26:33.158252+0000 mgr.smithi050.baqqjh (mgr.14203) 230 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:34 smithi050 bash[19920]: cluster 2024-09-21T17:26:33.158252+0000 mgr.smithi050.baqqjh (mgr.14203) 230 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:34 smithi170 bash[24572]: cluster 2024-09-21T17:26:33.158252+0000 mgr.smithi050.baqqjh (mgr.14203) 230 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:34 smithi170 bash[24572]: cluster 2024-09-21T17:26:33.158252+0000 mgr.smithi050.baqqjh (mgr.14203) 230 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:35.383 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:26:36.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:36 smithi170 bash[24572]: cluster 2024-09-21T17:26:35.158861+0000 mgr.smithi050.baqqjh (mgr.14203) 231 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:36.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:36 smithi170 bash[24572]: cluster 2024-09-21T17:26:35.158861+0000 mgr.smithi050.baqqjh (mgr.14203) 231 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:36.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:36 smithi050 bash[19920]: cluster 2024-09-21T17:26:35.158861+0000 mgr.smithi050.baqqjh (mgr.14203) 231 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:36.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:36 smithi050 bash[19920]: cluster 2024-09-21T17:26:35.158861+0000 mgr.smithi050.baqqjh (mgr.14203) 231 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:37.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:37 smithi050 bash[19920]: audit 2024-09-21T17:26:37.245698+0000 mon.smithi050 (mon.0) 769 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-21T17:26:37.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:37 smithi050 bash[19920]: audit 2024-09-21T17:26:37.245698+0000 mon.smithi050 (mon.0) 769 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-21T17:26:37.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:37 smithi170 bash[24572]: audit 2024-09-21T17:26:37.245698+0000 mon.smithi050 (mon.0) 769 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-21T17:26:37.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:37 smithi170 bash[24572]: audit 2024-09-21T17:26:37.245698+0000 mon.smithi050 (mon.0) 769 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-21T17:26:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: cluster 2024-09-21T17:26:37.159396+0000 mgr.smithi050.baqqjh (mgr.14203) 232 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: cluster 2024-09-21T17:26:37.159396+0000 mgr.smithi050.baqqjh (mgr.14203) 232 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: audit 2024-09-21T17:26:37.244168+0000 mgr.smithi050.baqqjh (mgr.14203) 233 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.50/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: audit 2024-09-21T17:26:37.244168+0000 mgr.smithi050.baqqjh (mgr.14203) 233 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.50/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: audit 2024-09-21T17:26:37.421316+0000 mon.smithi050 (mon.0) 770 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-21T17:26:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: audit 2024-09-21T17:26:37.421316+0000 mon.smithi050 (mon.0) 770 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-21T17:26:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: cluster 2024-09-21T17:26:37.425957+0000 mon.smithi050 (mon.0) 771 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-21T17:26:38.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: cluster 2024-09-21T17:26:37.425957+0000 mon.smithi050 (mon.0) 771 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-21T17:26:38.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: audit 2024-09-21T17:26:37.428543+0000 mon.smithi050 (mon.0) 772 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-21T17:26:38.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:38 smithi050 bash[19920]: audit 2024-09-21T17:26:37.428543+0000 mon.smithi050 (mon.0) 772 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-21T17:26:38.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: cluster 2024-09-21T17:26:37.159396+0000 mgr.smithi050.baqqjh (mgr.14203) 232 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:38.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: cluster 2024-09-21T17:26:37.159396+0000 mgr.smithi050.baqqjh (mgr.14203) 232 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:38.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: audit 2024-09-21T17:26:37.244168+0000 mgr.smithi050.baqqjh (mgr.14203) 233 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.50/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:38.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: audit 2024-09-21T17:26:37.244168+0000 mgr.smithi050.baqqjh (mgr.14203) 233 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.50/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:26:38.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: audit 2024-09-21T17:26:37.421316+0000 mon.smithi050 (mon.0) 770 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-21T17:26:38.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: audit 2024-09-21T17:26:37.421316+0000 mon.smithi050 (mon.0) 770 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-21T17:26:38.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: cluster 2024-09-21T17:26:37.425957+0000 mon.smithi050 (mon.0) 771 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-21T17:26:38.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: cluster 2024-09-21T17:26:37.425957+0000 mon.smithi050 (mon.0) 771 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-21T17:26:38.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: audit 2024-09-21T17:26:37.428543+0000 mon.smithi050 (mon.0) 772 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-21T17:26:38.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:38 smithi170 bash[24572]: audit 2024-09-21T17:26:37.428543+0000 mon.smithi050 (mon.0) 772 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-21T17:26:39.351 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-21T17:26:39.360 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:26:39.361 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-21T17:26:39.371 INFO:teuthology.orchestra.run.smithi050.stderr:+ dnf install -y python3-boto3 2024-09-21T17:26:39.372 INFO:teuthology.orchestra.run.smithi050.stderr:bash: line 1: dnf: command not found 2024-09-21T17:26:39.372 INFO:teuthology.orchestra.run.smithi050.stderr:+ apt install -y python3-boto3 2024-09-21T17:26:39.375 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-21T17:26:39.375 INFO:teuthology.orchestra.run.smithi050.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-09-21T17:26:39.375 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-21T17:26:39.418 INFO:teuthology.orchestra.run.smithi050.stdout:Reading package lists... 2024-09-21T17:26:39.640 INFO:teuthology.orchestra.run.smithi050.stdout:Building dependency tree... 2024-09-21T17:26:39.640 INFO:teuthology.orchestra.run.smithi050.stdout:Reading state information... 2024-09-21T17:26:39.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: audit 2024-09-21T17:26:38.424082+0000 mon.smithi050 (mon.0) 773 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: audit 2024-09-21T17:26:38.424082+0000 mon.smithi050 (mon.0) 773 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: cluster 2024-09-21T17:26:38.431486+0000 mon.smithi050 (mon.0) 774 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: cluster 2024-09-21T17:26:38.431486+0000 mon.smithi050 (mon.0) 774 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: cephadm 2024-09-21T17:26:38.471891+0000 mgr.smithi050.baqqjh (mgr.14203) 234 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: cephadm 2024-09-21T17:26:38.471891+0000 mgr.smithi050.baqqjh (mgr.14203) 234 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: audit 2024-09-21T17:26:38.475781+0000 mon.smithi050 (mon.0) 775 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: audit 2024-09-21T17:26:38.475781+0000 mon.smithi050 (mon.0) 775 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: cephadm 2024-09-21T17:26:38.477868+0000 mgr.smithi050.baqqjh (mgr.14203) 235 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: cephadm 2024-09-21T17:26:38.477868+0000 mgr.smithi050.baqqjh (mgr.14203) 235 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: audit 2024-09-21T17:26:38.480860+0000 mon.smithi050 (mon.0) 776 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:39.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:39 smithi050 bash[19920]: audit 2024-09-21T17:26:38.480860+0000 mon.smithi050 (mon.0) 776 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: audit 2024-09-21T17:26:38.424082+0000 mon.smithi050 (mon.0) 773 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: audit 2024-09-21T17:26:38.424082+0000 mon.smithi050 (mon.0) 773 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: cluster 2024-09-21T17:26:38.431486+0000 mon.smithi050 (mon.0) 774 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: cluster 2024-09-21T17:26:38.431486+0000 mon.smithi050 (mon.0) 774 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: cephadm 2024-09-21T17:26:38.471891+0000 mgr.smithi050.baqqjh (mgr.14203) 234 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: cephadm 2024-09-21T17:26:38.471891+0000 mgr.smithi050.baqqjh (mgr.14203) 234 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: audit 2024-09-21T17:26:38.475781+0000 mon.smithi050 (mon.0) 775 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: audit 2024-09-21T17:26:38.475781+0000 mon.smithi050 (mon.0) 775 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: cephadm 2024-09-21T17:26:38.477868+0000 mgr.smithi050.baqqjh (mgr.14203) 235 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: cephadm 2024-09-21T17:26:38.477868+0000 mgr.smithi050.baqqjh (mgr.14203) 235 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-21T17:26:39.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: audit 2024-09-21T17:26:38.480860+0000 mon.smithi050 (mon.0) 776 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:39.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:39 smithi170 bash[24572]: audit 2024-09-21T17:26:38.480860+0000 mon.smithi050 (mon.0) 776 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:39.882 INFO:teuthology.orchestra.run.smithi050.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T17:26:39.882 INFO:teuthology.orchestra.run.smithi050.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T17:26:39.882 INFO:teuthology.orchestra.run.smithi050.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T17:26:39.883 INFO:teuthology.orchestra.run.smithi050.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T17:26:39.883 INFO:teuthology.orchestra.run.smithi050.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-21T17:26:39.883 INFO:teuthology.orchestra.run.smithi050.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-21T17:26:39.883 INFO:teuthology.orchestra.run.smithi050.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T17:26:39.886 INFO:teuthology.orchestra.run.smithi050.stdout:The following additional packages will be installed: 2024-09-21T17:26:39.886 INFO:teuthology.orchestra.run.smithi050.stdout: python3-botocore python3-certifi python3-idna python3-jmespath 2024-09-21T17:26:39.886 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests python3-s3transfer python3-urllib3 2024-09-21T17:26:39.887 INFO:teuthology.orchestra.run.smithi050.stdout:Suggested packages: 2024-09-21T17:26:39.887 INFO:teuthology.orchestra.run.smithi050.stdout: python3-openssl python3-socks python-requests-doc 2024-09-21T17:26:39.917 INFO:teuthology.orchestra.run.smithi050.stdout:The following NEW packages will be installed: 2024-09-21T17:26:39.917 INFO:teuthology.orchestra.run.smithi050.stdout: python3-boto3 python3-botocore python3-certifi python3-idna python3-jmespath 2024-09-21T17:26:39.917 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests python3-s3transfer python3-urllib3 2024-09-21T17:26:39.988 INFO:teuthology.orchestra.run.smithi050.stdout:0 upgraded, 8 newly installed, 0 to remove and 332 not upgraded. 2024-09-21T17:26:39.988 INFO:teuthology.orchestra.run.smithi050.stdout:Need to get 4,999 kB of archives. 2024-09-21T17:26:39.988 INFO:teuthology.orchestra.run.smithi050.stdout:After this operation, 66.9 MB of additional disk space will be used. 2024-09-21T17:26:39.988 INFO:teuthology.orchestra.run.smithi050.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jmespath all 0.10.0-1 [21.7 kB] 2024-09-21T17:26:40.024 INFO:teuthology.orchestra.run.smithi050.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-21T17:26:40.060 INFO:teuthology.orchestra.run.smithi050.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-21T17:26:40.082 INFO:teuthology.orchestra.run.smithi050.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-21T17:26:40.086 INFO:teuthology.orchestra.run.smithi050.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-21T17:26:40.090 INFO:teuthology.orchestra.run.smithi050.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-botocore all 1.23.34+repack-1 [4,508 kB] 2024-09-21T17:26:40.166 INFO:teuthology.orchestra.run.smithi050.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-s3transfer all 0.5.0-1 [51.5 kB] 2024-09-21T17:26:40.166 INFO:teuthology.orchestra.run.smithi050.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-boto3 all 1.20.34+dfsg-1 [68.0 kB] 2024-09-21T17:26:40.411 INFO:teuthology.orchestra.run.smithi050.stderr:debconf: unable to initialize frontend: Dialog 2024-09-21T17:26:40.411 INFO:teuthology.orchestra.run.smithi050.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-09-21T17:26:40.411 INFO:teuthology.orchestra.run.smithi050.stderr:debconf: falling back to frontend: Readline 2024-09-21T17:26:40.424 INFO:teuthology.orchestra.run.smithi050.stderr:debconf: unable to initialize frontend: Readline 2024-09-21T17:26:40.424 INFO:teuthology.orchestra.run.smithi050.stderr:debconf: (This frontend requires a controlling tty.) 2024-09-21T17:26:40.424 INFO:teuthology.orchestra.run.smithi050.stderr:debconf: falling back to frontend: Teletype 2024-09-21T17:26:40.427 INFO:teuthology.orchestra.run.smithi050.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-09-21T17:26:40.460 INFO:teuthology.orchestra.run.smithi050.stdout:Fetched 4,999 kB in 0s (20.7 MB/s) 2024-09-21T17:26:40.591 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-jmespath. 2024-09-21T17:26:40.650 INFO:teuthology.orchestra.run.smithi050.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 ... 165990 files and directories currently installed.) 2024-09-21T17:26:40.654 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../0-python3-jmespath_0.10.0-1_all.deb ... 2024-09-21T17:26:40.698 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-jmespath (0.10.0-1) ... 2024-09-21T17:26:40.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:40 smithi050 bash[19920]: cluster 2024-09-21T17:26:39.160035+0000 mgr.smithi050.baqqjh (mgr.14203) 236 : cluster [DBG] pgmap v193: 33 pgs: 24 unknown, 9 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:40.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:40 smithi050 bash[19920]: cluster 2024-09-21T17:26:39.160035+0000 mgr.smithi050.baqqjh (mgr.14203) 236 : cluster [DBG] pgmap v193: 33 pgs: 24 unknown, 9 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:40.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:40 smithi050 bash[19920]: cluster 2024-09-21T17:26:39.438189+0000 mon.smithi050 (mon.0) 777 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-21T17:26:40.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:40 smithi050 bash[19920]: cluster 2024-09-21T17:26:39.438189+0000 mon.smithi050 (mon.0) 777 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-21T17:26:40.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:40 smithi170 bash[24572]: cluster 2024-09-21T17:26:39.160035+0000 mgr.smithi050.baqqjh (mgr.14203) 236 : cluster [DBG] pgmap v193: 33 pgs: 24 unknown, 9 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:40.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:40 smithi170 bash[24572]: cluster 2024-09-21T17:26:39.160035+0000 mgr.smithi050.baqqjh (mgr.14203) 236 : cluster [DBG] pgmap v193: 33 pgs: 24 unknown, 9 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:26:40.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:40 smithi170 bash[24572]: cluster 2024-09-21T17:26:39.438189+0000 mon.smithi050 (mon.0) 777 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-21T17:26:40.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:40 smithi170 bash[24572]: cluster 2024-09-21T17:26:39.438189+0000 mon.smithi050 (mon.0) 777 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-21T17:26:40.952 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-urllib3. 2024-09-21T17:26:40.963 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../1-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-21T17:26:40.993 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-21T17:26:41.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:41 smithi170 bash[24572]: cluster 2024-09-21T17:26:40.492109+0000 mon.smithi050 (mon.0) 778 : cluster [DBG] mgrmap e21: smithi050.baqqjh(active, since 5m), standbys: smithi170.lejafv 2024-09-21T17:26:41.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:41 smithi170 bash[24572]: cluster 2024-09-21T17:26:40.492109+0000 mon.smithi050 (mon.0) 778 : cluster [DBG] mgrmap e21: smithi050.baqqjh(active, since 5m), standbys: smithi170.lejafv 2024-09-21T17:26:41.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:41 smithi170 bash[24572]: audit 2024-09-21T17:26:40.761393+0000 mon.smithi050 (mon.0) 779 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:41.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:41 smithi170 bash[24572]: audit 2024-09-21T17:26:40.761393+0000 mon.smithi050 (mon.0) 779 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:41.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:41 smithi170 bash[24572]: audit 2024-09-21T17:26:40.765950+0000 mon.smithi050 (mon.0) 780 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:41.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:41 smithi170 bash[24572]: audit 2024-09-21T17:26:40.765950+0000 mon.smithi050 (mon.0) 780 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:41.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:41 smithi050 bash[19920]: cluster 2024-09-21T17:26:40.492109+0000 mon.smithi050 (mon.0) 778 : cluster [DBG] mgrmap e21: smithi050.baqqjh(active, since 5m), standbys: smithi170.lejafv 2024-09-21T17:26:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:41 smithi050 bash[19920]: cluster 2024-09-21T17:26:40.492109+0000 mon.smithi050 (mon.0) 778 : cluster [DBG] mgrmap e21: smithi050.baqqjh(active, since 5m), standbys: smithi170.lejafv 2024-09-21T17:26:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:41 smithi050 bash[19920]: audit 2024-09-21T17:26:40.761393+0000 mon.smithi050 (mon.0) 779 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:41 smithi050 bash[19920]: audit 2024-09-21T17:26:40.761393+0000 mon.smithi050 (mon.0) 779 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:41 smithi050 bash[19920]: audit 2024-09-21T17:26:40.765950+0000 mon.smithi050 (mon.0) 780 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:41 smithi050 bash[19920]: audit 2024-09-21T17:26:40.765950+0000 mon.smithi050 (mon.0) 780 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:42.350 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-certifi. 2024-09-21T17:26:42.366 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../2-python3-certifi_2020.6.20-1_all.deb ... 2024-09-21T17:26:42.408 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-21T17:26:42.711 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-idna. 2024-09-21T17:26:42.735 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../3-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-21T17:26:42.769 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-21T17:26:43.090 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-requests. 2024-09-21T17:26:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: cluster 2024-09-21T17:26:41.160642+0000 mgr.smithi050.baqqjh (mgr.14203) 237 : cluster [DBG] pgmap v195: 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-21T17:26:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: cluster 2024-09-21T17:26:41.160642+0000 mgr.smithi050.baqqjh (mgr.14203) 237 : cluster [DBG] pgmap v195: 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-21T17:26:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.293626+0000 mon.smithi050 (mon.0) 781 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.293626+0000 mon.smithi050 (mon.0) 781 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.300677+0000 mon.smithi050 (mon.0) 782 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.300677+0000 mon.smithi050 (mon.0) 782 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.302144+0000 mon.smithi050 (mon.0) 783 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.302144+0000 mon.smithi050 (mon.0) 783 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.303346+0000 mon.smithi050 (mon.0) 784 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.303346+0000 mon.smithi050 (mon.0) 784 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.309933+0000 mon.smithi050 (mon.0) 785 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.309933+0000 mon.smithi050 (mon.0) 785 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.314258+0000 mon.smithi050 (mon.0) 786 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.314258+0000 mon.smithi050 (mon.0) 786 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.330733+0000 mon.smithi050 (mon.0) 787 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.bpqqqq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.330733+0000 mon.smithi050 (mon.0) 787 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.bpqqqq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.333867+0000 mon.smithi050 (mon.0) 788 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.bpqqqq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.333867+0000 mon.smithi050 (mon.0) 788 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.bpqqqq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:43.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.340577+0000 mon.smithi050 (mon.0) 789 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.340577+0000 mon.smithi050 (mon.0) 789 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.342896+0000 mon.smithi050 (mon.0) 790 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:43.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:42 smithi170 bash[24572]: audit 2024-09-21T17:26:42.342896+0000 mon.smithi050 (mon.0) 790 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:43.116 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../4-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-21T17:26:43.156 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-21T17:26:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: cluster 2024-09-21T17:26:41.160642+0000 mgr.smithi050.baqqjh (mgr.14203) 237 : cluster [DBG] pgmap v195: 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-21T17:26:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: cluster 2024-09-21T17:26:41.160642+0000 mgr.smithi050.baqqjh (mgr.14203) 237 : cluster [DBG] pgmap v195: 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-21T17:26:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.293626+0000 mon.smithi050 (mon.0) 781 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.293626+0000 mon.smithi050 (mon.0) 781 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.300677+0000 mon.smithi050 (mon.0) 782 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.300677+0000 mon.smithi050 (mon.0) 782 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.302144+0000 mon.smithi050 (mon.0) 783 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.302144+0000 mon.smithi050 (mon.0) 783 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.303346+0000 mon.smithi050 (mon.0) 784 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.303346+0000 mon.smithi050 (mon.0) 784 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.309933+0000 mon.smithi050 (mon.0) 785 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.309933+0000 mon.smithi050 (mon.0) 785 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.314258+0000 mon.smithi050 (mon.0) 786 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.314258+0000 mon.smithi050 (mon.0) 786 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.330733+0000 mon.smithi050 (mon.0) 787 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.bpqqqq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.330733+0000 mon.smithi050 (mon.0) 787 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.bpqqqq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.333867+0000 mon.smithi050 (mon.0) 788 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.bpqqqq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.333867+0000 mon.smithi050 (mon.0) 788 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi170.bpqqqq", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.340577+0000 mon.smithi050 (mon.0) 789 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.340577+0000 mon.smithi050 (mon.0) 789 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.342896+0000 mon.smithi050 (mon.0) 790 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:43.234 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:42 smithi050 bash[19920]: audit 2024-09-21T17:26:42.342896+0000 mon.smithi050 (mon.0) 790 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:43.459 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-botocore. 2024-09-21T17:26:43.486 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../5-python3-botocore_1.23.34+repack-1_all.deb ... 2024-09-21T17:26:43.526 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-botocore (1.23.34+repack-1) ... 2024-09-21T17:26:44.087 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:43 smithi170 bash[24572]: cephadm 2024-09-21T17:26:42.344496+0000 mgr.smithi050.baqqjh (mgr.14203) 238 : cephadm [INF] Deploying daemon rgw.foorgw.smithi170.bpqqqq on smithi170 2024-09-21T17:26:44.088 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:43 smithi170 bash[24572]: cephadm 2024-09-21T17:26:42.344496+0000 mgr.smithi050.baqqjh (mgr.14203) 238 : cephadm [INF] Deploying daemon rgw.foorgw.smithi170.bpqqqq on smithi170 2024-09-21T17:26:44.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:43 smithi050 bash[19920]: cephadm 2024-09-21T17:26:42.344496+0000 mgr.smithi050.baqqjh (mgr.14203) 238 : cephadm [INF] Deploying daemon rgw.foorgw.smithi170.bpqqqq on smithi170 2024-09-21T17:26:44.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:43 smithi050 bash[19920]: cephadm 2024-09-21T17:26:42.344496+0000 mgr.smithi050.baqqjh (mgr.14203) 238 : cephadm [INF] Deploying daemon rgw.foorgw.smithi170.bpqqqq on smithi170 2024-09-21T17:26:44.804 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-s3transfer. 2024-09-21T17:26:44.821 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../6-python3-s3transfer_0.5.0-1_all.deb ... 2024-09-21T17:26:44.854 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-s3transfer (0.5.0-1) ... 2024-09-21T17:26:45.025 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:44 smithi170 bash[24572]: cluster 2024-09-21T17:26:43.161239+0000 mgr.smithi050.baqqjh (mgr.14203) 239 : cluster [DBG] pgmap v196: 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-21T17:26:45.025 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:44 smithi170 bash[24572]: cluster 2024-09-21T17:26:43.161239+0000 mgr.smithi050.baqqjh (mgr.14203) 239 : cluster [DBG] pgmap v196: 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-21T17:26:45.025 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:44 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:26:45.157 INFO:teuthology.orchestra.run.smithi050.stdout:Selecting previously unselected package python3-boto3. 2024-09-21T17:26:45.174 INFO:teuthology.orchestra.run.smithi050.stdout:Preparing to unpack .../7-python3-boto3_1.20.34+dfsg-1_all.deb ... 2024-09-21T17:26:45.215 INFO:teuthology.orchestra.run.smithi050.stdout:Unpacking python3-boto3 (1.20.34+dfsg-1) ... 2024-09-21T17:26:45.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:44 smithi050 bash[19920]: cluster 2024-09-21T17:26:43.161239+0000 mgr.smithi050.baqqjh (mgr.14203) 239 : cluster [DBG] pgmap v196: 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-21T17:26:45.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:44 smithi050 bash[19920]: cluster 2024-09-21T17:26:43.161239+0000 mgr.smithi050.baqqjh (mgr.14203) 239 : cluster [DBG] pgmap v196: 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-21T17:26:45.280 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:45 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:26:45.542 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-21T17:26:45.780 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-jmespath (0.10.0-1) ... 2024-09-21T17:26:46.551 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-21T17:26:46.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: cluster 2024-09-21T17:26:45.161958+0000 mgr.smithi050.baqqjh (mgr.14203) 240 : 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-21T17:26:46.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: cluster 2024-09-21T17:26:45.161958+0000 mgr.smithi050.baqqjh (mgr.14203) 240 : 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-21T17:26:46.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.328672+0000 mon.smithi050 (mon.0) 791 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.328672+0000 mon.smithi050 (mon.0) 791 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.337477+0000 mon.smithi050 (mon.0) 792 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.337477+0000 mon.smithi050 (mon.0) 792 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.344494+0000 mon.smithi050 (mon.0) 793 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.344494+0000 mon.smithi050 (mon.0) 793 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.345645+0000 mon.smithi050 (mon.0) 794 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.bgrjhn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.345645+0000 mon.smithi050 (mon.0) 794 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.bgrjhn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.348090+0000 mon.smithi050 (mon.0) 795 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.bgrjhn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.348090+0000 mon.smithi050 (mon.0) 795 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.bgrjhn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.357692+0000 mon.smithi050 (mon.0) 796 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.357692+0000 mon.smithi050 (mon.0) 796 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.361325+0000 mon.smithi050 (mon.0) 797 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:46.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.361325+0000 mon.smithi050 (mon.0) 797 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:46.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: cephadm 2024-09-21T17:26:45.362952+0000 mgr.smithi050.baqqjh (mgr.14203) 241 : cephadm [INF] Deploying daemon rgw.foorgw.smithi050.bgrjhn on smithi050 2024-09-21T17:26:46.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: cephadm 2024-09-21T17:26:45.362952+0000 mgr.smithi050.baqqjh (mgr.14203) 241 : cephadm [INF] Deploying daemon rgw.foorgw.smithi050.bgrjhn on smithi050 2024-09-21T17:26:46.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.579902+0000 mon.smithi050 (mon.0) 798 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:46.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:46 smithi170 bash[24572]: audit 2024-09-21T17:26:45.579902+0000 mon.smithi050 (mon.0) 798 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: cluster 2024-09-21T17:26:45.161958+0000 mgr.smithi050.baqqjh (mgr.14203) 240 : 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-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: cluster 2024-09-21T17:26:45.161958+0000 mgr.smithi050.baqqjh (mgr.14203) 240 : 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-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.328672+0000 mon.smithi050 (mon.0) 791 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.328672+0000 mon.smithi050 (mon.0) 791 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.337477+0000 mon.smithi050 (mon.0) 792 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.337477+0000 mon.smithi050 (mon.0) 792 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.344494+0000 mon.smithi050 (mon.0) 793 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.344494+0000 mon.smithi050 (mon.0) 793 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.345645+0000 mon.smithi050 (mon.0) 794 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.bgrjhn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.345645+0000 mon.smithi050 (mon.0) 794 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.bgrjhn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.348090+0000 mon.smithi050 (mon.0) 795 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.bgrjhn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:46.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.348090+0000 mon.smithi050 (mon.0) 795 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi050.bgrjhn", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.357692+0000 mon.smithi050 (mon.0) 796 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.357692+0000 mon.smithi050 (mon.0) 796 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.361325+0000 mon.smithi050 (mon.0) 797 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.361325+0000 mon.smithi050 (mon.0) 797 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: cephadm 2024-09-21T17:26:45.362952+0000 mgr.smithi050.baqqjh (mgr.14203) 241 : cephadm [INF] Deploying daemon rgw.foorgw.smithi050.bgrjhn on smithi050 2024-09-21T17:26:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: cephadm 2024-09-21T17:26:45.362952+0000 mgr.smithi050.baqqjh (mgr.14203) 241 : cephadm [INF] Deploying daemon rgw.foorgw.smithi050.bgrjhn on smithi050 2024-09-21T17:26:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.579902+0000 mon.smithi050 (mon.0) 798 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:46.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:46 smithi050 bash[19920]: audit 2024-09-21T17:26:45.579902+0000 mon.smithi050 (mon.0) 798 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:26:47.247 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-21T17:26:47.600 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-21T17:26:48.092 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-botocore (1.23.34+repack-1) ... 2024-09-21T17:26:48.602 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 bash[19920]: cluster 2024-09-21T17:26:47.162665+0000 mgr.smithi050.baqqjh (mgr.14203) 242 : 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-21T17:26:48.602 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 bash[19920]: cluster 2024-09-21T17:26:47.162665+0000 mgr.smithi050.baqqjh (mgr.14203) 242 : 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-21T17:26:48.602 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 bash[19920]: cluster 2024-09-21T17:26:47.342240+0000 mon.smithi050 (mon.0) 799 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-21T17:26:48.602 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 bash[19920]: cluster 2024-09-21T17:26:47.342240+0000 mon.smithi050 (mon.0) 799 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-21T17:26:48.602 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 bash[19920]: audit 2024-09-21T17:26:47.348498+0000 mon.smithi170 (mon.1) 22 : audit [INF] from='client.? 172.21.15.170:0/4177950098' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T17:26:48.602 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 bash[19920]: audit 2024-09-21T17:26:47.348498+0000 mon.smithi170 (mon.1) 22 : audit [INF] from='client.? 172.21.15.170:0/4177950098' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T17:26:48.602 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 bash[19920]: audit 2024-09-21T17:26:47.349860+0000 mon.smithi050 (mon.0) 800 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T17:26:48.602 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 bash[19920]: audit 2024-09-21T17:26:47.349860+0000 mon.smithi050 (mon.0) 800 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T17:26:48.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:48 smithi170 bash[24572]: cluster 2024-09-21T17:26:47.162665+0000 mgr.smithi050.baqqjh (mgr.14203) 242 : 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-21T17:26:48.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:48 smithi170 bash[24572]: cluster 2024-09-21T17:26:47.162665+0000 mgr.smithi050.baqqjh (mgr.14203) 242 : 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-21T17:26:48.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:48 smithi170 bash[24572]: cluster 2024-09-21T17:26:47.342240+0000 mon.smithi050 (mon.0) 799 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-21T17:26:48.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:48 smithi170 bash[24572]: cluster 2024-09-21T17:26:47.342240+0000 mon.smithi050 (mon.0) 799 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-21T17:26:48.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:48 smithi170 bash[24572]: audit 2024-09-21T17:26:47.348498+0000 mon.smithi170 (mon.1) 22 : audit [INF] from='client.? 172.21.15.170:0/4177950098' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T17:26:48.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:48 smithi170 bash[24572]: audit 2024-09-21T17:26:47.348498+0000 mon.smithi170 (mon.1) 22 : audit [INF] from='client.? 172.21.15.170:0/4177950098' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T17:26:48.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:48 smithi170 bash[24572]: audit 2024-09-21T17:26:47.349860+0000 mon.smithi050 (mon.0) 800 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T17:26:48.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:48 smithi170 bash[24572]: audit 2024-09-21T17:26:47.349860+0000 mon.smithi050 (mon.0) 800 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T17:26:48.798 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-s3transfer (0.5.0-1) ... 2024-09-21T17:26:48.871 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:48 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:26:49.067 INFO:teuthology.orchestra.run.smithi050.stdout:Setting up python3-boto3 (1.20.34+dfsg-1) ... 2024-09-21T17:26:49.145 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:26:49.460 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:48.347347+0000 mon.smithi050 (mon.0) 801 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-21T17:26:49.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:48.347347+0000 mon.smithi050 (mon.0) 801 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-21T17:26:49.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:48.347347+0000 mon.smithi050 (mon.0) 801 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-21T17:26:49.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: cluster 2024-09-21T17:26:48.354039+0000 mon.smithi050 (mon.0) 802 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: cluster 2024-09-21T17:26:48.354039+0000 mon.smithi050 (mon.0) 802 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.196204+0000 mon.smithi050 (mon.0) 803 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.196204+0000 mon.smithi050 (mon.0) 803 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.203098+0000 mon.smithi050 (mon.0) 804 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.203098+0000 mon.smithi050 (mon.0) 804 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.207987+0000 mon.smithi050 (mon.0) 805 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.207987+0000 mon.smithi050 (mon.0) 805 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.212645+0000 mon.smithi050 (mon.0) 806 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.212645+0000 mon.smithi050 (mon.0) 806 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.217156+0000 mon.smithi050 (mon.0) 807 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.217156+0000 mon.smithi050 (mon.0) 807 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.221868+0000 mon.smithi050 (mon.0) 808 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.607 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.221868+0000 mon.smithi050 (mon.0) 808 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.222743+0000 mon.smithi050 (mon.0) 809 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.222743+0000 mon.smithi050 (mon.0) 809 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.224984+0000 mon.smithi050 (mon.0) 810 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.224984+0000 mon.smithi050 (mon.0) 810 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.227903+0000 mon.smithi050 (mon.0) 811 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.227903+0000 mon.smithi050 (mon.0) 811 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.229611+0000 mon.smithi050 (mon.0) 812 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.229611+0000 mon.smithi050 (mon.0) 812 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.232695+0000 mon.smithi050 (mon.0) 813 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.232695+0000 mon.smithi050 (mon.0) 813 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.282740+0000 mon.smithi050 (mon.0) 814 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.282740+0000 mon.smithi050 (mon.0) 814 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.284789+0000 mon.smithi050 (mon.0) 815 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-21T17:26:49.608 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:49 smithi170 bash[24572]: audit 2024-09-21T17:26:49.284789+0000 mon.smithi050 (mon.0) 815 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:48.347347+0000 mon.smithi050 (mon.0) 801 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: cluster 2024-09-21T17:26:48.354039+0000 mon.smithi050 (mon.0) 802 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: cluster 2024-09-21T17:26:48.354039+0000 mon.smithi050 (mon.0) 802 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.196204+0000 mon.smithi050 (mon.0) 803 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.196204+0000 mon.smithi050 (mon.0) 803 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.203098+0000 mon.smithi050 (mon.0) 804 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.203098+0000 mon.smithi050 (mon.0) 804 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.207987+0000 mon.smithi050 (mon.0) 805 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.207987+0000 mon.smithi050 (mon.0) 805 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.212645+0000 mon.smithi050 (mon.0) 806 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.212645+0000 mon.smithi050 (mon.0) 806 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.217156+0000 mon.smithi050 (mon.0) 807 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.217156+0000 mon.smithi050 (mon.0) 807 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.221868+0000 mon.smithi050 (mon.0) 808 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.221868+0000 mon.smithi050 (mon.0) 808 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.222743+0000 mon.smithi050 (mon.0) 809 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.222743+0000 mon.smithi050 (mon.0) 809 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.224984+0000 mon.smithi050 (mon.0) 810 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.224984+0000 mon.smithi050 (mon.0) 810 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.227903+0000 mon.smithi050 (mon.0) 811 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.227903+0000 mon.smithi050 (mon.0) 811 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.229611+0000 mon.smithi050 (mon.0) 812 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:26:49.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.229611+0000 mon.smithi050 (mon.0) 812 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 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-21T17:26:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.232695+0000 mon.smithi050 (mon.0) 813 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.232695+0000 mon.smithi050 (mon.0) 813 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.282740+0000 mon.smithi050 (mon.0) 814 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-21T17:26:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.282740+0000 mon.smithi050 (mon.0) 814 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-21T17:26:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.284789+0000 mon.smithi050 (mon.0) 815 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-21T17:26:49.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:49 smithi050 bash[19920]: audit 2024-09-21T17:26:49.284789+0000 mon.smithi050 (mon.0) 815 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-21T17:26:50.278 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:26:50.331 INFO:teuthology.orchestra.run.smithi050.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-21T17:26:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cluster 2024-09-21T17:26:49.163211+0000 mgr.smithi050.baqqjh (mgr.14203) 243 : cluster [DBG] pgmap v201: 65 pgs: 25 unknown, 40 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 127 B/s wr, 0 op/s 2024-09-21T17:26:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cluster 2024-09-21T17:26:49.163211+0000 mgr.smithi050.baqqjh (mgr.14203) 243 : cluster [DBG] pgmap v201: 65 pgs: 25 unknown, 40 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 127 B/s wr, 0 op/s 2024-09-21T17:26:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.208738+0000 mgr.smithi050.baqqjh (mgr.14203) 244 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T17:26:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.208738+0000 mgr.smithi050.baqqjh (mgr.14203) 244 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T17:26:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.222426+0000 mgr.smithi050.baqqjh (mgr.14203) 245 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi050.xogjcr 2024-09-21T17:26:50.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.222426+0000 mgr.smithi050.baqqjh (mgr.14203) 245 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi050.xogjcr 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.227585+0000 mgr.smithi050.baqqjh (mgr.14203) 246 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.227585+0000 mgr.smithi050.baqqjh (mgr.14203) 246 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.348231+0000 mgr.smithi050.baqqjh (mgr.14203) 247 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.348231+0000 mgr.smithi050.baqqjh (mgr.14203) 247 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.348400+0000 mgr.smithi050.baqqjh (mgr.14203) 248 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi050.xogjcr-rgw 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.348400+0000 mgr.smithi050.baqqjh (mgr.14203) 248 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi050.xogjcr-rgw 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.350999+0000 mon.smithi050 (mon.0) 816 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.350999+0000 mon.smithi050 (mon.0) 816 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cluster 2024-09-21T17:26:49.554313+0000 mon.smithi050 (mon.0) 817 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cluster 2024-09-21T17:26:49.554313+0000 mon.smithi050 (mon.0) 817 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.557700+0000 mon.smithi170 (mon.1) 23 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.557700+0000 mon.smithi170 (mon.1) 23 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T17:26:50.734 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.558932+0000 mon.smithi050 (mon.0) 818 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.558932+0000 mon.smithi050 (mon.0) 818 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.563117+0000 mgr.smithi050.baqqjh (mgr.14203) 249 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi050.xogjcr's ganesha conf is defaulting to empty 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.563117+0000 mgr.smithi050.baqqjh (mgr.14203) 249 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi050.xogjcr's ganesha conf is defaulting to empty 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.565074+0000 mon.smithi050 (mon.0) 819 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.565074+0000 mon.smithi050 (mon.0) 819 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.569523+0000 mon.smithi050 (mon.0) 820 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: audit 2024-09-21T17:26:49.569523+0000 mon.smithi050 (mon.0) 820 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.571163+0000 mgr.smithi050.baqqjh (mgr.14203) 250 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi050.xogjcr on smithi050 2024-09-21T17:26:50.735 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:50 smithi050 bash[19920]: cephadm 2024-09-21T17:26:49.571163+0000 mgr.smithi050.baqqjh (mgr.14203) 250 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi050.xogjcr on smithi050 2024-09-21T17:26:50.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cluster 2024-09-21T17:26:49.163211+0000 mgr.smithi050.baqqjh (mgr.14203) 243 : cluster [DBG] pgmap v201: 65 pgs: 25 unknown, 40 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 127 B/s wr, 0 op/s 2024-09-21T17:26:50.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cluster 2024-09-21T17:26:49.163211+0000 mgr.smithi050.baqqjh (mgr.14203) 243 : cluster [DBG] pgmap v201: 65 pgs: 25 unknown, 40 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 127 B/s wr, 0 op/s 2024-09-21T17:26:50.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.208738+0000 mgr.smithi050.baqqjh (mgr.14203) 244 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T17:26:50.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.208738+0000 mgr.smithi050.baqqjh (mgr.14203) 244 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.222426+0000 mgr.smithi050.baqqjh (mgr.14203) 245 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi050.xogjcr 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.222426+0000 mgr.smithi050.baqqjh (mgr.14203) 245 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi050.xogjcr 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.227585+0000 mgr.smithi050.baqqjh (mgr.14203) 246 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.227585+0000 mgr.smithi050.baqqjh (mgr.14203) 246 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.348231+0000 mgr.smithi050.baqqjh (mgr.14203) 247 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.348231+0000 mgr.smithi050.baqqjh (mgr.14203) 247 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.348400+0000 mgr.smithi050.baqqjh (mgr.14203) 248 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi050.xogjcr-rgw 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.348400+0000 mgr.smithi050.baqqjh (mgr.14203) 248 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi050.xogjcr-rgw 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.350999+0000 mon.smithi050 (mon.0) 816 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.350999+0000 mon.smithi050 (mon.0) 816 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cluster 2024-09-21T17:26:49.554313+0000 mon.smithi050 (mon.0) 817 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cluster 2024-09-21T17:26:49.554313+0000 mon.smithi050 (mon.0) 817 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.557700+0000 mon.smithi170 (mon.1) 23 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T17:26:50.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.557700+0000 mon.smithi170 (mon.1) 23 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.558932+0000 mon.smithi050 (mon.0) 818 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.558932+0000 mon.smithi050 (mon.0) 818 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.563117+0000 mgr.smithi050.baqqjh (mgr.14203) 249 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi050.xogjcr's ganesha conf is defaulting to empty 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.563117+0000 mgr.smithi050.baqqjh (mgr.14203) 249 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi050.xogjcr's ganesha conf is defaulting to empty 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.565074+0000 mon.smithi050 (mon.0) 819 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.565074+0000 mon.smithi050 (mon.0) 819 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.569523+0000 mon.smithi050 (mon.0) 820 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: audit 2024-09-21T17:26:49.569523+0000 mon.smithi050 (mon.0) 820 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.571163+0000 mgr.smithi050.baqqjh (mgr.14203) 250 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi050.xogjcr on smithi050 2024-09-21T17:26:50.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:50 smithi170 bash[24572]: cephadm 2024-09-21T17:26:49.571163+0000 mgr.smithi050.baqqjh (mgr.14203) 250 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi050.xogjcr on smithi050 2024-09-21T17:26:51.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:51 smithi050 bash[19920]: audit 2024-09-21T17:26:50.364895+0000 mon.smithi050 (mon.0) 821 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-21T17:26:51.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:51 smithi050 bash[19920]: audit 2024-09-21T17:26:50.364895+0000 mon.smithi050 (mon.0) 821 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-21T17:26:51.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:51 smithi050 bash[19920]: cluster 2024-09-21T17:26:50.368115+0000 mon.smithi050 (mon.0) 822 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-21T17:26:51.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:51 smithi050 bash[19920]: cluster 2024-09-21T17:26:50.368115+0000 mon.smithi050 (mon.0) 822 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-21T17:26:51.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:51 smithi050 bash[19920]: audit 2024-09-21T17:26:50.640654+0000 mon.smithi050 (mon.0) 823 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:51.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:51 smithi050 bash[19920]: audit 2024-09-21T17:26:50.640654+0000 mon.smithi050 (mon.0) 823 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:51.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:51 smithi170 bash[24572]: audit 2024-09-21T17:26:50.364895+0000 mon.smithi050 (mon.0) 821 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-21T17:26:51.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:51 smithi170 bash[24572]: audit 2024-09-21T17:26:50.364895+0000 mon.smithi050 (mon.0) 821 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-21T17:26:51.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:51 smithi170 bash[24572]: cluster 2024-09-21T17:26:50.368115+0000 mon.smithi050 (mon.0) 822 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-21T17:26:51.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:51 smithi170 bash[24572]: cluster 2024-09-21T17:26:50.368115+0000 mon.smithi050 (mon.0) 822 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-21T17:26:51.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:51 smithi170 bash[24572]: audit 2024-09-21T17:26:50.640654+0000 mon.smithi050 (mon.0) 823 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:51.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:51 smithi170 bash[24572]: audit 2024-09-21T17:26:50.640654+0000 mon.smithi050 (mon.0) 823 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:52.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:52 smithi170 bash[24572]: cluster 2024-09-21T17:26:51.164376+0000 mgr.smithi050.baqqjh (mgr.14203) 251 : cluster [DBG] pgmap v204: 97 pgs: 2 creating+activating, 9 creating+peering, 11 unknown, 75 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-09-21T17:26:52.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:52 smithi170 bash[24572]: cluster 2024-09-21T17:26:51.164376+0000 mgr.smithi050.baqqjh (mgr.14203) 251 : cluster [DBG] pgmap v204: 97 pgs: 2 creating+activating, 9 creating+peering, 11 unknown, 75 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-09-21T17:26:52.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:52 smithi170 bash[24572]: cluster 2024-09-21T17:26:51.381340+0000 mon.smithi050 (mon.0) 824 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-21T17:26:52.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:52 smithi170 bash[24572]: cluster 2024-09-21T17:26:51.381340+0000 mon.smithi050 (mon.0) 824 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-21T17:26:52.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:52 smithi170 bash[24572]: audit 2024-09-21T17:26:51.389777+0000 mon.smithi170 (mon.1) 24 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T17:26:52.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:52 smithi170 bash[24572]: audit 2024-09-21T17:26:51.389777+0000 mon.smithi170 (mon.1) 24 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T17:26:52.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:52 smithi170 bash[24572]: audit 2024-09-21T17:26:51.389921+0000 mon.smithi050 (mon.0) 825 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T17:26:52.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:52 smithi170 bash[24572]: audit 2024-09-21T17:26:51.389921+0000 mon.smithi050 (mon.0) 825 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T17:26:52.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:52 smithi050 bash[19920]: cluster 2024-09-21T17:26:51.164376+0000 mgr.smithi050.baqqjh (mgr.14203) 251 : cluster [DBG] pgmap v204: 97 pgs: 2 creating+activating, 9 creating+peering, 11 unknown, 75 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-09-21T17:26:52.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:52 smithi050 bash[19920]: cluster 2024-09-21T17:26:51.164376+0000 mgr.smithi050.baqqjh (mgr.14203) 251 : cluster [DBG] pgmap v204: 97 pgs: 2 creating+activating, 9 creating+peering, 11 unknown, 75 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 1.5 KiB/s wr, 3 op/s 2024-09-21T17:26:52.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:52 smithi050 bash[19920]: cluster 2024-09-21T17:26:51.381340+0000 mon.smithi050 (mon.0) 824 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-21T17:26:52.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:52 smithi050 bash[19920]: cluster 2024-09-21T17:26:51.381340+0000 mon.smithi050 (mon.0) 824 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-21T17:26:52.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:52 smithi050 bash[19920]: audit 2024-09-21T17:26:51.389777+0000 mon.smithi170 (mon.1) 24 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T17:26:52.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:52 smithi050 bash[19920]: audit 2024-09-21T17:26:51.389777+0000 mon.smithi170 (mon.1) 24 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T17:26:52.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:52 smithi050 bash[19920]: audit 2024-09-21T17:26:51.389921+0000 mon.smithi050 (mon.0) 825 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T17:26:52.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:52 smithi050 bash[19920]: audit 2024-09-21T17:26:51.389921+0000 mon.smithi050 (mon.0) 825 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T17:26:53.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:53 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:26:53.609 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:53 smithi050 bash[19920]: audit 2024-09-21T17:26:52.377665+0000 mon.smithi050 (mon.0) 826 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-21T17:26:53.610 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:53 smithi050 bash[19920]: audit 2024-09-21T17:26:52.377665+0000 mon.smithi050 (mon.0) 826 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-21T17:26:53.610 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:53 smithi050 bash[19920]: cluster 2024-09-21T17:26:52.381242+0000 mon.smithi050 (mon.0) 827 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-21T17:26:53.610 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:53 smithi050 bash[19920]: cluster 2024-09-21T17:26:52.381242+0000 mon.smithi050 (mon.0) 827 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-21T17:26:53.610 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:53 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:26:53.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:53 smithi170 bash[24572]: audit 2024-09-21T17:26:52.377665+0000 mon.smithi050 (mon.0) 826 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-21T17:26:53.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:53 smithi170 bash[24572]: audit 2024-09-21T17:26:52.377665+0000 mon.smithi050 (mon.0) 826 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-21T17:26:53.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:53 smithi170 bash[24572]: cluster 2024-09-21T17:26:52.381242+0000 mon.smithi050 (mon.0) 827 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-21T17:26:53.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:53 smithi170 bash[24572]: cluster 2024-09-21T17:26:52.381242+0000 mon.smithi050 (mon.0) 827 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-21T17:26:54.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: cluster 2024-09-21T17:26:53.165203+0000 mgr.smithi050.baqqjh (mgr.14203) 252 : cluster [DBG] pgmap v207: 129 pgs: 2 creating+activating, 9 creating+peering, 43 unknown, 75 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 1.2 KiB/s wr, 2 op/s 2024-09-21T17:26:54.482 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: cluster 2024-09-21T17:26:53.165203+0000 mgr.smithi050.baqqjh (mgr.14203) 252 : cluster [DBG] pgmap v207: 129 pgs: 2 creating+activating, 9 creating+peering, 43 unknown, 75 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 1.2 KiB/s wr, 2 op/s 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: cluster 2024-09-21T17:26:53.406574+0000 mon.smithi050 (mon.0) 828 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: cluster 2024-09-21T17:26:53.406574+0000 mon.smithi050 (mon.0) 828 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.411481+0000 mon.smithi050 (mon.0) 829 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.411481+0000 mon.smithi050 (mon.0) 829 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.411533+0000 mon.smithi170 (mon.1) 25 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.411533+0000 mon.smithi170 (mon.1) 25 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.411788+0000 mon.smithi050 (mon.0) 830 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.411788+0000 mon.smithi050 (mon.0) 830 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.656659+0000 mon.smithi050 (mon.0) 831 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.656659+0000 mon.smithi050 (mon.0) 831 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.662171+0000 mon.smithi050 (mon.0) 832 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.662171+0000 mon.smithi050 (mon.0) 832 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.483 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.666994+0000 mon.smithi050 (mon.0) 833 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.666994+0000 mon.smithi050 (mon.0) 833 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.697904+0000 mon.smithi050 (mon.0) 834 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.697904+0000 mon.smithi050 (mon.0) 834 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.705812+0000 mon.smithi050 (mon.0) 835 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: audit 2024-09-21T17:26:53.705812+0000 mon.smithi050 (mon.0) 835 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: cephadm 2024-09-21T17:26:53.719176+0000 mgr.smithi050.baqqjh (mgr.14203) 253 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi050.cdnmbu on smithi050 2024-09-21T17:26:54.484 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:54 smithi050 bash[19920]: cephadm 2024-09-21T17:26:53.719176+0000 mgr.smithi050.baqqjh (mgr.14203) 253 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi050.cdnmbu on smithi050 2024-09-21T17:26:54.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: cluster 2024-09-21T17:26:53.165203+0000 mgr.smithi050.baqqjh (mgr.14203) 252 : cluster [DBG] pgmap v207: 129 pgs: 2 creating+activating, 9 creating+peering, 43 unknown, 75 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 1.2 KiB/s wr, 2 op/s 2024-09-21T17:26:54.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: cluster 2024-09-21T17:26:53.165203+0000 mgr.smithi050.baqqjh (mgr.14203) 252 : cluster [DBG] pgmap v207: 129 pgs: 2 creating+activating, 9 creating+peering, 43 unknown, 75 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 767 B/s rd, 1.2 KiB/s wr, 2 op/s 2024-09-21T17:26:54.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: cluster 2024-09-21T17:26:53.406574+0000 mon.smithi050 (mon.0) 828 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: cluster 2024-09-21T17:26:53.406574+0000 mon.smithi050 (mon.0) 828 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.411481+0000 mon.smithi050 (mon.0) 829 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.411481+0000 mon.smithi050 (mon.0) 829 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.411533+0000 mon.smithi170 (mon.1) 25 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.411533+0000 mon.smithi170 (mon.1) 25 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.411788+0000 mon.smithi050 (mon.0) 830 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.411788+0000 mon.smithi050 (mon.0) 830 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.656659+0000 mon.smithi050 (mon.0) 831 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.656659+0000 mon.smithi050 (mon.0) 831 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.662171+0000 mon.smithi050 (mon.0) 832 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.662171+0000 mon.smithi050 (mon.0) 832 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.666994+0000 mon.smithi050 (mon.0) 833 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.666994+0000 mon.smithi050 (mon.0) 833 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.697904+0000 mon.smithi050 (mon.0) 834 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.697904+0000 mon.smithi050 (mon.0) 834 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.705812+0000 mon.smithi050 (mon.0) 835 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: audit 2024-09-21T17:26:53.705812+0000 mon.smithi050 (mon.0) 835 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: cephadm 2024-09-21T17:26:53.719176+0000 mgr.smithi050.baqqjh (mgr.14203) 253 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi050.cdnmbu on smithi050 2024-09-21T17:26:54.858 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:54 smithi170 bash[24572]: cephadm 2024-09-21T17:26:53.719176+0000 mgr.smithi050.baqqjh (mgr.14203) 253 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi050.cdnmbu on smithi050 2024-09-21T17:26:55.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.400677+0000 mon.smithi050 (mon.0) 836 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T17:26:55.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.400677+0000 mon.smithi050 (mon.0) 836 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T17:26:55.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.400910+0000 mon.smithi050 (mon.0) 837 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T17:26:55.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.400910+0000 mon.smithi050 (mon.0) 837 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T17:26:55.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: cluster 2024-09-21T17:26:54.408414+0000 mon.smithi050 (mon.0) 838 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-21T17:26:55.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: cluster 2024-09-21T17:26:54.408414+0000 mon.smithi050 (mon.0) 838 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-21T17:26:55.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.411901+0000 mon.smithi170 (mon.1) 26 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.411901+0000 mon.smithi170 (mon.1) 26 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.431675+0000 mon.smithi050 (mon.0) 839 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.431675+0000 mon.smithi050 (mon.0) 839 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.433523+0000 mon.smithi050 (mon.0) 840 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:55 smithi050 bash[19920]: audit 2024-09-21T17:26:54.433523+0000 mon.smithi050 (mon.0) 840 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.400677+0000 mon.smithi050 (mon.0) 836 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T17:26:55.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.400677+0000 mon.smithi050 (mon.0) 836 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.400910+0000 mon.smithi050 (mon.0) 837 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.400910+0000 mon.smithi050 (mon.0) 837 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: cluster 2024-09-21T17:26:54.408414+0000 mon.smithi050 (mon.0) 838 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: cluster 2024-09-21T17:26:54.408414+0000 mon.smithi050 (mon.0) 838 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.411901+0000 mon.smithi170 (mon.1) 26 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.411901+0000 mon.smithi170 (mon.1) 26 : audit [INF] from='client.? 172.21.15.170:0/314983286' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.431675+0000 mon.smithi050 (mon.0) 839 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.431675+0000 mon.smithi050 (mon.0) 839 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.433523+0000 mon.smithi050 (mon.0) 840 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:55.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:55 smithi170 bash[24572]: audit 2024-09-21T17:26:54.433523+0000 mon.smithi050 (mon.0) 840 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:26:56.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: cluster 2024-09-21T17:26:55.166272+0000 mgr.smithi050.baqqjh (mgr.14203) 254 : cluster [DBG] pgmap v210: 161 pgs: 5 creating+activating, 6 creating+peering, 33 unknown, 117 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 767 B/s wr, 4 op/s 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: cluster 2024-09-21T17:26:55.166272+0000 mgr.smithi050.baqqjh (mgr.14203) 254 : cluster [DBG] pgmap v210: 161 pgs: 5 creating+activating, 6 creating+peering, 33 unknown, 117 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 767 B/s wr, 4 op/s 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: audit 2024-09-21T17:26:55.425930+0000 mon.smithi050 (mon.0) 841 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: audit 2024-09-21T17:26:55.425930+0000 mon.smithi050 (mon.0) 841 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: audit 2024-09-21T17:26:55.426142+0000 mon.smithi050 (mon.0) 842 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: audit 2024-09-21T17:26:55.426142+0000 mon.smithi050 (mon.0) 842 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: cluster 2024-09-21T17:26:55.432003+0000 mon.smithi050 (mon.0) 843 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: cluster 2024-09-21T17:26:55.432003+0000 mon.smithi050 (mon.0) 843 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: audit 2024-09-21T17:26:55.654524+0000 mon.smithi050 (mon.0) 844 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:56.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:56 smithi050 bash[19920]: audit 2024-09-21T17:26:55.654524+0000 mon.smithi050 (mon.0) 844 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: cluster 2024-09-21T17:26:55.166272+0000 mgr.smithi050.baqqjh (mgr.14203) 254 : cluster [DBG] pgmap v210: 161 pgs: 5 creating+activating, 6 creating+peering, 33 unknown, 117 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 767 B/s wr, 4 op/s 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: cluster 2024-09-21T17:26:55.166272+0000 mgr.smithi050.baqqjh (mgr.14203) 254 : cluster [DBG] pgmap v210: 161 pgs: 5 creating+activating, 6 creating+peering, 33 unknown, 117 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 767 B/s wr, 4 op/s 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: audit 2024-09-21T17:26:55.425930+0000 mon.smithi050 (mon.0) 841 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: audit 2024-09-21T17:26:55.425930+0000 mon.smithi050 (mon.0) 841 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi170.bpqqqq' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: audit 2024-09-21T17:26:55.426142+0000 mon.smithi050 (mon.0) 842 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: audit 2024-09-21T17:26:55.426142+0000 mon.smithi050 (mon.0) 842 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: cluster 2024-09-21T17:26:55.432003+0000 mon.smithi050 (mon.0) 843 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: cluster 2024-09-21T17:26:55.432003+0000 mon.smithi050 (mon.0) 843 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: audit 2024-09-21T17:26:55.654524+0000 mon.smithi050 (mon.0) 844 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:56.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:56 smithi170 bash[24572]: audit 2024-09-21T17:26:55.654524+0000 mon.smithi050 (mon.0) 844 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:26:57.163 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:26:58.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:58 smithi050 bash[19920]: cluster 2024-09-21T17:26:57.167139+0000 mgr.smithi050.baqqjh (mgr.14203) 255 : cluster [DBG] pgmap v212: 161 pgs: 3 creating+activating, 6 creating+peering, 152 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 26 KiB/s rd, 2.9 KiB/s wr, 53 op/s 2024-09-21T17:26:58.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:26:58 smithi050 bash[19920]: cluster 2024-09-21T17:26:57.167139+0000 mgr.smithi050.baqqjh (mgr.14203) 255 : cluster [DBG] pgmap v212: 161 pgs: 3 creating+activating, 6 creating+peering, 152 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 26 KiB/s rd, 2.9 KiB/s wr, 53 op/s 2024-09-21T17:26:58.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:58 smithi170 bash[24572]: cluster 2024-09-21T17:26:57.167139+0000 mgr.smithi050.baqqjh (mgr.14203) 255 : cluster [DBG] pgmap v212: 161 pgs: 3 creating+activating, 6 creating+peering, 152 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 26 KiB/s rd, 2.9 KiB/s wr, 53 op/s 2024-09-21T17:26:58.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:26:58 smithi170 bash[24572]: cluster 2024-09-21T17:26:57.167139+0000 mgr.smithi050.baqqjh (mgr.14203) 255 : cluster [DBG] pgmap v212: 161 pgs: 3 creating+activating, 6 creating+peering, 152 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 26 KiB/s rd, 2.9 KiB/s wr, 53 op/s 2024-09-21T17:27:00.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:00 smithi050 bash[19920]: cluster 2024-09-21T17:26:59.168174+0000 mgr.smithi050.baqqjh (mgr.14203) 256 : cluster [DBG] pgmap v213: 161 pgs: 3 creating+activating, 158 active+clean; 580 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 81 KiB/s rd, 5.0 KiB/s wr, 160 op/s 2024-09-21T17:27:00.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:00 smithi050 bash[19920]: cluster 2024-09-21T17:26:59.168174+0000 mgr.smithi050.baqqjh (mgr.14203) 256 : cluster [DBG] pgmap v213: 161 pgs: 3 creating+activating, 158 active+clean; 580 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 81 KiB/s rd, 5.0 KiB/s wr, 160 op/s 2024-09-21T17:27:00.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:00 smithi170 bash[24572]: cluster 2024-09-21T17:26:59.168174+0000 mgr.smithi050.baqqjh (mgr.14203) 256 : cluster [DBG] pgmap v213: 161 pgs: 3 creating+activating, 158 active+clean; 580 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 81 KiB/s rd, 5.0 KiB/s wr, 160 op/s 2024-09-21T17:27:00.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:00 smithi170 bash[24572]: cluster 2024-09-21T17:26:59.168174+0000 mgr.smithi050.baqqjh (mgr.14203) 256 : cluster [DBG] pgmap v213: 161 pgs: 3 creating+activating, 158 active+clean; 580 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 81 KiB/s rd, 5.0 KiB/s wr, 160 op/s 2024-09-21T17:27:01.282 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:27:01.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:01 smithi050 bash[19920]: audit 2024-09-21T17:27:00.581219+0000 mon.smithi050 (mon.0) 845 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:01.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:01 smithi050 bash[19920]: audit 2024-09-21T17:27:00.581219+0000 mon.smithi050 (mon.0) 845 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:01.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:01 smithi170 bash[24572]: audit 2024-09-21T17:27:00.581219+0000 mon.smithi050 (mon.0) 845 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:01.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:01 smithi170 bash[24572]: audit 2024-09-21T17:27:00.581219+0000 mon.smithi050 (mon.0) 845 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:02.079 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:01 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:27:02.360 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:27:02.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 bash[19920]: cluster 2024-09-21T17:27:01.169671+0000 mgr.smithi050.baqqjh (mgr.14203) 257 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 134 KiB/s rd, 5.4 KiB/s wr, 259 op/s 2024-09-21T17:27:02.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 bash[19920]: cluster 2024-09-21T17:27:01.169671+0000 mgr.smithi050.baqqjh (mgr.14203) 257 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 134 KiB/s rd, 5.4 KiB/s wr, 259 op/s 2024-09-21T17:27:02.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 bash[19920]: audit 2024-09-21T17:27:02.407499+0000 mon.smithi050 (mon.0) 846 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 bash[19920]: audit 2024-09-21T17:27:02.407499+0000 mon.smithi050 (mon.0) 846 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 bash[19920]: audit 2024-09-21T17:27:02.413217+0000 mon.smithi050 (mon.0) 847 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 bash[19920]: audit 2024-09-21T17:27:02.413217+0000 mon.smithi050 (mon.0) 847 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 bash[19920]: audit 2024-09-21T17:27:02.418016+0000 mon.smithi050 (mon.0) 848 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:02 smithi050 bash[19920]: audit 2024-09-21T17:27:02.418016+0000 mon.smithi050 (mon.0) 848 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:02 smithi170 bash[24572]: cluster 2024-09-21T17:27:01.169671+0000 mgr.smithi050.baqqjh (mgr.14203) 257 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 134 KiB/s rd, 5.4 KiB/s wr, 259 op/s 2024-09-21T17:27:02.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:02 smithi170 bash[24572]: cluster 2024-09-21T17:27:01.169671+0000 mgr.smithi050.baqqjh (mgr.14203) 257 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 134 KiB/s rd, 5.4 KiB/s wr, 259 op/s 2024-09-21T17:27:02.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:02 smithi170 bash[24572]: audit 2024-09-21T17:27:02.407499+0000 mon.smithi050 (mon.0) 846 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:02 smithi170 bash[24572]: audit 2024-09-21T17:27:02.407499+0000 mon.smithi050 (mon.0) 846 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:02 smithi170 bash[24572]: audit 2024-09-21T17:27:02.413217+0000 mon.smithi050 (mon.0) 847 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:02 smithi170 bash[24572]: audit 2024-09-21T17:27:02.413217+0000 mon.smithi050 (mon.0) 847 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:02 smithi170 bash[24572]: audit 2024-09-21T17:27:02.418016+0000 mon.smithi050 (mon.0) 848 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:02.857 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:02 smithi170 bash[24572]: audit 2024-09-21T17:27:02.418016+0000 mon.smithi050 (mon.0) 848 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:03.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:03 smithi050 bash[19920]: cephadm 2024-09-21T17:27:02.420240+0000 mgr.smithi050.baqqjh (mgr.14203) 258 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi170.olcxpc on smithi170 2024-09-21T17:27:03.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:03 smithi050 bash[19920]: cephadm 2024-09-21T17:27:02.420240+0000 mgr.smithi050.baqqjh (mgr.14203) 258 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi170.olcxpc on smithi170 2024-09-21T17:27:03.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:03 smithi170 bash[24572]: cephadm 2024-09-21T17:27:02.420240+0000 mgr.smithi050.baqqjh (mgr.14203) 258 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi170.olcxpc on smithi170 2024-09-21T17:27:03.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:03 smithi170 bash[24572]: cephadm 2024-09-21T17:27:02.420240+0000 mgr.smithi050.baqqjh (mgr.14203) 258 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi170.olcxpc on smithi170 2024-09-21T17:27:04.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:04 smithi050 bash[19920]: cluster 2024-09-21T17:27:03.170516+0000 mgr.smithi050.baqqjh (mgr.14203) 259 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 118 KiB/s rd, 4.4 KiB/s wr, 228 op/s 2024-09-21T17:27:04.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:04 smithi050 bash[19920]: cluster 2024-09-21T17:27:03.170516+0000 mgr.smithi050.baqqjh (mgr.14203) 259 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 118 KiB/s rd, 4.4 KiB/s wr, 228 op/s 2024-09-21T17:27:04.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:04 smithi170 bash[24572]: cluster 2024-09-21T17:27:03.170516+0000 mgr.smithi050.baqqjh (mgr.14203) 259 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 118 KiB/s rd, 4.4 KiB/s wr, 228 op/s 2024-09-21T17:27:04.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:04 smithi170 bash[24572]: cluster 2024-09-21T17:27:03.170516+0000 mgr.smithi050.baqqjh (mgr.14203) 259 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 118 KiB/s rd, 4.4 KiB/s wr, 228 op/s 2024-09-21T17:27:05.439 INFO:teuthology.orchestra.run.smithi050.stderr:Using ceph image with id '3fa9090ef91d' and tag '0ecbb435437226bc091a0c2d4549ba25bf724efe' created on 2024-09-21 15:43:11 +0000 UTC 2024-09-21T17:27:05.439 INFO:teuthology.orchestra.run.smithi050.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:b7e696d4014dc129bd30a3126ccae3c43a4a3060f7a811b44f457f7ec9f7f5d5 2024-09-21T17:27:06.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:06 smithi050 bash[19920]: cluster 2024-09-21T17:27:05.172005+0000 mgr.smithi050.baqqjh (mgr.14203) 260 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 103 KiB/s rd, 3.9 KiB/s wr, 200 op/s 2024-09-21T17:27:06.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:06 smithi050 bash[19920]: cluster 2024-09-21T17:27:05.172005+0000 mgr.smithi050.baqqjh (mgr.14203) 260 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 103 KiB/s rd, 3.9 KiB/s wr, 200 op/s 2024-09-21T17:27:06.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:06 smithi170 bash[24572]: cluster 2024-09-21T17:27:05.172005+0000 mgr.smithi050.baqqjh (mgr.14203) 260 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 103 KiB/s rd, 3.9 KiB/s wr, 200 op/s 2024-09-21T17:27:06.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:06 smithi170 bash[24572]: cluster 2024-09-21T17:27:05.172005+0000 mgr.smithi050.baqqjh (mgr.14203) 260 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 103 KiB/s rd, 3.9 KiB/s wr, 200 op/s 2024-09-21T17:27:07.381 INFO:teuthology.run_tasks:Running task python... 2024-09-21T17:27:07.392 INFO:tasks.python:Running python on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:27:07.392 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-21T17:27:07.392 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-21T17:27:08.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:08 smithi170 bash[24572]: cluster 2024-09-21T17:27:07.173408+0000 mgr.smithi050.baqqjh (mgr.14203) 261 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 88 KiB/s rd, 3.3 KiB/s wr, 170 op/s 2024-09-21T17:27:08.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:08 smithi170 bash[24572]: cluster 2024-09-21T17:27:07.173408+0000 mgr.smithi050.baqqjh (mgr.14203) 261 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 88 KiB/s rd, 3.3 KiB/s wr, 170 op/s 2024-09-21T17:27:08.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:08 smithi050 bash[19920]: cluster 2024-09-21T17:27:07.173408+0000 mgr.smithi050.baqqjh (mgr.14203) 261 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 88 KiB/s rd, 3.3 KiB/s wr, 170 op/s 2024-09-21T17:27:08.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:08 smithi050 bash[19920]: cluster 2024-09-21T17:27:07.173408+0000 mgr.smithi050.baqqjh (mgr.14203) 261 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 88 KiB/s rd, 3.3 KiB/s wr, 170 op/s 2024-09-21T17:27:09.775 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:09 smithi170 bash[24572]: cluster 2024-09-21T17:27:08.474775+0000 mon.smithi050 (mon.0) 849 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-21T17:27:09.775 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:09 smithi170 bash[24572]: cluster 2024-09-21T17:27:08.474775+0000 mon.smithi050 (mon.0) 849 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-21T17:27:09.775 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:09 smithi170 bash[24572]: audit 2024-09-21T17:27:08.486241+0000 mon.smithi050 (mon.0) 850 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-21T17:27:09.775 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:09 smithi170 bash[24572]: audit 2024-09-21T17:27:08.486241+0000 mon.smithi050 (mon.0) 850 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-21T17:27:09.775 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:09 smithi170 bash[24572]: audit 2024-09-21T17:27:09.469398+0000 mon.smithi050 (mon.0) 851 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-21T17:27:09.775 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:09 smithi170 bash[24572]: audit 2024-09-21T17:27:09.469398+0000 mon.smithi050 (mon.0) 851 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-21T17:27:09.775 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:09 smithi170 bash[24572]: cluster 2024-09-21T17:27:09.477076+0000 mon.smithi050 (mon.0) 852 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-21T17:27:09.776 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:09 smithi170 bash[24572]: cluster 2024-09-21T17:27:09.477076+0000 mon.smithi050 (mon.0) 852 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-21T17:27:09.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:09 smithi050 bash[19920]: cluster 2024-09-21T17:27:08.474775+0000 mon.smithi050 (mon.0) 849 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-21T17:27:09.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:09 smithi050 bash[19920]: cluster 2024-09-21T17:27:08.474775+0000 mon.smithi050 (mon.0) 849 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-21T17:27:09.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:09 smithi050 bash[19920]: audit 2024-09-21T17:27:08.486241+0000 mon.smithi050 (mon.0) 850 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-21T17:27:09.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:09 smithi050 bash[19920]: audit 2024-09-21T17:27:08.486241+0000 mon.smithi050 (mon.0) 850 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-21T17:27:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:09 smithi050 bash[19920]: audit 2024-09-21T17:27:09.469398+0000 mon.smithi050 (mon.0) 851 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-21T17:27:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:09 smithi050 bash[19920]: audit 2024-09-21T17:27:09.469398+0000 mon.smithi050 (mon.0) 851 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-21T17:27:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:09 smithi050 bash[19920]: cluster 2024-09-21T17:27:09.477076+0000 mon.smithi050 (mon.0) 852 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-21T17:27:09.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:09 smithi050 bash[19920]: cluster 2024-09-21T17:27:09.477076+0000 mon.smithi050 (mon.0) 852 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-21T17:27:10.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: cluster 2024-09-21T17:27:09.174623+0000 mgr.smithi050.baqqjh (mgr.14203) 262 : cluster [DBG] pgmap v219: 193 pgs: 9 creating+peering, 23 unknown, 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 55 KiB/s rd, 1.2 KiB/s wr, 106 op/s 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: cluster 2024-09-21T17:27:09.174623+0000 mgr.smithi050.baqqjh (mgr.14203) 262 : cluster [DBG] pgmap v219: 193 pgs: 9 creating+peering, 23 unknown, 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 55 KiB/s rd, 1.2 KiB/s wr, 106 op/s 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: audit 2024-09-21T17:27:09.481230+0000 mon.smithi050 (mon.0) 853 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: audit 2024-09-21T17:27:09.481230+0000 mon.smithi050 (mon.0) 853 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: cluster 2024-09-21T17:27:09.487409+0000 mon.smithi050 (mon.0) 854 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: cluster 2024-09-21T17:27:09.487409+0000 mon.smithi050 (mon.0) 854 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: audit 2024-09-21T17:27:10.472058+0000 mon.smithi050 (mon.0) 855 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: audit 2024-09-21T17:27:10.472058+0000 mon.smithi050 (mon.0) 855 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: cluster 2024-09-21T17:27:10.479334+0000 mon.smithi050 (mon.0) 856 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-21T17:27:10.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:10 smithi050 bash[19920]: cluster 2024-09-21T17:27:10.479334+0000 mon.smithi050 (mon.0) 856 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: cluster 2024-09-21T17:27:09.174623+0000 mgr.smithi050.baqqjh (mgr.14203) 262 : cluster [DBG] pgmap v219: 193 pgs: 9 creating+peering, 23 unknown, 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 55 KiB/s rd, 1.2 KiB/s wr, 106 op/s 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: cluster 2024-09-21T17:27:09.174623+0000 mgr.smithi050.baqqjh (mgr.14203) 262 : cluster [DBG] pgmap v219: 193 pgs: 9 creating+peering, 23 unknown, 161 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 55 KiB/s rd, 1.2 KiB/s wr, 106 op/s 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: audit 2024-09-21T17:27:09.481230+0000 mon.smithi050 (mon.0) 853 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: audit 2024-09-21T17:27:09.481230+0000 mon.smithi050 (mon.0) 853 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: cluster 2024-09-21T17:27:09.487409+0000 mon.smithi050 (mon.0) 854 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: cluster 2024-09-21T17:27:09.487409+0000 mon.smithi050 (mon.0) 854 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: audit 2024-09-21T17:27:10.472058+0000 mon.smithi050 (mon.0) 855 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: audit 2024-09-21T17:27:10.472058+0000 mon.smithi050 (mon.0) 855 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: cluster 2024-09-21T17:27:10.479334+0000 mon.smithi050 (mon.0) 856 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-21T17:27:10.770 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 bash[24572]: cluster 2024-09-21T17:27:10.479334+0000 mon.smithi050 (mon.0) 856 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-21T17:27:11.035 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:10 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:27:11.355 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:27:11.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:10.667975+0000 mon.smithi050 (mon.0) 857 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:10.667975+0000 mon.smithi050 (mon.0) 857 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.214746+0000 mon.smithi050 (mon.0) 858 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.214746+0000 mon.smithi050 (mon.0) 858 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.225216+0000 mon.smithi050 (mon.0) 859 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.225216+0000 mon.smithi050 (mon.0) 859 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.233493+0000 mon.smithi050 (mon.0) 860 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.233493+0000 mon.smithi050 (mon.0) 860 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.242930+0000 mon.smithi050 (mon.0) 861 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.242930+0000 mon.smithi050 (mon.0) 861 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: cluster 2024-09-21T17:27:11.519234+0000 mon.smithi050 (mon.0) 862 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: cluster 2024-09-21T17:27:11.519234+0000 mon.smithi050 (mon.0) 862 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-21T17:27:11.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.526134+0000 mon.smithi050 (mon.0) 863 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-21T17:27:11.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:11 smithi050 bash[19920]: audit 2024-09-21T17:27:11.526134+0000 mon.smithi050 (mon.0) 863 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-21T17:27:12.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:10.667975+0000 mon.smithi050 (mon.0) 857 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:10.667975+0000 mon.smithi050 (mon.0) 857 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.214746+0000 mon.smithi050 (mon.0) 858 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.214746+0000 mon.smithi050 (mon.0) 858 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.225216+0000 mon.smithi050 (mon.0) 859 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.225216+0000 mon.smithi050 (mon.0) 859 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.233493+0000 mon.smithi050 (mon.0) 860 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.233493+0000 mon.smithi050 (mon.0) 860 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.242930+0000 mon.smithi050 (mon.0) 861 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.242930+0000 mon.smithi050 (mon.0) 861 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:12.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: cluster 2024-09-21T17:27:11.519234+0000 mon.smithi050 (mon.0) 862 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-21T17:27:12.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: cluster 2024-09-21T17:27:11.519234+0000 mon.smithi050 (mon.0) 862 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-21T17:27:12.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.526134+0000 mon.smithi050 (mon.0) 863 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-21T17:27:12.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:11 smithi170 bash[24572]: audit 2024-09-21T17:27:11.526134+0000 mon.smithi050 (mon.0) 863 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cluster 2024-09-21T17:27:11.175895+0000 mgr.smithi050.baqqjh (mgr.14203) 263 : cluster [DBG] pgmap v222: 193 pgs: 15 creating+peering, 178 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 3 op/s 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cluster 2024-09-21T17:27:11.175895+0000 mgr.smithi050.baqqjh (mgr.14203) 263 : cluster [DBG] pgmap v222: 193 pgs: 15 creating+peering, 178 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 3 op/s 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cephadm 2024-09-21T17:27:11.244168+0000 mgr.smithi050.baqqjh (mgr.14203) 264 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cephadm 2024-09-21T17:27:11.244168+0000 mgr.smithi050.baqqjh (mgr.14203) 264 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cephadm 2024-09-21T17:27:11.244476+0000 mgr.smithi050.baqqjh (mgr.14203) 265 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cephadm 2024-09-21T17:27:11.244476+0000 mgr.smithi050.baqqjh (mgr.14203) 265 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cephadm 2024-09-21T17:27:11.260092+0000 mgr.smithi050.baqqjh (mgr.14203) 266 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi170.hokigl on smithi170 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cephadm 2024-09-21T17:27:11.260092+0000 mgr.smithi050.baqqjh (mgr.14203) 266 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi170.hokigl on smithi170 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cluster 2024-09-21T17:27:11.662432+0000 mon.smithi050 (mon.0) 864 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cluster 2024-09-21T17:27:11.662432+0000 mon.smithi050 (mon.0) 864 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T17:27:12.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cluster 2024-09-21T17:27:11.662506+0000 mon.smithi050 (mon.0) 865 : cluster [INF] Cluster is now healthy 2024-09-21T17:27:12.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cluster 2024-09-21T17:27:11.662506+0000 mon.smithi050 (mon.0) 865 : cluster [INF] Cluster is now healthy 2024-09-21T17:27:12.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: audit 2024-09-21T17:27:12.515443+0000 mon.smithi050 (mon.0) 866 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-21T17:27:12.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: audit 2024-09-21T17:27:12.515443+0000 mon.smithi050 (mon.0) 866 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-21T17:27:12.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cluster 2024-09-21T17:27:12.522980+0000 mon.smithi050 (mon.0) 867 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-21T17:27:12.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: cluster 2024-09-21T17:27:12.522980+0000 mon.smithi050 (mon.0) 867 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-21T17:27:12.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: audit 2024-09-21T17:27:12.526851+0000 mon.smithi050 (mon.0) 868 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-21T17:27:12.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:12 smithi050 bash[19920]: audit 2024-09-21T17:27:12.526851+0000 mon.smithi050 (mon.0) 868 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-21T17:27:13.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cluster 2024-09-21T17:27:11.175895+0000 mgr.smithi050.baqqjh (mgr.14203) 263 : cluster [DBG] pgmap v222: 193 pgs: 15 creating+peering, 178 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 3 op/s 2024-09-21T17:27:13.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cluster 2024-09-21T17:27:11.175895+0000 mgr.smithi050.baqqjh (mgr.14203) 263 : cluster [DBG] pgmap v222: 193 pgs: 15 creating+peering, 178 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 341 B/s wr, 3 op/s 2024-09-21T17:27:13.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cephadm 2024-09-21T17:27:11.244168+0000 mgr.smithi050.baqqjh (mgr.14203) 264 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-09-21T17:27:13.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cephadm 2024-09-21T17:27:11.244168+0000 mgr.smithi050.baqqjh (mgr.14203) 264 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-09-21T17:27:13.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cephadm 2024-09-21T17:27:11.244476+0000 mgr.smithi050.baqqjh (mgr.14203) 265 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-21T17:27:13.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cephadm 2024-09-21T17:27:11.244476+0000 mgr.smithi050.baqqjh (mgr.14203) 265 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-21T17:27:13.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cephadm 2024-09-21T17:27:11.260092+0000 mgr.smithi050.baqqjh (mgr.14203) 266 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi170.hokigl on smithi170 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cephadm 2024-09-21T17:27:11.260092+0000 mgr.smithi050.baqqjh (mgr.14203) 266 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi170.hokigl on smithi170 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cluster 2024-09-21T17:27:11.662432+0000 mon.smithi050 (mon.0) 864 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cluster 2024-09-21T17:27:11.662432+0000 mon.smithi050 (mon.0) 864 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cluster 2024-09-21T17:27:11.662506+0000 mon.smithi050 (mon.0) 865 : cluster [INF] Cluster is now healthy 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cluster 2024-09-21T17:27:11.662506+0000 mon.smithi050 (mon.0) 865 : cluster [INF] Cluster is now healthy 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: audit 2024-09-21T17:27:12.515443+0000 mon.smithi050 (mon.0) 866 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: audit 2024-09-21T17:27:12.515443+0000 mon.smithi050 (mon.0) 866 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cluster 2024-09-21T17:27:12.522980+0000 mon.smithi050 (mon.0) 867 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: cluster 2024-09-21T17:27:12.522980+0000 mon.smithi050 (mon.0) 867 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: audit 2024-09-21T17:27:12.526851+0000 mon.smithi050 (mon.0) 868 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-21T17:27:13.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:12 smithi170 bash[24572]: audit 2024-09-21T17:27:12.526851+0000 mon.smithi050 (mon.0) 868 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-21T17:27:13.614 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T17:27:13.625 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:27:13.625 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-09-21T17:27:14.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:14 smithi170 bash[24572]: cluster 2024-09-21T17:27:13.176728+0000 mgr.smithi050.baqqjh (mgr.14203) 267 : cluster [DBG] pgmap v225: 225 pgs: 32 unknown, 15 creating+peering, 178 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 511 B/s wr, 3 op/s 2024-09-21T17:27:14.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:14 smithi170 bash[24572]: cluster 2024-09-21T17:27:13.176728+0000 mgr.smithi050.baqqjh (mgr.14203) 267 : cluster [DBG] pgmap v225: 225 pgs: 32 unknown, 15 creating+peering, 178 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 511 B/s wr, 3 op/s 2024-09-21T17:27:14.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:14 smithi170 bash[24572]: audit 2024-09-21T17:27:13.517618+0000 mon.smithi050 (mon.0) 869 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-21T17:27:14.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:14 smithi170 bash[24572]: audit 2024-09-21T17:27:13.517618+0000 mon.smithi050 (mon.0) 869 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-21T17:27:14.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:14 smithi170 bash[24572]: cluster 2024-09-21T17:27:13.524306+0000 mon.smithi050 (mon.0) 870 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-21T17:27:14.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:14 smithi170 bash[24572]: cluster 2024-09-21T17:27:13.524306+0000 mon.smithi050 (mon.0) 870 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-21T17:27:14.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:14 smithi050 bash[19920]: cluster 2024-09-21T17:27:13.176728+0000 mgr.smithi050.baqqjh (mgr.14203) 267 : cluster [DBG] pgmap v225: 225 pgs: 32 unknown, 15 creating+peering, 178 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 511 B/s wr, 3 op/s 2024-09-21T17:27:14.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:14 smithi050 bash[19920]: cluster 2024-09-21T17:27:13.176728+0000 mgr.smithi050.baqqjh (mgr.14203) 267 : cluster [DBG] pgmap v225: 225 pgs: 32 unknown, 15 creating+peering, 178 active+clean; 582 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 511 B/s wr, 3 op/s 2024-09-21T17:27:14.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:14 smithi050 bash[19920]: audit 2024-09-21T17:27:13.517618+0000 mon.smithi050 (mon.0) 869 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-21T17:27:14.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:14 smithi050 bash[19920]: audit 2024-09-21T17:27:13.517618+0000 mon.smithi050 (mon.0) 869 : audit [INF] from='client.? 172.21.15.50:0/2106047184' entity='client.rgw.foorgw.smithi050.bgrjhn' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-21T17:27:14.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:14 smithi050 bash[19920]: cluster 2024-09-21T17:27:13.524306+0000 mon.smithi050 (mon.0) 870 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-21T17:27:14.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:14 smithi050 bash[19920]: cluster 2024-09-21T17:27:13.524306+0000 mon.smithi050 (mon.0) 870 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-21T17:27:16.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:16 smithi170 bash[24572]: cluster 2024-09-21T17:27:15.178287+0000 mgr.smithi050.baqqjh (mgr.14203) 268 : cluster [DBG] pgmap v227: 225 pgs: 12 unknown, 213 active+clean; 583 KiB data, 246 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 870 B/s wr, 5 op/s 2024-09-21T17:27:16.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:16 smithi170 bash[24572]: cluster 2024-09-21T17:27:15.178287+0000 mgr.smithi050.baqqjh (mgr.14203) 268 : cluster [DBG] pgmap v227: 225 pgs: 12 unknown, 213 active+clean; 583 KiB data, 246 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 870 B/s wr, 5 op/s 2024-09-21T17:27:16.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:16 smithi170 bash[24572]: audit 2024-09-21T17:27:15.581294+0000 mon.smithi050 (mon.0) 871 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:16.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:16 smithi170 bash[24572]: audit 2024-09-21T17:27:15.581294+0000 mon.smithi050 (mon.0) 871 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:16.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:16 smithi050 bash[19920]: cluster 2024-09-21T17:27:15.178287+0000 mgr.smithi050.baqqjh (mgr.14203) 268 : cluster [DBG] pgmap v227: 225 pgs: 12 unknown, 213 active+clean; 583 KiB data, 246 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 870 B/s wr, 5 op/s 2024-09-21T17:27:16.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:16 smithi050 bash[19920]: cluster 2024-09-21T17:27:15.178287+0000 mgr.smithi050.baqqjh (mgr.14203) 268 : cluster [DBG] pgmap v227: 225 pgs: 12 unknown, 213 active+clean; 583 KiB data, 246 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 870 B/s wr, 5 op/s 2024-09-21T17:27:16.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:16 smithi050 bash[19920]: audit 2024-09-21T17:27:15.581294+0000 mon.smithi050 (mon.0) 871 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:16.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:16 smithi050 bash[19920]: audit 2024-09-21T17:27:15.581294+0000 mon.smithi050 (mon.0) 871 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:18.467 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:27:18.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:18 smithi170 bash[24572]: cluster 2024-09-21T17:27:17.179873+0000 mgr.smithi050.baqqjh (mgr.14203) 269 : cluster [DBG] pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 1023 B/s wr, 5 op/s 2024-09-21T17:27:18.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:18 smithi170 bash[24572]: cluster 2024-09-21T17:27:17.179873+0000 mgr.smithi050.baqqjh (mgr.14203) 269 : cluster [DBG] pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 1023 B/s wr, 5 op/s 2024-09-21T17:27:18.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:18 smithi050 bash[19920]: cluster 2024-09-21T17:27:17.179873+0000 mgr.smithi050.baqqjh (mgr.14203) 269 : cluster [DBG] pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 1023 B/s wr, 5 op/s 2024-09-21T17:27:18.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:18 smithi050 bash[19920]: cluster 2024-09-21T17:27:17.179873+0000 mgr.smithi050.baqqjh (mgr.14203) 269 : cluster [DBG] pgmap v228: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 1023 B/s wr, 5 op/s 2024-09-21T17:27:20.162 INFO:teuthology.orchestra.run.smithi050.stdout:{ 2024-09-21T17:27:20.162 INFO:teuthology.orchestra.run.smithi050.stdout: "bind": "/foouser", 2024-09-21T17:27:20.162 INFO:teuthology.orchestra.run.smithi050.stdout: "cluster": "foo", 2024-09-21T17:27:20.163 INFO:teuthology.orchestra.run.smithi050.stdout: "mode": "RW", 2024-09-21T17:27:20.163 INFO:teuthology.orchestra.run.smithi050.stdout: "path": "/", 2024-09-21T17:27:20.163 INFO:teuthology.orchestra.run.smithi050.stdout: "squash": "none" 2024-09-21T17:27:20.163 INFO:teuthology.orchestra.run.smithi050.stdout:} 2024-09-21T17:27:20.801 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:20 smithi050 bash[19920]: cluster 2024-09-21T17:27:19.181191+0000 mgr.smithi050.baqqjh (mgr.14203) 270 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.0 KiB/s rd, 801 B/s wr, 4 op/s 2024-09-21T17:27:20.801 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:20 smithi050 bash[19920]: cluster 2024-09-21T17:27:19.181191+0000 mgr.smithi050.baqqjh (mgr.14203) 270 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.0 KiB/s rd, 801 B/s wr, 4 op/s 2024-09-21T17:27:20.802 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-21T17:27:20.812 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-21T17:27:20.813 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch ls -f json 2024-09-21T17:27:20.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:20 smithi170 bash[24572]: cluster 2024-09-21T17:27:19.181191+0000 mgr.smithi050.baqqjh (mgr.14203) 270 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.0 KiB/s rd, 801 B/s wr, 4 op/s 2024-09-21T17:27:20.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:20 smithi170 bash[24572]: cluster 2024-09-21T17:27:19.181191+0000 mgr.smithi050.baqqjh (mgr.14203) 270 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.0 KiB/s rd, 801 B/s wr, 4 op/s 2024-09-21T17:27:21.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:21 smithi170 bash[24572]: audit 2024-09-21T17:27:19.932460+0000 mgr.smithi050.baqqjh (mgr.14203) 271 : audit [DBG] from='client.14568 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:27:21.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:21 smithi170 bash[24572]: audit 2024-09-21T17:27:19.932460+0000 mgr.smithi050.baqqjh (mgr.14203) 271 : audit [DBG] from='client.14568 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:27:21.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:21 smithi170 bash[24572]: audit 2024-09-21T17:27:20.710833+0000 mon.smithi050 (mon.0) 872 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:21.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:21 smithi170 bash[24572]: audit 2024-09-21T17:27:20.710833+0000 mon.smithi050 (mon.0) 872 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:21.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:21 smithi050 bash[19920]: audit 2024-09-21T17:27:19.932460+0000 mgr.smithi050.baqqjh (mgr.14203) 271 : audit [DBG] from='client.14568 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:27:21.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:21 smithi050 bash[19920]: audit 2024-09-21T17:27:19.932460+0000 mgr.smithi050.baqqjh (mgr.14203) 271 : audit [DBG] from='client.14568 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:27:21.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:21 smithi050 bash[19920]: audit 2024-09-21T17:27:20.710833+0000 mon.smithi050 (mon.0) 872 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:21.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:21 smithi050 bash[19920]: audit 2024-09-21T17:27:20.710833+0000 mon.smithi050 (mon.0) 872 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:22.355 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:22 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:27:22.676 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:22 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:27:22.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:22 smithi050 bash[19920]: cluster 2024-09-21T17:27:21.183439+0000 mgr.smithi050.baqqjh (mgr.14203) 272 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 6.0 KiB/s rd, 945 B/s wr, 11 op/s 2024-09-21T17:27:22.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:22 smithi050 bash[19920]: cluster 2024-09-21T17:27:21.183439+0000 mgr.smithi050.baqqjh (mgr.14203) 272 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 6.0 KiB/s rd, 945 B/s wr, 11 op/s 2024-09-21T17:27:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:22 smithi170 bash[24572]: cluster 2024-09-21T17:27:21.183439+0000 mgr.smithi050.baqqjh (mgr.14203) 272 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 6.0 KiB/s rd, 945 B/s wr, 11 op/s 2024-09-21T17:27:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:22 smithi170 bash[24572]: cluster 2024-09-21T17:27:21.183439+0000 mgr.smithi050.baqqjh (mgr.14203) 272 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 6.0 KiB/s rd, 945 B/s wr, 11 op/s 2024-09-21T17:27:23.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: audit 2024-09-21T17:27:22.728985+0000 mon.smithi050 (mon.0) 873 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:23.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: audit 2024-09-21T17:27:22.728985+0000 mon.smithi050 (mon.0) 873 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:23.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: audit 2024-09-21T17:27:22.739976+0000 mon.smithi050 (mon.0) 874 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:23.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: audit 2024-09-21T17:27:22.739976+0000 mon.smithi050 (mon.0) 874 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:23.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: audit 2024-09-21T17:27:22.749075+0000 mon.smithi050 (mon.0) 875 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:23.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: audit 2024-09-21T17:27:22.749075+0000 mon.smithi050 (mon.0) 875 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:23.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: cephadm 2024-09-21T17:27:22.754511+0000 mgr.smithi050.baqqjh (mgr.14203) 273 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-21T17:27:23.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: cephadm 2024-09-21T17:27:22.754511+0000 mgr.smithi050.baqqjh (mgr.14203) 273 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-21T17:27:23.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: cephadm 2024-09-21T17:27:22.754883+0000 mgr.smithi050.baqqjh (mgr.14203) 274 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-09-21T17:27:23.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: cephadm 2024-09-21T17:27:22.754883+0000 mgr.smithi050.baqqjh (mgr.14203) 274 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-09-21T17:27:23.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: cephadm 2024-09-21T17:27:22.756396+0000 mgr.smithi050.baqqjh (mgr.14203) 275 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi050.rdmerl on smithi050 2024-09-21T17:27:23.984 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:23 smithi050 bash[19920]: cephadm 2024-09-21T17:27:22.756396+0000 mgr.smithi050.baqqjh (mgr.14203) 275 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi050.rdmerl on smithi050 2024-09-21T17:27:24.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: audit 2024-09-21T17:27:22.728985+0000 mon.smithi050 (mon.0) 873 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: audit 2024-09-21T17:27:22.728985+0000 mon.smithi050 (mon.0) 873 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: audit 2024-09-21T17:27:22.739976+0000 mon.smithi050 (mon.0) 874 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: audit 2024-09-21T17:27:22.739976+0000 mon.smithi050 (mon.0) 874 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: audit 2024-09-21T17:27:22.749075+0000 mon.smithi050 (mon.0) 875 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: audit 2024-09-21T17:27:22.749075+0000 mon.smithi050 (mon.0) 875 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: cephadm 2024-09-21T17:27:22.754511+0000 mgr.smithi050.baqqjh (mgr.14203) 273 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: cephadm 2024-09-21T17:27:22.754511+0000 mgr.smithi050.baqqjh (mgr.14203) 273 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi050 interface ens1f0 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: cephadm 2024-09-21T17:27:22.754883+0000 mgr.smithi050.baqqjh (mgr.14203) 274 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: cephadm 2024-09-21T17:27:22.754883+0000 mgr.smithi050.baqqjh (mgr.14203) 274 : cephadm [INF] 10.0.31.50 is in 10.0.0.0/16 on smithi170 interface enp3s0f1 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: cephadm 2024-09-21T17:27:22.756396+0000 mgr.smithi050.baqqjh (mgr.14203) 275 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi050.rdmerl on smithi050 2024-09-21T17:27:24.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:23 smithi170 bash[24572]: cephadm 2024-09-21T17:27:22.756396+0000 mgr.smithi050.baqqjh (mgr.14203) 275 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi050.rdmerl on smithi050 2024-09-21T17:27:25.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:24 smithi170 bash[24572]: cluster 2024-09-21T17:27:23.184214+0000 mgr.smithi050.baqqjh (mgr.14203) 276 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 818 B/s wr, 9 op/s 2024-09-21T17:27:25.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:24 smithi170 bash[24572]: cluster 2024-09-21T17:27:23.184214+0000 mgr.smithi050.baqqjh (mgr.14203) 276 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 818 B/s wr, 9 op/s 2024-09-21T17:27:25.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:24 smithi050 bash[19920]: cluster 2024-09-21T17:27:23.184214+0000 mgr.smithi050.baqqjh (mgr.14203) 276 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 818 B/s wr, 9 op/s 2024-09-21T17:27:25.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:24 smithi050 bash[19920]: cluster 2024-09-21T17:27:23.184214+0000 mgr.smithi050.baqqjh (mgr.14203) 276 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 5.2 KiB/s rd, 818 B/s wr, 9 op/s 2024-09-21T17:27:25.671 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:27:27.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:26 smithi170 bash[24572]: cluster 2024-09-21T17:27:25.185238+0000 mgr.smithi050.baqqjh (mgr.14203) 277 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 702 B/s wr, 13 op/s 2024-09-21T17:27:27.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:26 smithi170 bash[24572]: cluster 2024-09-21T17:27:25.185238+0000 mgr.smithi050.baqqjh (mgr.14203) 277 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 702 B/s wr, 13 op/s 2024-09-21T17:27:27.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:26 smithi050 bash[19920]: cluster 2024-09-21T17:27:25.185238+0000 mgr.smithi050.baqqjh (mgr.14203) 277 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 702 B/s wr, 13 op/s 2024-09-21T17:27:27.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:26 smithi050 bash[19920]: cluster 2024-09-21T17:27:25.185238+0000 mgr.smithi050.baqqjh (mgr.14203) 277 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 7.9 KiB/s rd, 702 B/s wr, 13 op/s 2024-09-21T17:27:28.591 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:27:28.591 INFO:teuthology.orchestra.run.smithi050.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-21T17:19:35.133081Z", "last_refresh": "2024-09-21T17:26:29.785235Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:21:30.391138Z 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-21T17:19:27.246749Z", "last_refresh": "2024-09-21T17:26:29.331305Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2024-09-21T17:21:34.143255Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-21T17:19:25.364213Z", "last_refresh": "2024-09-21T17:26:29.331436Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-21T17:19:31.168272Z", "last_refresh": "2024-09-21T17:26:29.785337Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:27:22.749640Z 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.50/16"}, "status": {"created": "2024-09-21T17:26:38.477880Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.50/16"}}, {"events": ["2024-09-21T17:21:39.005572Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-21T17:19:23.331025Z", "last_refresh": "2024-09-21T17:26:29.331656Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T17:21:45.261517Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi050:172.21.15.50=smithi050", "smithi170:172.21.15.170=smithi170"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-21T17:21:02.369338Z", "last_refresh": "2024-09-21T17:26:29.331779Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T17:26:53.698218Z 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-21T17:26:38.471908Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-21T17:21:35.496343Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-21T17:19:33.193332Z", "last_refresh": "2024-09-21T17:26:29.331548Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-21T17:22:07.706206Z 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-21T17:22:07.694372Z", "last_refresh": "2024-09-21T17:26:29.331890Z", "running": 8, "size": 8}}, {"events": ["2024-09-21T17:21:45.271119Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-21T17:19:29.214162Z", "last_refresh": "2024-09-21T17:26:29.785466Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:26:49.217434Z 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-21T17:26:49.208750Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-21T17:27:28.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:28 smithi050 bash[19920]: cluster 2024-09-21T17:27:27.186819+0000 mgr.smithi050.baqqjh (mgr.14203) 278 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-21T17:27:28.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:28 smithi050 bash[19920]: cluster 2024-09-21T17:27:27.186819+0000 mgr.smithi050.baqqjh (mgr.14203) 278 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-21T17:27:29.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:28 smithi170 bash[24572]: cluster 2024-09-21T17:27:27.186819+0000 mgr.smithi050.baqqjh (mgr.14203) 278 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-21T17:27:29.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:28 smithi170 bash[24572]: cluster 2024-09-21T17:27:27.186819+0000 mgr.smithi050.baqqjh (mgr.14203) 278 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.7 KiB/s rd, 682 B/s wr, 12 op/s 2024-09-21T17:27:30.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:29 smithi170 bash[24572]: audit 2024-09-21T17:27:28.584841+0000 mgr.smithi050.baqqjh (mgr.14203) 279 : audit [DBG] from='client.14596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:30.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:29 smithi170 bash[24572]: audit 2024-09-21T17:27:28.584841+0000 mgr.smithi050.baqqjh (mgr.14203) 279 : audit [DBG] from='client.14596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:30.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:29 smithi050 bash[19920]: audit 2024-09-21T17:27:28.584841+0000 mgr.smithi050.baqqjh (mgr.14203) 279 : audit [DBG] from='client.14596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:30.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:29 smithi050 bash[19920]: audit 2024-09-21T17:27:28.584841+0000 mgr.smithi050.baqqjh (mgr.14203) 279 : audit [DBG] from='client.14596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:30.645 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-21T17:27:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:30 smithi050 bash[19920]: cluster 2024-09-21T17:27:29.188107+0000 mgr.smithi050.baqqjh (mgr.14203) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-21T17:27:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:30 smithi050 bash[19920]: cluster 2024-09-21T17:27:29.188107+0000 mgr.smithi050.baqqjh (mgr.14203) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-21T17:27:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:30 smithi050 bash[19920]: audit 2024-09-21T17:27:30.582390+0000 mon.smithi050 (mon.0) 876 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:30 smithi050 bash[19920]: audit 2024-09-21T17:27:30.582390+0000 mon.smithi050 (mon.0) 876 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:31.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:30 smithi170 bash[24572]: cluster 2024-09-21T17:27:29.188107+0000 mgr.smithi050.baqqjh (mgr.14203) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-21T17:27:31.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:30 smithi170 bash[24572]: cluster 2024-09-21T17:27:29.188107+0000 mgr.smithi050.baqqjh (mgr.14203) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-21T17:27:31.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:30 smithi170 bash[24572]: audit 2024-09-21T17:27:30.582390+0000 mon.smithi050 (mon.0) 876 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:31.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:30 smithi170 bash[24572]: audit 2024-09-21T17:27:30.582390+0000 mon.smithi050 (mon.0) 876 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:31.646 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch ls -f json 2024-09-21T17:27:33.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:32 smithi170 bash[24572]: cluster 2024-09-21T17:27:31.189989+0000 mgr.smithi050.baqqjh (mgr.14203) 281 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-21T17:27:33.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:32 smithi170 bash[24572]: cluster 2024-09-21T17:27:31.189989+0000 mgr.smithi050.baqqjh (mgr.14203) 281 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-21T17:27:33.140 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:32 smithi050 bash[19920]: cluster 2024-09-21T17:27:31.189989+0000 mgr.smithi050.baqqjh (mgr.14203) 281 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-21T17:27:33.140 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:32 smithi050 bash[19920]: cluster 2024-09-21T17:27:31.189989+0000 mgr.smithi050.baqqjh (mgr.14203) 281 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.2 KiB/s rd, 341 B/s wr, 10 op/s 2024-09-21T17:27:33.140 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:33 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:27:33.412 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:33 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:27:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: cluster 2024-09-21T17:27:33.190498+0000 mgr.smithi050.baqqjh (mgr.14203) 282 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 170 B/s wr, 5 op/s 2024-09-21T17:27:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: cluster 2024-09-21T17:27:33.190498+0000 mgr.smithi050.baqqjh (mgr.14203) 282 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 170 B/s wr, 5 op/s 2024-09-21T17:27:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.461156+0000 mon.smithi050 (mon.0) 877 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.461156+0000 mon.smithi050 (mon.0) 877 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.466805+0000 mon.smithi050 (mon.0) 878 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.466805+0000 mon.smithi050 (mon.0) 878 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.471958+0000 mon.smithi050 (mon.0) 879 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.471958+0000 mon.smithi050 (mon.0) 879 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.476692+0000 mon.smithi050 (mon.0) 880 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.476692+0000 mon.smithi050 (mon.0) 880 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.502091+0000 mon.smithi050 (mon.0) 881 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:27:34.733 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:34 smithi050 bash[19920]: audit 2024-09-21T17:27:33.502091+0000 mon.smithi050 (mon.0) 881 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:27:34.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: cluster 2024-09-21T17:27:33.190498+0000 mgr.smithi050.baqqjh (mgr.14203) 282 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 170 B/s wr, 5 op/s 2024-09-21T17:27:34.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: cluster 2024-09-21T17:27:33.190498+0000 mgr.smithi050.baqqjh (mgr.14203) 282 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 170 B/s wr, 5 op/s 2024-09-21T17:27:34.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.461156+0000 mon.smithi050 (mon.0) 877 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.461156+0000 mon.smithi050 (mon.0) 877 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.466805+0000 mon.smithi050 (mon.0) 878 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.466805+0000 mon.smithi050 (mon.0) 878 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.471958+0000 mon.smithi050 (mon.0) 879 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.471958+0000 mon.smithi050 (mon.0) 879 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.476692+0000 mon.smithi050 (mon.0) 880 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.476692+0000 mon.smithi050 (mon.0) 880 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.502091+0000 mon.smithi050 (mon.0) 881 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:27:34.856 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:34 smithi170 bash[24572]: audit 2024-09-21T17:27:33.502091+0000 mon.smithi050 (mon.0) 881 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:27:36.516 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:27:36.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:36 smithi050 bash[19920]: cluster 2024-09-21T17:27:35.192074+0000 mgr.smithi050.baqqjh (mgr.14203) 283 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 170 B/s wr, 5 op/s 2024-09-21T17:27:36.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:36 smithi050 bash[19920]: cluster 2024-09-21T17:27:35.192074+0000 mgr.smithi050.baqqjh (mgr.14203) 283 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 170 B/s wr, 5 op/s 2024-09-21T17:27:36.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:36 smithi050 bash[19920]: audit 2024-09-21T17:27:35.724143+0000 mon.smithi050 (mon.0) 882 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:36.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:36 smithi050 bash[19920]: audit 2024-09-21T17:27:35.724143+0000 mon.smithi050 (mon.0) 882 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:37.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:36 smithi170 bash[24572]: cluster 2024-09-21T17:27:35.192074+0000 mgr.smithi050.baqqjh (mgr.14203) 283 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 170 B/s wr, 5 op/s 2024-09-21T17:27:37.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:36 smithi170 bash[24572]: cluster 2024-09-21T17:27:35.192074+0000 mgr.smithi050.baqqjh (mgr.14203) 283 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 170 B/s wr, 5 op/s 2024-09-21T17:27:37.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:36 smithi170 bash[24572]: audit 2024-09-21T17:27:35.724143+0000 mon.smithi050 (mon.0) 882 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:37.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:36 smithi170 bash[24572]: audit 2024-09-21T17:27:35.724143+0000 mon.smithi050 (mon.0) 882 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:38.032 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:27:38.033 INFO:teuthology.orchestra.run.smithi050.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-21T17:19:35.133081Z", "last_refresh": "2024-09-21T17:26:29.785235Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:21:30.391138Z 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-21T17:19:27.246749Z", "last_refresh": "2024-09-21T17:26:29.331305Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2024-09-21T17:21:34.143255Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-21T17:19:25.364213Z", "last_refresh": "2024-09-21T17:26:29.331436Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-21T17:19:31.168272Z", "last_refresh": "2024-09-21T17:26:29.785337Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:27:33.476932Z 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.50/16"}, "status": {"created": "2024-09-21T17:26:38.477880Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.50/16"}}, {"events": ["2024-09-21T17:21:39.005572Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-21T17:19:23.331025Z", "last_refresh": "2024-09-21T17:26:29.331656Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T17:21:45.261517Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi050:172.21.15.50=smithi050", "smithi170:172.21.15.170=smithi170"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-21T17:21:02.369338Z", "last_refresh": "2024-09-21T17:26:29.331779Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T17:26:53.698218Z 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-21T17:26:38.471908Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-21T17:21:35.496343Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-21T17:19:33.193332Z", "last_refresh": "2024-09-21T17:26:29.331548Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-21T17:22:07.706206Z 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-21T17:22:07.694372Z", "last_refresh": "2024-09-21T17:26:29.331890Z", "running": 8, "size": 8}}, {"events": ["2024-09-21T17:21:45.271119Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-21T17:19:29.214162Z", "last_refresh": "2024-09-21T17:26:29.785466Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:26:49.217434Z 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-21T17:26:49.208750Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-21T17:27:38.630 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-21T17:27:38.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:38 smithi050 bash[19920]: cluster 2024-09-21T17:27:37.193545+0000 mgr.smithi050.baqqjh (mgr.14203) 284 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:27:38.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:38 smithi050 bash[19920]: cluster 2024-09-21T17:27:37.193545+0000 mgr.smithi050.baqqjh (mgr.14203) 284 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:27:39.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:38 smithi170 bash[24572]: cluster 2024-09-21T17:27:37.193545+0000 mgr.smithi050.baqqjh (mgr.14203) 284 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:27:39.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:38 smithi170 bash[24572]: cluster 2024-09-21T17:27:37.193545+0000 mgr.smithi050.baqqjh (mgr.14203) 284 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:27:39.631 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch ls -f json 2024-09-21T17:27:39.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:39 smithi170 bash[24572]: audit 2024-09-21T17:27:38.021919+0000 mgr.smithi050.baqqjh (mgr.14203) 285 : audit [DBG] from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:39.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:39 smithi170 bash[24572]: audit 2024-09-21T17:27:38.021919+0000 mgr.smithi050.baqqjh (mgr.14203) 285 : audit [DBG] from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:39.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:39 smithi170 bash[24572]: audit 2024-09-21T17:27:39.267764+0000 mon.smithi050 (mon.0) 883 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:39.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:39 smithi170 bash[24572]: audit 2024-09-21T17:27:39.267764+0000 mon.smithi050 (mon.0) 883 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:39.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:39 smithi170 bash[24572]: audit 2024-09-21T17:27:39.272983+0000 mon.smithi050 (mon.0) 884 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:39.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:39 smithi170 bash[24572]: audit 2024-09-21T17:27:39.272983+0000 mon.smithi050 (mon.0) 884 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:39.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:39 smithi050 bash[19920]: audit 2024-09-21T17:27:38.021919+0000 mgr.smithi050.baqqjh (mgr.14203) 285 : audit [DBG] from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:39.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:39 smithi050 bash[19920]: audit 2024-09-21T17:27:38.021919+0000 mgr.smithi050.baqqjh (mgr.14203) 285 : audit [DBG] from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:39.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:39 smithi050 bash[19920]: audit 2024-09-21T17:27:39.267764+0000 mon.smithi050 (mon.0) 883 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:39.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:39 smithi050 bash[19920]: audit 2024-09-21T17:27:39.267764+0000 mon.smithi050 (mon.0) 883 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:39.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:39 smithi050 bash[19920]: audit 2024-09-21T17:27:39.272983+0000 mon.smithi050 (mon.0) 884 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:39.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:39 smithi050 bash[19920]: audit 2024-09-21T17:27:39.272983+0000 mon.smithi050 (mon.0) 884 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:40.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:40 smithi050 bash[19920]: cluster 2024-09-21T17:27:39.194269+0000 mgr.smithi050.baqqjh (mgr.14203) 286 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-09-21T17:27:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:40 smithi050 bash[19920]: cluster 2024-09-21T17:27:39.194269+0000 mgr.smithi050.baqqjh (mgr.14203) 286 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-09-21T17:27:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:40 smithi050 bash[19920]: audit 2024-09-21T17:27:40.202514+0000 mon.smithi050 (mon.0) 885 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:40 smithi050 bash[19920]: audit 2024-09-21T17:27:40.202514+0000 mon.smithi050 (mon.0) 885 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:40 smithi050 bash[19920]: audit 2024-09-21T17:27:40.208731+0000 mon.smithi050 (mon.0) 886 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:40 smithi050 bash[19920]: audit 2024-09-21T17:27:40.208731+0000 mon.smithi050 (mon.0) 886 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:40 smithi170 bash[24572]: cluster 2024-09-21T17:27:39.194269+0000 mgr.smithi050.baqqjh (mgr.14203) 286 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-09-21T17:27:41.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:40 smithi170 bash[24572]: cluster 2024-09-21T17:27:39.194269+0000 mgr.smithi050.baqqjh (mgr.14203) 286 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-09-21T17:27:41.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:40 smithi170 bash[24572]: audit 2024-09-21T17:27:40.202514+0000 mon.smithi050 (mon.0) 885 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:40 smithi170 bash[24572]: audit 2024-09-21T17:27:40.202514+0000 mon.smithi050 (mon.0) 885 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:40 smithi170 bash[24572]: audit 2024-09-21T17:27:40.208731+0000 mon.smithi050 (mon.0) 886 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:40 smithi170 bash[24572]: audit 2024-09-21T17:27:40.208731+0000 mon.smithi050 (mon.0) 886 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:40.842021+0000 mon.smithi050 (mon.0) 887 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:27:41.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:40.842021+0000 mon.smithi050 (mon.0) 887 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:27:41.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:40.843873+0000 mon.smithi050 (mon.0) 888 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:27:41.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:40.843873+0000 mon.smithi050 (mon.0) 888 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.314929+0000 mon.smithi050 (mon.0) 889 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.314929+0000 mon.smithi050 (mon.0) 889 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.322848+0000 mon.smithi050 (mon.0) 890 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.322848+0000 mon.smithi050 (mon.0) 890 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.329648+0000 mon.smithi050 (mon.0) 891 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.329648+0000 mon.smithi050 (mon.0) 891 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.333402+0000 mon.smithi050 (mon.0) 892 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.333402+0000 mon.smithi050 (mon.0) 892 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.345854+0000 mon.smithi050 (mon.0) 893 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.345854+0000 mon.smithi050 (mon.0) 893 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.570833+0000 mon.smithi050 (mon.0) 894 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:27:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:41 smithi050 bash[19920]: audit 2024-09-21T17:27:41.570833+0000 mon.smithi050 (mon.0) 894 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:27:42.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:40.842021+0000 mon.smithi050 (mon.0) 887 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:27:42.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:40.842021+0000 mon.smithi050 (mon.0) 887 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:27:42.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:40.843873+0000 mon.smithi050 (mon.0) 888 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:40.843873+0000 mon.smithi050 (mon.0) 888 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.314929+0000 mon.smithi050 (mon.0) 889 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.314929+0000 mon.smithi050 (mon.0) 889 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.322848+0000 mon.smithi050 (mon.0) 890 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.322848+0000 mon.smithi050 (mon.0) 890 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.329648+0000 mon.smithi050 (mon.0) 891 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.329648+0000 mon.smithi050 (mon.0) 891 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.333402+0000 mon.smithi050 (mon.0) 892 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.333402+0000 mon.smithi050 (mon.0) 892 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.345854+0000 mon.smithi050 (mon.0) 893 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.345854+0000 mon.smithi050 (mon.0) 893 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:42.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.570833+0000 mon.smithi050 (mon.0) 894 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:27:42.107 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:41 smithi170 bash[24572]: audit 2024-09-21T17:27:41.570833+0000 mon.smithi050 (mon.0) 894 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:27:43.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: cephadm 2024-09-21T17:27:40.855509+0000 mgr.smithi050.baqqjh (mgr.14203) 287 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T17:27:43.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: cephadm 2024-09-21T17:27:40.855509+0000 mgr.smithi050.baqqjh (mgr.14203) 287 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T17:27:43.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: cluster 2024-09-21T17:27:41.195459+0000 mgr.smithi050.baqqjh (mgr.14203) 288 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-21T17:27:43.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: cluster 2024-09-21T17:27:41.195459+0000 mgr.smithi050.baqqjh (mgr.14203) 288 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-21T17:27:43.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: cephadm 2024-09-21T17:27:41.368186+0000 mgr.smithi050.baqqjh (mgr.14203) 289 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:27:43.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: cephadm 2024-09-21T17:27:41.368186+0000 mgr.smithi050.baqqjh (mgr.14203) 289 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:27:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: audit 2024-09-21T17:27:41.572738+0000 mgr.smithi050.baqqjh (mgr.14203) 290 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:27:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: audit 2024-09-21T17:27:41.572738+0000 mgr.smithi050.baqqjh (mgr.14203) 290 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:27:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: cephadm 2024-09-21T17:27:41.635869+0000 mgr.smithi050.baqqjh (mgr.14203) 291 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:27:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: cephadm 2024-09-21T17:27:41.635869+0000 mgr.smithi050.baqqjh (mgr.14203) 291 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:27:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: audit 2024-09-21T17:27:42.182835+0000 mon.smithi050 (mon.0) 895 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:27:43.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:42 smithi170 bash[24572]: audit 2024-09-21T17:27:42.182835+0000 mon.smithi050 (mon.0) 895 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:27:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: cephadm 2024-09-21T17:27:40.855509+0000 mgr.smithi050.baqqjh (mgr.14203) 287 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T17:27:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: cephadm 2024-09-21T17:27:40.855509+0000 mgr.smithi050.baqqjh (mgr.14203) 287 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T17:27:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: cluster 2024-09-21T17:27:41.195459+0000 mgr.smithi050.baqqjh (mgr.14203) 288 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-21T17:27:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: cluster 2024-09-21T17:27:41.195459+0000 mgr.smithi050.baqqjh (mgr.14203) 288 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-21T17:27:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: cephadm 2024-09-21T17:27:41.368186+0000 mgr.smithi050.baqqjh (mgr.14203) 289 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:27:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: cephadm 2024-09-21T17:27:41.368186+0000 mgr.smithi050.baqqjh (mgr.14203) 289 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:27:43.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: audit 2024-09-21T17:27:41.572738+0000 mgr.smithi050.baqqjh (mgr.14203) 290 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:27:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: audit 2024-09-21T17:27:41.572738+0000 mgr.smithi050.baqqjh (mgr.14203) 290 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:27:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: cephadm 2024-09-21T17:27:41.635869+0000 mgr.smithi050.baqqjh (mgr.14203) 291 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:27:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: cephadm 2024-09-21T17:27:41.635869+0000 mgr.smithi050.baqqjh (mgr.14203) 291 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:27:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: audit 2024-09-21T17:27:42.182835+0000 mon.smithi050 (mon.0) 895 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:27:43.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:42 smithi050 bash[19920]: audit 2024-09-21T17:27:42.182835+0000 mon.smithi050 (mon.0) 895 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T17:27:44.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:43 smithi170 bash[24572]: audit 2024-09-21T17:27:42.183934+0000 mgr.smithi050.baqqjh (mgr.14203) 292 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:27:44.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:43 smithi170 bash[24572]: audit 2024-09-21T17:27:42.183934+0000 mgr.smithi050.baqqjh (mgr.14203) 292 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:27:44.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:43 smithi050 bash[19920]: audit 2024-09-21T17:27:42.183934+0000 mgr.smithi050.baqqjh (mgr.14203) 292 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:27:44.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:43 smithi050 bash[19920]: audit 2024-09-21T17:27:42.183934+0000 mgr.smithi050.baqqjh (mgr.14203) 292 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T17:27:44.626 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:27:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:44 smithi050 bash[19920]: cluster 2024-09-21T17:27:43.196224+0000 mgr.smithi050.baqqjh (mgr.14203) 293 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-21T17:27:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:44 smithi050 bash[19920]: cluster 2024-09-21T17:27:43.196224+0000 mgr.smithi050.baqqjh (mgr.14203) 293 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-21T17:27:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:44 smithi170 bash[24572]: cluster 2024-09-21T17:27:43.196224+0000 mgr.smithi050.baqqjh (mgr.14203) 293 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-21T17:27:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:44 smithi170 bash[24572]: cluster 2024-09-21T17:27:43.196224+0000 mgr.smithi050.baqqjh (mgr.14203) 293 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-09-21T17:27:46.051 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:45 smithi050 bash[19920]: audit 2024-09-21T17:27:45.582167+0000 mon.smithi050 (mon.0) 896 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:46.052 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:45 smithi050 bash[19920]: audit 2024-09-21T17:27:45.582167+0000 mon.smithi050 (mon.0) 896 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:46.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:45 smithi170 bash[24572]: audit 2024-09-21T17:27:45.582167+0000 mon.smithi050 (mon.0) 896 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:46.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:45 smithi170 bash[24572]: audit 2024-09-21T17:27:45.582167+0000 mon.smithi050 (mon.0) 896 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:27:46.522 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:27:46.522 INFO:teuthology.orchestra.run.smithi050.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-21T17:19:35.133081Z", "last_refresh": "2024-09-21T17:27:40.196185Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:21:30.391138Z 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-21T17:19:27.246749Z", "last_refresh": "2024-09-21T17:27:39.256616Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2024-09-21T17:21:34.143255Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-21T17:19:25.364213Z", "last_refresh": "2024-09-21T17:27:39.256844Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-21T17:19:31.168272Z", "last_refresh": "2024-09-21T17:27:40.196283Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:27:33.476932Z 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.50/16"}, "status": {"created": "2024-09-21T17:26:38.477880Z", "last_refresh": "2024-09-21T17:27:39.259276Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.50/16"}}, {"events": ["2024-09-21T17:21:39.005572Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-21T17:19:23.331025Z", "last_refresh": "2024-09-21T17:27:39.257395Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T17:21:45.261517Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi050:172.21.15.50=smithi050", "smithi170:172.21.15.170=smithi170"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-21T17:21:02.369338Z", "last_refresh": "2024-09-21T17:27:39.257665Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T17:27:41.346153Z 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-21T17:26:38.471908Z", "last_refresh": "2024-09-21T17:27:40.196972Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:21:35.496343Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-21T17:19:33.193332Z", "last_refresh": "2024-09-21T17:27:39.257121Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-21T17:22:07.706206Z 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-21T17:22:07.694372Z", "last_refresh": "2024-09-21T17:27:39.257933Z", "running": 8, "size": 8}}, {"events": ["2024-09-21T17:21:45.271119Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-21T17:19:29.214162Z", "last_refresh": "2024-09-21T17:27:40.196381Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:26:49.217434Z 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-21T17:26:49.208750Z", "last_refresh": "2024-09-21T17:27:39.259004Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-21T17:27:46.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:46 smithi050 bash[19920]: cluster 2024-09-21T17:27:45.197857+0000 mgr.smithi050.baqqjh (mgr.14203) 294 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T17:27:46.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:46 smithi050 bash[19920]: cluster 2024-09-21T17:27:45.197857+0000 mgr.smithi050.baqqjh (mgr.14203) 294 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T17:27:47.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:46 smithi170 bash[24572]: cluster 2024-09-21T17:27:45.197857+0000 mgr.smithi050.baqqjh (mgr.14203) 294 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T17:27:47.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:46 smithi170 bash[24572]: cluster 2024-09-21T17:27:45.197857+0000 mgr.smithi050.baqqjh (mgr.14203) 294 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.1 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T17:27:47.528 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-21T17:27:47.528 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-21T17:27:47.544 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-21T17:27:47.545 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- ceph orch ls -f json 2024-09-21T17:27:47.863 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:47 smithi050 bash[19920]: audit 2024-09-21T17:27:46.517209+0000 mgr.smithi050.baqqjh (mgr.14203) 295 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:47.863 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:47 smithi050 bash[19920]: audit 2024-09-21T17:27:46.517209+0000 mgr.smithi050.baqqjh (mgr.14203) 295 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:48.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:47 smithi170 bash[24572]: audit 2024-09-21T17:27:46.517209+0000 mgr.smithi050.baqqjh (mgr.14203) 295 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:48.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:47 smithi170 bash[24572]: audit 2024-09-21T17:27:46.517209+0000 mgr.smithi050.baqqjh (mgr.14203) 295 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:49.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: cluster 2024-09-21T17:27:47.198716+0000 mgr.smithi050.baqqjh (mgr.14203) 296 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: cluster 2024-09-21T17:27:47.198716+0000 mgr.smithi050.baqqjh (mgr.14203) 296 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: audit 2024-09-21T17:27:48.186852+0000 mon.smithi050 (mon.0) 897 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: audit 2024-09-21T17:27:48.186852+0000 mon.smithi050 (mon.0) 897 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: audit 2024-09-21T17:27:48.192627+0000 mon.smithi050 (mon.0) 898 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: audit 2024-09-21T17:27:48.192627+0000 mon.smithi050 (mon.0) 898 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: audit 2024-09-21T17:27:48.199920+0000 mon.smithi050 (mon.0) 899 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: audit 2024-09-21T17:27:48.199920+0000 mon.smithi050 (mon.0) 899 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: audit 2024-09-21T17:27:48.611050+0000 mon.smithi050 (mon.0) 900 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:27:49.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:48 smithi170 bash[24572]: audit 2024-09-21T17:27:48.611050+0000 mon.smithi050 (mon.0) 900 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: cluster 2024-09-21T17:27:47.198716+0000 mgr.smithi050.baqqjh (mgr.14203) 296 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: cluster 2024-09-21T17:27:47.198716+0000 mgr.smithi050.baqqjh (mgr.14203) 296 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: audit 2024-09-21T17:27:48.186852+0000 mon.smithi050 (mon.0) 897 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: audit 2024-09-21T17:27:48.186852+0000 mon.smithi050 (mon.0) 897 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: audit 2024-09-21T17:27:48.192627+0000 mon.smithi050 (mon.0) 898 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: audit 2024-09-21T17:27:48.192627+0000 mon.smithi050 (mon.0) 898 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: audit 2024-09-21T17:27:48.199920+0000 mon.smithi050 (mon.0) 899 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: audit 2024-09-21T17:27:48.199920+0000 mon.smithi050 (mon.0) 899 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: audit 2024-09-21T17:27:48.611050+0000 mon.smithi050 (mon.0) 900 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:27:49.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:48 smithi050 bash[19920]: audit 2024-09-21T17:27:48.611050+0000 mon.smithi050 (mon.0) 900 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:27:50.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:49 smithi170 bash[24572]: audit 2024-09-21T17:27:48.200380+0000 mgr.smithi050.baqqjh (mgr.14203) 297 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:27:50.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:49 smithi170 bash[24572]: audit 2024-09-21T17:27:48.200380+0000 mgr.smithi050.baqqjh (mgr.14203) 297 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:27:50.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:49 smithi050 bash[19920]: audit 2024-09-21T17:27:48.200380+0000 mgr.smithi050.baqqjh (mgr.14203) 297 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:27:50.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:49 smithi050 bash[19920]: audit 2024-09-21T17:27:48.200380+0000 mgr.smithi050.baqqjh (mgr.14203) 297 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:27:51.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:50 smithi170 bash[24572]: cluster 2024-09-21T17:27:49.199875+0000 mgr.smithi050.baqqjh (mgr.14203) 298 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:51.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:50 smithi170 bash[24572]: cluster 2024-09-21T17:27:49.199875+0000 mgr.smithi050.baqqjh (mgr.14203) 298 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:51.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:50 smithi050 bash[19920]: cluster 2024-09-21T17:27:49.199875+0000 mgr.smithi050.baqqjh (mgr.14203) 298 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:51.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:50 smithi050 bash[19920]: cluster 2024-09-21T17:27:49.199875+0000 mgr.smithi050.baqqjh (mgr.14203) 298 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:53.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:52 smithi170 bash[24572]: cluster 2024-09-21T17:27:51.201756+0000 mgr.smithi050.baqqjh (mgr.14203) 299 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:53.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:52 smithi170 bash[24572]: cluster 2024-09-21T17:27:51.201756+0000 mgr.smithi050.baqqjh (mgr.14203) 299 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:53.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:52 smithi050 bash[19920]: cluster 2024-09-21T17:27:51.201756+0000 mgr.smithi050.baqqjh (mgr.14203) 299 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:53.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:52 smithi050 bash[19920]: cluster 2024-09-21T17:27:51.201756+0000 mgr.smithi050.baqqjh (mgr.14203) 299 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:53.448 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:27:54.954 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-09-21T17:27:54.954 INFO:teuthology.orchestra.run.smithi050.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-21T17:19:35.133081Z", "last_refresh": "2024-09-21T17:27:54.599604Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:21:30.391138Z 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-21T17:19:27.246749Z", "last_refresh": "2024-09-21T17:27:54.369588Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2024-09-21T17:21:34.143255Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-21T17:19:25.364213Z", "last_refresh": "2024-09-21T17:27:54.369711Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-21T17:19:31.168272Z", "last_refresh": "2024-09-21T17:27:54.599702Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:27:33.476932Z 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.50/16"}, "status": {"created": "2024-09-21T17:26:38.477880Z", "last_refresh": "2024-09-21T17:27:54.370609Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.50/16"}}, {"events": ["2024-09-21T17:21:39.005572Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-21T17:19:23.331025Z", "last_refresh": "2024-09-21T17:27:54.369914Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T17:21:45.261517Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi050:172.21.15.50=smithi050", "smithi170:172.21.15.170=smithi170"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-21T17:21:02.369338Z", "last_refresh": "2024-09-21T17:27:54.370013Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T17:27:54.921011Z 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-21T17:26:38.471908Z", "last_refresh": "2024-09-21T17:27:54.600420Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:21:35.496343Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-21T17:19:33.193332Z", "last_refresh": "2024-09-21T17:27:54.369814Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-21T17:22:07.706206Z 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-21T17:22:07.694372Z", "last_refresh": "2024-09-21T17:27:54.370111Z", "running": 8, "size": 8}}, {"events": ["2024-09-21T17:21:45.271119Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-21T17:19:29.214162Z", "last_refresh": "2024-09-21T17:27:54.599822Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-21T17:26:49.217434Z 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-21T17:26:49.208750Z", "last_refresh": "2024-09-21T17:27:54.370510Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: cluster 2024-09-21T17:27:53.202599+0000 mgr.smithi050.baqqjh (mgr.14203) 300 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: cluster 2024-09-21T17:27:53.202599+0000 mgr.smithi050.baqqjh (mgr.14203) 300 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.375776+0000 mon.smithi050 (mon.0) 901 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.375776+0000 mon.smithi050 (mon.0) 901 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.380837+0000 mon.smithi050 (mon.0) 902 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.380837+0000 mon.smithi050 (mon.0) 902 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.605736+0000 mon.smithi050 (mon.0) 903 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.605736+0000 mon.smithi050 (mon.0) 903 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.611477+0000 mon.smithi050 (mon.0) 904 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:54.967 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.611477+0000 mon.smithi050 (mon.0) 904 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:54.968 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.612724+0000 mon.smithi050 (mon.0) 905 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:27:54.968 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.612724+0000 mon.smithi050 (mon.0) 905 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:27:54.968 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.613505+0000 mon.smithi050 (mon.0) 906 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:27:54.968 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:54 smithi050 bash[19920]: audit 2024-09-21T17:27:54.613505+0000 mon.smithi050 (mon.0) 906 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:27:55.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: cluster 2024-09-21T17:27:53.202599+0000 mgr.smithi050.baqqjh (mgr.14203) 300 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:55.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: cluster 2024-09-21T17:27:53.202599+0000 mgr.smithi050.baqqjh (mgr.14203) 300 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:55.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.375776+0000 mon.smithi050 (mon.0) 901 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.108 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.375776+0000 mon.smithi050 (mon.0) 901 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.380837+0000 mon.smithi050 (mon.0) 902 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.380837+0000 mon.smithi050 (mon.0) 902 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.605736+0000 mon.smithi050 (mon.0) 903 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.605736+0000 mon.smithi050 (mon.0) 903 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.611477+0000 mon.smithi050 (mon.0) 904 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.611477+0000 mon.smithi050 (mon.0) 904 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.612724+0000 mon.smithi050 (mon.0) 905 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.612724+0000 mon.smithi050 (mon.0) 905 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.613505+0000 mon.smithi050 (mon.0) 906 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:27:55.109 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:54 smithi170 bash[24572]: audit 2024-09-21T17:27:54.613505+0000 mon.smithi050 (mon.0) 906 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:27:55.597 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-21T17:27:55.597 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-21T17:27:55.789 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:27:55.789 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-21T17:27:55.804 INFO:teuthology.orchestra.run.smithi050.stderr:+ mkdir /mnt/foo 2024-09-21T17:27:55.820 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-21T17:27:55.872 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:55 smithi050 bash[19920]: cephadm 2024-09-21T17:27:54.618741+0000 mgr.smithi050.baqqjh (mgr.14203) 301 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T17:27:55.872 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:55 smithi050 bash[19920]: cephadm 2024-09-21T17:27:54.618741+0000 mgr.smithi050.baqqjh (mgr.14203) 301 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T17:27:55.872 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:55 smithi050 bash[19920]: audit 2024-09-21T17:27:54.904321+0000 mon.smithi050 (mon.0) 907 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.872 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:55 smithi050 bash[19920]: audit 2024-09-21T17:27:54.904321+0000 mon.smithi050 (mon.0) 907 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.872 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:55 smithi050 bash[19920]: audit 2024-09-21T17:27:54.907640+0000 mon.smithi050 (mon.0) 908 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:27:55.872 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:55 smithi050 bash[19920]: audit 2024-09-21T17:27:54.907640+0000 mon.smithi050 (mon.0) 908 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:27:55.872 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:55 smithi050 bash[19920]: audit 2024-09-21T17:27:54.920789+0000 mon.smithi050 (mon.0) 909 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.873 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:55 smithi050 bash[19920]: audit 2024-09-21T17:27:54.920789+0000 mon.smithi050 (mon.0) 909 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:55.874 INFO:teuthology.orchestra.run.smithi050.stderr:+ sleep 5 2024-09-21T17:27:56.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:55 smithi170 bash[24572]: cephadm 2024-09-21T17:27:54.618741+0000 mgr.smithi050.baqqjh (mgr.14203) 301 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T17:27:56.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:55 smithi170 bash[24572]: cephadm 2024-09-21T17:27:54.618741+0000 mgr.smithi050.baqqjh (mgr.14203) 301 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T17:27:56.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:55 smithi170 bash[24572]: audit 2024-09-21T17:27:54.904321+0000 mon.smithi050 (mon.0) 907 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:56.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:55 smithi170 bash[24572]: audit 2024-09-21T17:27:54.904321+0000 mon.smithi050 (mon.0) 907 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:56.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:55 smithi170 bash[24572]: audit 2024-09-21T17:27:54.907640+0000 mon.smithi050 (mon.0) 908 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:27:56.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:55 smithi170 bash[24572]: audit 2024-09-21T17:27:54.907640+0000 mon.smithi050 (mon.0) 908 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:27:56.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:55 smithi170 bash[24572]: audit 2024-09-21T17:27:54.920789+0000 mon.smithi050 (mon.0) 909 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:56.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:55 smithi170 bash[24572]: audit 2024-09-21T17:27:54.920789+0000 mon.smithi050 (mon.0) 909 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:27:57.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:56 smithi170 bash[24572]: audit 2024-09-21T17:27:54.947482+0000 mgr.smithi050.baqqjh (mgr.14203) 302 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:57.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:56 smithi170 bash[24572]: audit 2024-09-21T17:27:54.947482+0000 mgr.smithi050.baqqjh (mgr.14203) 302 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:57.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:56 smithi170 bash[24572]: cluster 2024-09-21T17:27:55.204656+0000 mgr.smithi050.baqqjh (mgr.14203) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:57.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:56 smithi170 bash[24572]: cluster 2024-09-21T17:27:55.204656+0000 mgr.smithi050.baqqjh (mgr.14203) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:57.230 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:56 smithi050 bash[19920]: audit 2024-09-21T17:27:54.947482+0000 mgr.smithi050.baqqjh (mgr.14203) 302 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:57.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:56 smithi050 bash[19920]: audit 2024-09-21T17:27:54.947482+0000 mgr.smithi050.baqqjh (mgr.14203) 302 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T17:27:57.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:56 smithi050 bash[19920]: cluster 2024-09-21T17:27:55.204656+0000 mgr.smithi050.baqqjh (mgr.14203) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:57.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:56 smithi050 bash[19920]: cluster 2024-09-21T17:27:55.204656+0000 mgr.smithi050.baqqjh (mgr.14203) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T17:27:58.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:57 smithi170 bash[24572]: cluster 2024-09-21T17:27:57.206217+0000 mgr.smithi050.baqqjh (mgr.14203) 304 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T17:27:58.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:27:57 smithi170 bash[24572]: cluster 2024-09-21T17:27:57.206217+0000 mgr.smithi050.baqqjh (mgr.14203) 304 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T17:27:58.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:57 smithi050 bash[19920]: cluster 2024-09-21T17:27:57.206217+0000 mgr.smithi050.baqqjh (mgr.14203) 304 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T17:27:58.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:27:57 smithi050 bash[19920]: cluster 2024-09-21T17:27:57.206217+0000 mgr.smithi050.baqqjh (mgr.14203) 304 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T17:28:00.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:00 smithi170 bash[24572]: cluster 2024-09-21T17:27:59.207434+0000 mgr.smithi050.baqqjh (mgr.14203) 305 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 1 op/s 2024-09-21T17:28:00.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:00 smithi170 bash[24572]: cluster 2024-09-21T17:27:59.207434+0000 mgr.smithi050.baqqjh (mgr.14203) 305 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 1 op/s 2024-09-21T17:28:00.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:00 smithi050 bash[19920]: cluster 2024-09-21T17:27:59.207434+0000 mgr.smithi050.baqqjh (mgr.14203) 305 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 1 op/s 2024-09-21T17:28:00.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:00 smithi050 bash[19920]: cluster 2024-09-21T17:27:59.207434+0000 mgr.smithi050.baqqjh (mgr.14203) 305 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 1 op/s 2024-09-21T17:28:00.877 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.50:/foouser /mnt/foo' 2024-09-21T17:28:00.929 INFO:teuthology.orchestra.run.smithi050.stderr:+ mount -t nfs 10.0.31.50:/foouser /mnt/foo 2024-09-21T17:28:01.224 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'test -d /mnt/foo/foobucket' 2024-09-21T17:28:01.277 INFO:teuthology.orchestra.run.smithi050.stderr:+ test -d /mnt/foo/foobucket 2024-09-21T17:28:01.284 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-21T17:28:01.341 INFO:teuthology.orchestra.run.smithi050.stderr:+ find /mnt/foo -ls 2024-09-21T17:28:01.351 INFO:teuthology.orchestra.run.smithi050.stdout:9160472602707183340 0 drwxrwxrwx 1 root root 0 Sep 21 17:27 /mnt/foo 2024-09-21T17:28:01.351 INFO:teuthology.orchestra.run.smithi050.stdout:6353740190238711428 0 drwxrwxrwx 1 root root 0 Sep 21 17:27 /mnt/foo/foobucket 2024-09-21T17:28:01.351 INFO:teuthology.orchestra.run.smithi050.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 21 17:27 /mnt/foo/foobucket/myobject 2024-09-21T17:28:01.352 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/foobucket/myobject' 2024-09-21T17:28:01.405 INFO:teuthology.orchestra.run.smithi050.stderr:+ grep thebody /mnt/foo/foobucket/myobject 2024-09-21T17:28:01.412 INFO:teuthology.orchestra.run.smithi050.stdout:thebody 2024-09-21T17:28:01.413 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/foobucket/newobject' 2024-09-21T17:28:01.471 INFO:teuthology.orchestra.run.smithi050.stderr:+ echo test 2024-09-21T17:28:01.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:01 smithi050 bash[19920]: audit 2024-09-21T17:28:00.582938+0000 mon.smithi050 (mon.0) 910 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:01.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:01 smithi050 bash[19920]: audit 2024-09-21T17:28:00.582938+0000 mon.smithi050 (mon.0) 910 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:01.499 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-21T17:28:01.558 INFO:teuthology.orchestra.run.smithi050.stderr:+ sync 2024-09-21T17:28:01.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:01 smithi170 bash[24572]: audit 2024-09-21T17:28:00.582938+0000 mon.smithi050 (mon.0) 910 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:01.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:01 smithi170 bash[24572]: audit 2024-09-21T17:28:00.582938+0000 mon.smithi050 (mon.0) 910 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:01.891 INFO:teuthology.run_tasks:Running task python... 2024-09-21T17:28:01.902 INFO:tasks.python:Running python on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:28:01.902 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-21T17:28:01.902 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-21T17:28:02.222 INFO:teuthology.orchestra.run.smithi050.stdout:b'test\n' 2024-09-21T17:28:02.284 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-21T17:28:02.293 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:28:02.293 DEBUG:teuthology.orchestra.run.smithi050:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-21T17:28:02.304 INFO:teuthology.orchestra.run.smithi050.stderr:+ umount /mnt/foo 2024-09-21T17:28:02.368 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T17:28:02.378 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:28:02.378 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph nfs export rm foo /foouser' 2024-09-21T17:28:02.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:02 smithi170 bash[24572]: cluster 2024-09-21T17:28:01.208407+0000 mgr.smithi050.baqqjh (mgr.14203) 306 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T17:28:02.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:02 smithi170 bash[24572]: cluster 2024-09-21T17:28:01.208407+0000 mgr.smithi050.baqqjh (mgr.14203) 306 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T17:28:02.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:02 smithi050 bash[19920]: cluster 2024-09-21T17:28:01.208407+0000 mgr.smithi050.baqqjh (mgr.14203) 306 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T17:28:02.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:02 smithi050 bash[19920]: cluster 2024-09-21T17:28:01.208407+0000 mgr.smithi050.baqqjh (mgr.14203) 306 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T17:28:04.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:04 smithi170 bash[24572]: cluster 2024-09-21T17:28:03.209169+0000 mgr.smithi050.baqqjh (mgr.14203) 307 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T17:28:04.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:04 smithi170 bash[24572]: cluster 2024-09-21T17:28:03.209169+0000 mgr.smithi050.baqqjh (mgr.14203) 307 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T17:28:04.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:04 smithi050 bash[19920]: cluster 2024-09-21T17:28:03.209169+0000 mgr.smithi050.baqqjh (mgr.14203) 307 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T17:28:04.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:04 smithi050 bash[19920]: cluster 2024-09-21T17:28:03.209169+0000 mgr.smithi050.baqqjh (mgr.14203) 307 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T17:28:06.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:06 smithi170 bash[24572]: cluster 2024-09-21T17:28:05.210823+0000 mgr.smithi050.baqqjh (mgr.14203) 308 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.4 KiB/s rd, 511 B/s wr, 10 op/s 2024-09-21T17:28:06.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:06 smithi170 bash[24572]: cluster 2024-09-21T17:28:05.210823+0000 mgr.smithi050.baqqjh (mgr.14203) 308 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.4 KiB/s rd, 511 B/s wr, 10 op/s 2024-09-21T17:28:06.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:06 smithi050 bash[19920]: cluster 2024-09-21T17:28:05.210823+0000 mgr.smithi050.baqqjh (mgr.14203) 308 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.4 KiB/s rd, 511 B/s wr, 10 op/s 2024-09-21T17:28:06.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:06 smithi050 bash[19920]: cluster 2024-09-21T17:28:05.210823+0000 mgr.smithi050.baqqjh (mgr.14203) 308 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 7.4 KiB/s rd, 511 B/s wr, 10 op/s 2024-09-21T17:28:07.287 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:28:08.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:08 smithi170 bash[24572]: cluster 2024-09-21T17:28:07.212357+0000 mgr.smithi050.baqqjh (mgr.14203) 309 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-21T17:28:08.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:08 smithi170 bash[24572]: cluster 2024-09-21T17:28:07.212357+0000 mgr.smithi050.baqqjh (mgr.14203) 309 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-21T17:28:08.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:08 smithi050 bash[19920]: cluster 2024-09-21T17:28:07.212357+0000 mgr.smithi050.baqqjh (mgr.14203) 309 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-21T17:28:08.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:08 smithi050 bash[19920]: cluster 2024-09-21T17:28:07.212357+0000 mgr.smithi050.baqqjh (mgr.14203) 309 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-21T17:28:09.502 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph nfs cluster rm foo' 2024-09-21T17:28:10.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:10 smithi170 bash[24572]: audit 2024-09-21T17:28:08.830116+0000 mgr.smithi050.baqqjh (mgr.14203) 310 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:10.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:10 smithi170 bash[24572]: audit 2024-09-21T17:28:08.830116+0000 mgr.smithi050.baqqjh (mgr.14203) 310 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:10.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:10 smithi170 bash[24572]: cluster 2024-09-21T17:28:09.213682+0000 mgr.smithi050.baqqjh (mgr.14203) 311 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-21T17:28:10.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:10 smithi170 bash[24572]: cluster 2024-09-21T17:28:09.213682+0000 mgr.smithi050.baqqjh (mgr.14203) 311 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-21T17:28:10.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:10 smithi050 bash[19920]: audit 2024-09-21T17:28:08.830116+0000 mgr.smithi050.baqqjh (mgr.14203) 310 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:10.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:10 smithi050 bash[19920]: audit 2024-09-21T17:28:08.830116+0000 mgr.smithi050.baqqjh (mgr.14203) 310 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:10.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:10 smithi050 bash[19920]: cluster 2024-09-21T17:28:09.213682+0000 mgr.smithi050.baqqjh (mgr.14203) 311 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-21T17:28:10.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:10 smithi050 bash[19920]: cluster 2024-09-21T17:28:09.213682+0000 mgr.smithi050.baqqjh (mgr.14203) 311 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 584 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 511 B/s wr, 14 op/s 2024-09-21T17:28:12.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:12 smithi170 bash[24572]: cluster 2024-09-21T17:28:11.215607+0000 mgr.smithi050.baqqjh (mgr.14203) 312 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:12.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:12 smithi170 bash[24572]: cluster 2024-09-21T17:28:11.215607+0000 mgr.smithi050.baqqjh (mgr.14203) 312 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:12.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:12 smithi050 bash[19920]: cluster 2024-09-21T17:28:11.215607+0000 mgr.smithi050.baqqjh (mgr.14203) 312 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:12.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:12 smithi050 bash[19920]: cluster 2024-09-21T17:28:11.215607+0000 mgr.smithi050.baqqjh (mgr.14203) 312 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:14.380 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:28:14.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:14 smithi170 bash[24572]: cluster 2024-09-21T17:28:13.216403+0000 mgr.smithi050.baqqjh (mgr.14203) 313 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:14.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:14 smithi170 bash[24572]: cluster 2024-09-21T17:28:13.216403+0000 mgr.smithi050.baqqjh (mgr.14203) 313 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:14.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:14 smithi050 bash[19920]: cluster 2024-09-21T17:28:13.216403+0000 mgr.smithi050.baqqjh (mgr.14203) 313 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:14.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:14 smithi050 bash[19920]: cluster 2024-09-21T17:28:13.216403+0000 mgr.smithi050.baqqjh (mgr.14203) 313 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:15.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:15 smithi170 bash[24572]: audit 2024-09-21T17:28:15.173729+0000 mon.smithi050 (mon.0) 911 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.6", "id": [4, 0]} : dispatch 2024-09-21T17:28:15.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:15 smithi170 bash[24572]: audit 2024-09-21T17:28:15.173729+0000 mon.smithi050 (mon.0) 911 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.6", "id": [4, 0]} : dispatch 2024-09-21T17:28:15.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:15 smithi170 bash[24572]: audit 2024-09-21T17:28:15.174291+0000 mon.smithi050 (mon.0) 912 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]} : dispatch 2024-09-21T17:28:15.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:15 smithi170 bash[24572]: audit 2024-09-21T17:28:15.174291+0000 mon.smithi050 (mon.0) 912 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]} : dispatch 2024-09-21T17:28:15.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:15 smithi050 bash[19920]: audit 2024-09-21T17:28:15.173729+0000 mon.smithi050 (mon.0) 911 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.6", "id": [4, 0]} : dispatch 2024-09-21T17:28:15.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:15 smithi050 bash[19920]: audit 2024-09-21T17:28:15.173729+0000 mon.smithi050 (mon.0) 911 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.6", "id": [4, 0]} : dispatch 2024-09-21T17:28:15.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:15 smithi050 bash[19920]: audit 2024-09-21T17:28:15.174291+0000 mon.smithi050 (mon.0) 912 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]} : dispatch 2024-09-21T17:28:15.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:15 smithi050 bash[19920]: audit 2024-09-21T17:28:15.174291+0000 mon.smithi050 (mon.0) 912 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]} : dispatch 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: cluster 2024-09-21T17:28:15.217997+0000 mgr.smithi050.baqqjh (mgr.14203) 314 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: cluster 2024-09-21T17:28:15.217997+0000 mgr.smithi050.baqqjh (mgr.14203) 314 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.309199+0000 mon.smithi050 (mon.0) 913 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.6", "id": [4, 0]}]': finished 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.309199+0000 mon.smithi050 (mon.0) 913 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.6", "id": [4, 0]}]': finished 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.309370+0000 mon.smithi050 (mon.0) 914 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.309370+0000 mon.smithi050 (mon.0) 914 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: cluster 2024-09-21T17:28:15.317933+0000 mon.smithi050 (mon.0) 915 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: cluster 2024-09-21T17:28:15.317933+0000 mon.smithi050 (mon.0) 915 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.582512+0000 mon.smithi050 (mon.0) 916 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:16.569 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.582512+0000 mon.smithi050 (mon.0) 916 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:16.570 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.873996+0000 mon.smithi050 (mon.0) 917 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:16.570 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.873996+0000 mon.smithi050 (mon.0) 917 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:16.570 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.875577+0000 mon.smithi050 (mon.0) 918 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:16.570 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.875577+0000 mon.smithi050 (mon.0) 918 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:16.570 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.879922+0000 mon.smithi050 (mon.0) 919 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:16.570 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:16 smithi050 bash[19920]: audit 2024-09-21T17:28:15.879922+0000 mon.smithi050 (mon.0) 919 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:16.571 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T17:28:16.584 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:28:16.584 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: cluster 2024-09-21T17:28:15.217997+0000 mgr.smithi050.baqqjh (mgr.14203) 314 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: cluster 2024-09-21T17:28:15.217997+0000 mgr.smithi050.baqqjh (mgr.14203) 314 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 511 B/s wr, 13 op/s 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.309199+0000 mon.smithi050 (mon.0) 913 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.6", "id": [4, 0]}]': finished 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.309199+0000 mon.smithi050 (mon.0) 913 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.6", "id": [4, 0]}]': finished 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.309370+0000 mon.smithi050 (mon.0) 914 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.309370+0000 mon.smithi050 (mon.0) 914 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.10", "id": [5, 3]}]': finished 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: cluster 2024-09-21T17:28:15.317933+0000 mon.smithi050 (mon.0) 915 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: cluster 2024-09-21T17:28:15.317933+0000 mon.smithi050 (mon.0) 915 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.582512+0000 mon.smithi050 (mon.0) 916 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.582512+0000 mon.smithi050 (mon.0) 916 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.873996+0000 mon.smithi050 (mon.0) 917 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.873996+0000 mon.smithi050 (mon.0) 917 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.875577+0000 mon.smithi050 (mon.0) 918 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:16.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.875577+0000 mon.smithi050 (mon.0) 918 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:16.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.879922+0000 mon.smithi050 (mon.0) 919 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:16.606 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:16 smithi170 bash[24572]: audit 2024-09-21T17:28:15.879922+0000 mon.smithi050 (mon.0) 919 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:17.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:17 smithi170 bash[24572]: audit 2024-09-21T17:28:15.852651+0000 mgr.smithi050.baqqjh (mgr.14203) 315 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:17.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:17 smithi170 bash[24572]: audit 2024-09-21T17:28:15.852651+0000 mgr.smithi050.baqqjh (mgr.14203) 315 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:17.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:17 smithi170 bash[24572]: cephadm 2024-09-21T17:28:15.867157+0000 mgr.smithi050.baqqjh (mgr.14203) 316 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-21T17:28:17.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:17 smithi170 bash[24572]: cephadm 2024-09-21T17:28:15.867157+0000 mgr.smithi050.baqqjh (mgr.14203) 316 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-21T17:28:17.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:17 smithi170 bash[24572]: cephadm 2024-09-21T17:28:15.874845+0000 mgr.smithi050.baqqjh (mgr.14203) 317 : cephadm [INF] Remove service nfs.foo 2024-09-21T17:28:17.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:17 smithi170 bash[24572]: cephadm 2024-09-21T17:28:15.874845+0000 mgr.smithi050.baqqjh (mgr.14203) 317 : cephadm [INF] Remove service nfs.foo 2024-09-21T17:28:17.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:17 smithi170 bash[24572]: cluster 2024-09-21T17:28:16.315200+0000 mon.smithi050 (mon.0) 920 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-09-21T17:28:17.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:17 smithi170 bash[24572]: cluster 2024-09-21T17:28:16.315200+0000 mon.smithi050 (mon.0) 920 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-09-21T17:28:17.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:17 smithi050 bash[19920]: audit 2024-09-21T17:28:15.852651+0000 mgr.smithi050.baqqjh (mgr.14203) 315 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:17.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:17 smithi050 bash[19920]: audit 2024-09-21T17:28:15.852651+0000 mgr.smithi050.baqqjh (mgr.14203) 315 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:17.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:17 smithi050 bash[19920]: cephadm 2024-09-21T17:28:15.867157+0000 mgr.smithi050.baqqjh (mgr.14203) 316 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-21T17:28:17.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:17 smithi050 bash[19920]: cephadm 2024-09-21T17:28:15.867157+0000 mgr.smithi050.baqqjh (mgr.14203) 316 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-21T17:28:17.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:17 smithi050 bash[19920]: cephadm 2024-09-21T17:28:15.874845+0000 mgr.smithi050.baqqjh (mgr.14203) 317 : cephadm [INF] Remove service nfs.foo 2024-09-21T17:28:17.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:17 smithi050 bash[19920]: cephadm 2024-09-21T17:28:15.874845+0000 mgr.smithi050.baqqjh (mgr.14203) 317 : cephadm [INF] Remove service nfs.foo 2024-09-21T17:28:17.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:17 smithi050 bash[19920]: cluster 2024-09-21T17:28:16.315200+0000 mon.smithi050 (mon.0) 920 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-09-21T17:28:17.732 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:17 smithi050 bash[19920]: cluster 2024-09-21T17:28:16.315200+0000 mon.smithi050 (mon.0) 920 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-09-21T17:28:18.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:18 smithi050 bash[19920]: cluster 2024-09-21T17:28:17.218863+0000 mgr.smithi050.baqqjh (mgr.14203) 318 : cluster [DBG] pgmap v260: 225 pgs: 2 peering, 223 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T17:28:18.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:18 smithi050 bash[19920]: cluster 2024-09-21T17:28:17.218863+0000 mgr.smithi050.baqqjh (mgr.14203) 318 : cluster [DBG] pgmap v260: 225 pgs: 2 peering, 223 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T17:28:18.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:18 smithi050 bash[19920]: cluster 2024-09-21T17:28:17.320266+0000 mon.smithi050 (mon.0) 921 : cluster [WRN] Health check failed: Reduced data availability: 2 pgs peering (PG_AVAILABILITY) 2024-09-21T17:28:18.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:18 smithi050 bash[19920]: cluster 2024-09-21T17:28:17.320266+0000 mon.smithi050 (mon.0) 921 : cluster [WRN] Health check failed: Reduced data availability: 2 pgs peering (PG_AVAILABILITY) 2024-09-21T17:28:18.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:18 smithi170 bash[24572]: cluster 2024-09-21T17:28:17.218863+0000 mgr.smithi050.baqqjh (mgr.14203) 318 : cluster [DBG] pgmap v260: 225 pgs: 2 peering, 223 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T17:28:18.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:18 smithi170 bash[24572]: cluster 2024-09-21T17:28:17.218863+0000 mgr.smithi050.baqqjh (mgr.14203) 318 : cluster [DBG] pgmap v260: 225 pgs: 2 peering, 223 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T17:28:18.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:18 smithi170 bash[24572]: cluster 2024-09-21T17:28:17.320266+0000 mon.smithi050 (mon.0) 921 : cluster [WRN] Health check failed: Reduced data availability: 2 pgs peering (PG_AVAILABILITY) 2024-09-21T17:28:18.605 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:18 smithi170 bash[24572]: cluster 2024-09-21T17:28:17.320266+0000 mon.smithi050 (mon.0) 921 : cluster [WRN] Health check failed: Reduced data availability: 2 pgs peering (PG_AVAILABILITY) 2024-09-21T17:28:20.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:20 smithi170 bash[24572]: cluster 2024-09-21T17:28:19.220157+0000 mgr.smithi050.baqqjh (mgr.14203) 319 : cluster [DBG] pgmap v261: 225 pgs: 2 peering, 223 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:20.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:20 smithi170 bash[24572]: cluster 2024-09-21T17:28:19.220157+0000 mgr.smithi050.baqqjh (mgr.14203) 319 : cluster [DBG] pgmap v261: 225 pgs: 2 peering, 223 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:20.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:20 smithi050 bash[19920]: cluster 2024-09-21T17:28:19.220157+0000 mgr.smithi050.baqqjh (mgr.14203) 319 : cluster [DBG] pgmap v261: 225 pgs: 2 peering, 223 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:20.761 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:20 smithi050 bash[19920]: cluster 2024-09-21T17:28:19.220157+0000 mgr.smithi050.baqqjh (mgr.14203) 319 : cluster [DBG] pgmap v261: 225 pgs: 2 peering, 223 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:21.060 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:28:21.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:21 smithi050 bash[19920]: cluster 2024-09-21T17:28:21.328354+0000 mon.smithi050 (mon.0) 922 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 2 pgs peering) 2024-09-21T17:28:21.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:21 smithi050 bash[19920]: cluster 2024-09-21T17:28:21.328354+0000 mon.smithi050 (mon.0) 922 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 2 pgs peering) 2024-09-21T17:28:21.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:21 smithi050 bash[19920]: cluster 2024-09-21T17:28:21.328409+0000 mon.smithi050 (mon.0) 923 : cluster [INF] Cluster is now healthy 2024-09-21T17:28:21.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:21 smithi050 bash[19920]: cluster 2024-09-21T17:28:21.328409+0000 mon.smithi050 (mon.0) 923 : cluster [INF] Cluster is now healthy 2024-09-21T17:28:21.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:21 smithi170 bash[24572]: cluster 2024-09-21T17:28:21.328354+0000 mon.smithi050 (mon.0) 922 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 2 pgs peering) 2024-09-21T17:28:21.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:21 smithi170 bash[24572]: cluster 2024-09-21T17:28:21.328354+0000 mon.smithi050 (mon.0) 922 : cluster [INF] Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 2 pgs peering) 2024-09-21T17:28:21.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:21 smithi170 bash[24572]: cluster 2024-09-21T17:28:21.328409+0000 mon.smithi050 (mon.0) 923 : cluster [INF] Cluster is now healthy 2024-09-21T17:28:21.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:21 smithi170 bash[24572]: cluster 2024-09-21T17:28:21.328409+0000 mon.smithi050 (mon.0) 923 : cluster [INF] Cluster is now healthy 2024-09-21T17:28:22.358 INFO:teuthology.orchestra.run.smithi050.stdout:167 167 2024-09-21T17:28:22.951 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: cluster 2024-09-21T17:28:21.221313+0000 mgr.smithi050.baqqjh (mgr.14203) 320 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:22.951 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: cluster 2024-09-21T17:28:21.221313+0000 mgr.smithi050.baqqjh (mgr.14203) 320 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:22.951 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:21.646003+0000 mon.smithi050 (mon.0) 924 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.951 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:21.646003+0000 mon.smithi050 (mon.0) 924 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.951 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:21.654887+0000 mon.smithi050 (mon.0) 925 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.951 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:21.654887+0000 mon.smithi050 (mon.0) 925 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.116413+0000 mon.smithi050 (mon.0) 926 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.116413+0000 mon.smithi050 (mon.0) 926 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.121969+0000 mon.smithi050 (mon.0) 927 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.121969+0000 mon.smithi050 (mon.0) 927 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.123331+0000 mon.smithi050 (mon.0) 928 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.123331+0000 mon.smithi050 (mon.0) 928 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.124066+0000 mon.smithi050 (mon.0) 929 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.124066+0000 mon.smithi050 (mon.0) 929 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.128807+0000 mon.smithi050 (mon.0) 930 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.128807+0000 mon.smithi050 (mon.0) 930 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.131455+0000 mon.smithi050 (mon.0) 931 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:28:22.952 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:22 smithi050 bash[19920]: audit 2024-09-21T17:28:22.131455+0000 mon.smithi050 (mon.0) 931 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:28:23.091 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch status' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: cluster 2024-09-21T17:28:21.221313+0000 mgr.smithi050.baqqjh (mgr.14203) 320 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: cluster 2024-09-21T17:28:21.221313+0000 mgr.smithi050.baqqjh (mgr.14203) 320 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:21.646003+0000 mon.smithi050 (mon.0) 924 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:21.646003+0000 mon.smithi050 (mon.0) 924 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:21.654887+0000 mon.smithi050 (mon.0) 925 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:21.654887+0000 mon.smithi050 (mon.0) 925 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.116413+0000 mon.smithi050 (mon.0) 926 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.116413+0000 mon.smithi050 (mon.0) 926 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.121969+0000 mon.smithi050 (mon.0) 927 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.121969+0000 mon.smithi050 (mon.0) 927 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.123331+0000 mon.smithi050 (mon.0) 928 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.123331+0000 mon.smithi050 (mon.0) 928 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.124066+0000 mon.smithi050 (mon.0) 929 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:28:23.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.124066+0000 mon.smithi050 (mon.0) 929 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:28:23.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.128807+0000 mon.smithi050 (mon.0) 930 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.128807+0000 mon.smithi050 (mon.0) 930 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:23.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.131455+0000 mon.smithi050 (mon.0) 931 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:28:23.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:22 smithi170 bash[24572]: audit 2024-09-21T17:28:22.131455+0000 mon.smithi050 (mon.0) 931 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:28:23.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:23 smithi050 bash[19920]: cephadm 2024-09-21T17:28:22.157956+0000 mgr.smithi050.baqqjh (mgr.14203) 321 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi050.xogjcr... 2024-09-21T17:28:23.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:23 smithi050 bash[19920]: cephadm 2024-09-21T17:28:22.157956+0000 mgr.smithi050.baqqjh (mgr.14203) 321 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi050.xogjcr... 2024-09-21T17:28:23.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:23 smithi050 bash[19920]: cephadm 2024-09-21T17:28:22.158157+0000 mgr.smithi050.baqqjh (mgr.14203) 322 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi050.xogjcr from smithi050 -- ports [12049] 2024-09-21T17:28:23.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:23 smithi050 bash[19920]: cephadm 2024-09-21T17:28:22.158157+0000 mgr.smithi050.baqqjh (mgr.14203) 322 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi050.xogjcr from smithi050 -- ports [12049] 2024-09-21T17:28:24.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:23 smithi170 bash[24572]: cephadm 2024-09-21T17:28:22.157956+0000 mgr.smithi050.baqqjh (mgr.14203) 321 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi050.xogjcr... 2024-09-21T17:28:24.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:23 smithi170 bash[24572]: cephadm 2024-09-21T17:28:22.157956+0000 mgr.smithi050.baqqjh (mgr.14203) 321 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi050.xogjcr... 2024-09-21T17:28:24.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:23 smithi170 bash[24572]: cephadm 2024-09-21T17:28:22.158157+0000 mgr.smithi050.baqqjh (mgr.14203) 322 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi050.xogjcr from smithi050 -- ports [12049] 2024-09-21T17:28:24.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:23 smithi170 bash[24572]: cephadm 2024-09-21T17:28:22.158157+0000 mgr.smithi050.baqqjh (mgr.14203) 322 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi050.xogjcr from smithi050 -- ports [12049] 2024-09-21T17:28:24.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:24 smithi050 bash[19920]: cluster 2024-09-21T17:28:23.222020+0000 mgr.smithi050.baqqjh (mgr.14203) 323 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:24.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:24 smithi050 bash[19920]: cluster 2024-09-21T17:28:23.222020+0000 mgr.smithi050.baqqjh (mgr.14203) 323 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:25.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:24 smithi170 bash[24572]: cluster 2024-09-21T17:28:23.222020+0000 mgr.smithi050.baqqjh (mgr.14203) 323 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:25.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:24 smithi170 bash[24572]: cluster 2024-09-21T17:28:23.222020+0000 mgr.smithi050.baqqjh (mgr.14203) 323 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:26.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:26 smithi050 bash[19920]: cluster 2024-09-21T17:28:25.223643+0000 mgr.smithi050.baqqjh (mgr.14203) 324 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:26.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:26 smithi050 bash[19920]: cluster 2024-09-21T17:28:25.223643+0000 mgr.smithi050.baqqjh (mgr.14203) 324 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:27.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:26 smithi170 bash[24572]: cluster 2024-09-21T17:28:25.223643+0000 mgr.smithi050.baqqjh (mgr.14203) 324 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:27.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:26 smithi170 bash[24572]: cluster 2024-09-21T17:28:25.223643+0000 mgr.smithi050.baqqjh (mgr.14203) 324 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T17:28:27.963 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:28:28.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:28 smithi050 bash[19920]: cluster 2024-09-21T17:28:27.225169+0000 mgr.smithi050.baqqjh (mgr.14203) 325 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 93 B/s rd, 187 B/s wr, 0 op/s 2024-09-21T17:28:28.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:28 smithi050 bash[19920]: cluster 2024-09-21T17:28:27.225169+0000 mgr.smithi050.baqqjh (mgr.14203) 325 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 93 B/s rd, 187 B/s wr, 0 op/s 2024-09-21T17:28:29.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:28 smithi170 bash[24572]: cluster 2024-09-21T17:28:27.225169+0000 mgr.smithi050.baqqjh (mgr.14203) 325 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 93 B/s rd, 187 B/s wr, 0 op/s 2024-09-21T17:28:29.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:28 smithi170 bash[24572]: cluster 2024-09-21T17:28:27.225169+0000 mgr.smithi050.baqqjh (mgr.14203) 325 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 93 B/s rd, 187 B/s wr, 0 op/s 2024-09-21T17:28:29.373 INFO:teuthology.orchestra.run.smithi050.stdout:Backend: cephadm 2024-09-21T17:28:29.373 INFO:teuthology.orchestra.run.smithi050.stdout:Available: Yes 2024-09-21T17:28:29.373 INFO:teuthology.orchestra.run.smithi050.stdout:Paused: No 2024-09-21T17:28:30.061 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ps' 2024-09-21T17:28:30.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:30 smithi050 bash[19920]: cluster 2024-09-21T17:28:29.226134+0000 mgr.smithi050.baqqjh (mgr.14203) 326 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:30 smithi050 bash[19920]: cluster 2024-09-21T17:28:29.226134+0000 mgr.smithi050.baqqjh (mgr.14203) 326 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:30 smithi050 bash[19920]: audit 2024-09-21T17:28:29.374787+0000 mgr.smithi050.baqqjh (mgr.14203) 327 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:30 smithi050 bash[19920]: audit 2024-09-21T17:28:29.374787+0000 mgr.smithi050.baqqjh (mgr.14203) 327 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:30 smithi050 bash[19920]: audit 2024-09-21T17:28:30.583378+0000 mon.smithi050 (mon.0) 932 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:30.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:30 smithi050 bash[19920]: audit 2024-09-21T17:28:30.583378+0000 mon.smithi050 (mon.0) 932 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:31.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:30 smithi170 bash[24572]: cluster 2024-09-21T17:28:29.226134+0000 mgr.smithi050.baqqjh (mgr.14203) 326 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:31.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:30 smithi170 bash[24572]: cluster 2024-09-21T17:28:29.226134+0000 mgr.smithi050.baqqjh (mgr.14203) 326 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:31.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:30 smithi170 bash[24572]: audit 2024-09-21T17:28:29.374787+0000 mgr.smithi050.baqqjh (mgr.14203) 327 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:31.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:30 smithi170 bash[24572]: audit 2024-09-21T17:28:29.374787+0000 mgr.smithi050.baqqjh (mgr.14203) 327 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:31.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:30 smithi170 bash[24572]: audit 2024-09-21T17:28:30.583378+0000 mon.smithi050 (mon.0) 932 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:31.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:30 smithi170 bash[24572]: audit 2024-09-21T17:28:30.583378+0000 mon.smithi050 (mon.0) 932 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:32.951 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:32 smithi050 bash[19920]: cluster 2024-09-21T17:28:31.227931+0000 mgr.smithi050.baqqjh (mgr.14203) 328 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:32.951 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:32 smithi050 bash[19920]: cluster 2024-09-21T17:28:31.227931+0000 mgr.smithi050.baqqjh (mgr.14203) 328 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:33.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:32 smithi170 bash[24572]: cluster 2024-09-21T17:28:31.227931+0000 mgr.smithi050.baqqjh (mgr.14203) 328 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:33.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:32 smithi170 bash[24572]: cluster 2024-09-21T17:28:31.227931+0000 mgr.smithi050.baqqjh (mgr.14203) 328 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:34.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:33 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:28:34.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: cluster 2024-09-21T17:28:33.228709+0000 mgr.smithi050.baqqjh (mgr.14203) 329 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:34.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: cluster 2024-09-21T17:28:33.228709+0000 mgr.smithi050.baqqjh (mgr.14203) 329 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:34.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: audit 2024-09-21T17:28:34.162731+0000 mon.smithi050 (mon.0) 933 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr"} : dispatch 2024-09-21T17:28:34.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: audit 2024-09-21T17:28:34.162731+0000 mon.smithi050 (mon.0) 933 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr"} : dispatch 2024-09-21T17:28:34.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: audit 2024-09-21T17:28:34.165873+0000 mon.smithi050 (mon.0) 934 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr"}]': finished 2024-09-21T17:28:34.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: audit 2024-09-21T17:28:34.165873+0000 mon.smithi050 (mon.0) 934 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr"}]': finished 2024-09-21T17:28:34.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: audit 2024-09-21T17:28:34.169964+0000 mon.smithi050 (mon.0) 935 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw"} : dispatch 2024-09-21T17:28:34.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: audit 2024-09-21T17:28:34.169964+0000 mon.smithi050 (mon.0) 935 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw"} : dispatch 2024-09-21T17:28:34.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: audit 2024-09-21T17:28:34.172381+0000 mon.smithi050 (mon.0) 936 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw"}]': finished 2024-09-21T17:28:34.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:34 smithi050 bash[19920]: audit 2024-09-21T17:28:34.172381+0000 mon.smithi050 (mon.0) 936 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw"}]': finished 2024-09-21T17:28:35.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: cluster 2024-09-21T17:28:33.228709+0000 mgr.smithi050.baqqjh (mgr.14203) 329 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: cluster 2024-09-21T17:28:33.228709+0000 mgr.smithi050.baqqjh (mgr.14203) 329 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: audit 2024-09-21T17:28:34.162731+0000 mon.smithi050 (mon.0) 933 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr"} : dispatch 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: audit 2024-09-21T17:28:34.162731+0000 mon.smithi050 (mon.0) 933 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr"} : dispatch 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: audit 2024-09-21T17:28:34.165873+0000 mon.smithi050 (mon.0) 934 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr"}]': finished 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: audit 2024-09-21T17:28:34.165873+0000 mon.smithi050 (mon.0) 934 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr"}]': finished 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: audit 2024-09-21T17:28:34.169964+0000 mon.smithi050 (mon.0) 935 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw"} : dispatch 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: audit 2024-09-21T17:28:34.169964+0000 mon.smithi050 (mon.0) 935 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw"} : dispatch 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: audit 2024-09-21T17:28:34.172381+0000 mon.smithi050 (mon.0) 936 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw"}]': finished 2024-09-21T17:28:35.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:34 smithi170 bash[24572]: audit 2024-09-21T17:28:34.172381+0000 mon.smithi050 (mon.0) 936 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi050.xogjcr-rgw"}]': finished 2024-09-21T17:28:35.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 bash[19920]: cephadm 2024-09-21T17:28:34.162130+0000 mgr.smithi050.baqqjh (mgr.14203) 330 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi050.xogjcr 2024-09-21T17:28:35.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 bash[19920]: cephadm 2024-09-21T17:28:34.162130+0000 mgr.smithi050.baqqjh (mgr.14203) 330 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi050.xogjcr 2024-09-21T17:28:35.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 bash[19920]: cephadm 2024-09-21T17:28:34.169510+0000 mgr.smithi050.baqqjh (mgr.14203) 331 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi050.xogjcr-rgw 2024-09-21T17:28:35.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 bash[19920]: cephadm 2024-09-21T17:28:34.169510+0000 mgr.smithi050.baqqjh (mgr.14203) 331 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi050.xogjcr-rgw 2024-09-21T17:28:35.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 bash[19920]: cephadm 2024-09-21T17:28:34.175427+0000 mgr.smithi050.baqqjh (mgr.14203) 332 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi050.cdnmbu... 2024-09-21T17:28:35.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 bash[19920]: cephadm 2024-09-21T17:28:34.175427+0000 mgr.smithi050.baqqjh (mgr.14203) 332 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi050.cdnmbu... 2024-09-21T17:28:35.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 bash[19920]: cephadm 2024-09-21T17:28:34.175965+0000 mgr.smithi050.baqqjh (mgr.14203) 333 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi050.cdnmbu from smithi050 -- ports [2049, 9049] 2024-09-21T17:28:35.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 bash[19920]: cephadm 2024-09-21T17:28:34.175965+0000 mgr.smithi050.baqqjh (mgr.14203) 333 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi050.cdnmbu from smithi050 -- ports [2049, 9049] 2024-09-21T17:28:35.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:35 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:28:36.057 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:28:36.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:35 smithi170 bash[24572]: cephadm 2024-09-21T17:28:34.162130+0000 mgr.smithi050.baqqjh (mgr.14203) 330 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi050.xogjcr 2024-09-21T17:28:36.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:35 smithi170 bash[24572]: cephadm 2024-09-21T17:28:34.162130+0000 mgr.smithi050.baqqjh (mgr.14203) 330 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi050.xogjcr 2024-09-21T17:28:36.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:35 smithi170 bash[24572]: cephadm 2024-09-21T17:28:34.169510+0000 mgr.smithi050.baqqjh (mgr.14203) 331 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi050.xogjcr-rgw 2024-09-21T17:28:36.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:35 smithi170 bash[24572]: cephadm 2024-09-21T17:28:34.169510+0000 mgr.smithi050.baqqjh (mgr.14203) 331 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi050.xogjcr-rgw 2024-09-21T17:28:36.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:35 smithi170 bash[24572]: cephadm 2024-09-21T17:28:34.175427+0000 mgr.smithi050.baqqjh (mgr.14203) 332 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi050.cdnmbu... 2024-09-21T17:28:36.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:35 smithi170 bash[24572]: cephadm 2024-09-21T17:28:34.175427+0000 mgr.smithi050.baqqjh (mgr.14203) 332 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi050.cdnmbu... 2024-09-21T17:28:36.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:35 smithi170 bash[24572]: cephadm 2024-09-21T17:28:34.175965+0000 mgr.smithi050.baqqjh (mgr.14203) 333 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi050.cdnmbu from smithi050 -- ports [2049, 9049] 2024-09-21T17:28:36.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:35 smithi170 bash[24572]: cephadm 2024-09-21T17:28:34.175965+0000 mgr.smithi050.baqqjh (mgr.14203) 333 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi050.cdnmbu from smithi050 -- ports [2049, 9049] 2024-09-21T17:28:36.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:36 smithi050 bash[19920]: cluster 2024-09-21T17:28:35.230331+0000 mgr.smithi050.baqqjh (mgr.14203) 334 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:36.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:36 smithi050 bash[19920]: cluster 2024-09-21T17:28:35.230331+0000 mgr.smithi050.baqqjh (mgr.14203) 334 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:36.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:36 smithi050 bash[19920]: audit 2024-09-21T17:28:35.903874+0000 mon.smithi050 (mon.0) 937 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi050.cdnmbu"} : dispatch 2024-09-21T17:28:36.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:36 smithi050 bash[19920]: audit 2024-09-21T17:28:35.903874+0000 mon.smithi050 (mon.0) 937 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi050.cdnmbu"} : dispatch 2024-09-21T17:28:37.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:36 smithi170 bash[24572]: cluster 2024-09-21T17:28:35.230331+0000 mgr.smithi050.baqqjh (mgr.14203) 334 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:37.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:36 smithi170 bash[24572]: cluster 2024-09-21T17:28:35.230331+0000 mgr.smithi050.baqqjh (mgr.14203) 334 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:37.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:36 smithi170 bash[24572]: audit 2024-09-21T17:28:35.903874+0000 mon.smithi050 (mon.0) 937 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi050.cdnmbu"} : dispatch 2024-09-21T17:28:37.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:36 smithi170 bash[24572]: audit 2024-09-21T17:28:35.903874+0000 mon.smithi050 (mon.0) 937 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi050.cdnmbu"} : dispatch 2024-09-21T17:28:37.718 INFO:teuthology.orchestra.run.smithi050.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-21T17:28:37.718 INFO:teuthology.orchestra.run.smithi050.stdout:alertmanager.smithi050 smithi050 *:9093,9094 running (6m) 15s ago 8m 13.4M - 0.27.0 11f11916f8cd 655deda7ef6d 2024-09-21T17:28:37.718 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-exporter.smithi050 smithi050 *:9926 running (8m) 15s ago 8m 9115k - 19.3.0-5129-g0ecbb435 3fa9090ef91d 3529e9840264 2024-09-21T17:28:37.718 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-exporter.smithi170 smithi170 *:9926 running (7m) 16s ago 7m 6099k - 19.3.0-5129-g0ecbb435 3fa9090ef91d fde7507812b5 2024-09-21T17:28:37.718 INFO:teuthology.orchestra.run.smithi050.stdout:crash.smithi050 smithi050 running (8m) 15s ago 8m 7247k - 19.3.0-5129-g0ecbb435 3fa9090ef91d 38b4edac6df9 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:crash.smithi170 smithi170 running (7m) 16s ago 7m 7212k - 19.3.0-5129-g0ecbb435 3fa9090ef91d 2f3410473c71 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:grafana.smithi050 smithi050 *:3000 running (6m) 15s ago 7m 68.8M - 10.4.8 5aad1d7cf004 21eef8c7e0d7 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:haproxy.nfs.foo.smithi170.olcxpc smithi170 *:2049,9049 running (86s) 16s ago 86s 5027k - 2.3.17-d1c9119 e85424b0d443 50c21febb7ee 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:keepalived.nfs.foo.smithi050.rdmerl smithi050 running (64s) 15s ago 64s 2455k - 2.2.4 4a3a1ff181d9 d295a6b74de4 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:keepalived.nfs.foo.smithi170.hokigl smithi170 running (74s) 16s ago 75s 2484k - 2.2.4 4a3a1ff181d9 2f9ed28466da 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:mgr.smithi050.baqqjh smithi050 *:9283,8765,8443 running (9m) 15s ago 9m 515M - 19.3.0-5129-g0ecbb435 3fa9090ef91d 23c3ae50f8d4 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:mgr.smithi170.lejafv smithi170 *:8443,9283,8765 running (6m) 16s ago 6m 441M - 19.3.0-5129-g0ecbb435 3fa9090ef91d eec43dfd6c72 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:mon.smithi050 smithi050 running (10m) 15s ago 10m 49.8M 2048M 19.3.0-5129-g0ecbb435 3fa9090ef91d 3078833f1ffa 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:mon.smithi170 smithi170 running (6m) 16s ago 6m 39.5M 2048M 19.3.0-5129-g0ecbb435 3fa9090ef91d c50df59aa4c3 2024-09-21T17:28:37.719 INFO:teuthology.orchestra.run.smithi050.stdout:node-exporter.smithi050 smithi050 *:9100 running (8m) 15s ago 8m 8680k - 1.7.0 72c9c2088986 6bb87ddec53d 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:node-exporter.smithi170 smithi170 *:9100 running (6m) 16s ago 7m 8559k - 1.7.0 72c9c2088986 a81eb40645bd 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:osd.0 smithi170 running (5m) 16s ago 5m 57.8M 3772M 19.3.0-5129-g0ecbb435 3fa9090ef91d c076392ff95d 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:osd.1 smithi050 running (5m) 15s ago 5m 53.1M 3005M 19.3.0-5129-g0ecbb435 3fa9090ef91d baf5370d88a8 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:osd.2 smithi170 running (5m) 16s ago 5m 54.6M 3772M 19.3.0-5129-g0ecbb435 3fa9090ef91d e456cfb1982c 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:osd.3 smithi050 running (5m) 15s ago 5m 52.4M 3005M 19.3.0-5129-g0ecbb435 3fa9090ef91d fcae7f14a25d 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:osd.4 smithi170 running (5m) 16s ago 5m 56.3M 3772M 19.3.0-5129-g0ecbb435 3fa9090ef91d 81a0a74d2630 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:osd.5 smithi050 running (4m) 15s ago 5m 47.9M 3005M 19.3.0-5129-g0ecbb435 3fa9090ef91d 1ad3ba82952d 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:osd.6 smithi170 running (4m) 16s ago 5m 54.7M 3772M 19.3.0-5129-g0ecbb435 3fa9090ef91d f844c0ed6e73 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:osd.7 smithi050 running (4m) 15s ago 4m 58.1M 3005M 19.3.0-5129-g0ecbb435 3fa9090ef91d 20ba12e04674 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:prometheus.smithi050 smithi050 *:9095 running (49s) 15s ago 7m 38.2M - 2.51.0 1d3b7f56885b e01670e50305 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:rgw.foorgw.smithi050.bgrjhn smithi050 *:8800 running (108s) 15s ago 108s 89.9M - 19.3.0-5129-g0ecbb435 3fa9090ef91d 0ca8afae32f6 2024-09-21T17:28:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:rgw.foorgw.smithi170.bpqqqq smithi170 *:8800 running (112s) 16s ago 112s 88.0M - 19.3.0-5129-g0ecbb435 3fa9090ef91d 2818f11213db 2024-09-21T17:28:37.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:37 smithi050 bash[19920]: cephadm 2024-09-21T17:28:35.903441+0000 mgr.smithi050.baqqjh (mgr.14203) 335 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi050.cdnmbu 2024-09-21T17:28:37.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:37 smithi050 bash[19920]: cephadm 2024-09-21T17:28:35.903441+0000 mgr.smithi050.baqqjh (mgr.14203) 335 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi050.cdnmbu 2024-09-21T17:28:37.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:37 smithi050 bash[19920]: cephadm 2024-09-21T17:28:35.904667+0000 mgr.smithi050.baqqjh (mgr.14203) 336 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi050.rdmerl... 2024-09-21T17:28:37.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:37 smithi050 bash[19920]: cephadm 2024-09-21T17:28:35.904667+0000 mgr.smithi050.baqqjh (mgr.14203) 336 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi050.rdmerl... 2024-09-21T17:28:37.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:37 smithi050 bash[19920]: cephadm 2024-09-21T17:28:35.904895+0000 mgr.smithi050.baqqjh (mgr.14203) 337 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi050.rdmerl from smithi050 -- ports [] 2024-09-21T17:28:37.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:37 smithi050 bash[19920]: cephadm 2024-09-21T17:28:35.904895+0000 mgr.smithi050.baqqjh (mgr.14203) 337 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi050.rdmerl from smithi050 -- ports [] 2024-09-21T17:28:38.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:37 smithi170 bash[24572]: cephadm 2024-09-21T17:28:35.903441+0000 mgr.smithi050.baqqjh (mgr.14203) 335 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi050.cdnmbu 2024-09-21T17:28:38.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:37 smithi170 bash[24572]: cephadm 2024-09-21T17:28:35.903441+0000 mgr.smithi050.baqqjh (mgr.14203) 335 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi050.cdnmbu 2024-09-21T17:28:38.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:37 smithi170 bash[24572]: cephadm 2024-09-21T17:28:35.904667+0000 mgr.smithi050.baqqjh (mgr.14203) 336 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi050.rdmerl... 2024-09-21T17:28:38.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:37 smithi170 bash[24572]: cephadm 2024-09-21T17:28:35.904667+0000 mgr.smithi050.baqqjh (mgr.14203) 336 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi050.rdmerl... 2024-09-21T17:28:38.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:37 smithi170 bash[24572]: cephadm 2024-09-21T17:28:35.904895+0000 mgr.smithi050.baqqjh (mgr.14203) 337 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi050.rdmerl from smithi050 -- ports [] 2024-09-21T17:28:38.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:37 smithi170 bash[24572]: cephadm 2024-09-21T17:28:35.904895+0000 mgr.smithi050.baqqjh (mgr.14203) 337 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi050.rdmerl from smithi050 -- ports [] 2024-09-21T17:28:38.771 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ls' 2024-09-21T17:28:38.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:38 smithi170 bash[24572]: cluster 2024-09-21T17:28:37.231823+0000 mgr.smithi050.baqqjh (mgr.14203) 338 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:38.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:38 smithi170 bash[24572]: cluster 2024-09-21T17:28:37.231823+0000 mgr.smithi050.baqqjh (mgr.14203) 338 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:38.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:38 smithi170 bash[24572]: audit 2024-09-21T17:28:37.663899+0000 mgr.smithi050.baqqjh (mgr.14203) 339 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:38.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:38 smithi170 bash[24572]: audit 2024-09-21T17:28:37.663899+0000 mgr.smithi050.baqqjh (mgr.14203) 339 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:38.957 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:38 smithi050 bash[19920]: cluster 2024-09-21T17:28:37.231823+0000 mgr.smithi050.baqqjh (mgr.14203) 338 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:38.957 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:38 smithi050 bash[19920]: cluster 2024-09-21T17:28:37.231823+0000 mgr.smithi050.baqqjh (mgr.14203) 338 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T17:28:38.957 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:38 smithi050 bash[19920]: audit 2024-09-21T17:28:37.663899+0000 mgr.smithi050.baqqjh (mgr.14203) 339 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:38.957 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:38 smithi050 bash[19920]: audit 2024-09-21T17:28:37.663899+0000 mgr.smithi050.baqqjh (mgr.14203) 339 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:38.957 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:38 smithi050 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:28:39.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:39 smithi170 bash[24572]: audit 2024-09-21T17:28:39.041617+0000 mon.smithi050 (mon.0) 938 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi050.rdmerl"} : dispatch 2024-09-21T17:28:39.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:39 smithi170 bash[24572]: audit 2024-09-21T17:28:39.041617+0000 mon.smithi050 (mon.0) 938 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi050.rdmerl"} : dispatch 2024-09-21T17:28:39.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:39 smithi050 bash[19920]: audit 2024-09-21T17:28:39.041617+0000 mon.smithi050 (mon.0) 938 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi050.rdmerl"} : dispatch 2024-09-21T17:28:39.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:39 smithi050 bash[19920]: audit 2024-09-21T17:28:39.041617+0000 mon.smithi050 (mon.0) 938 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi050.rdmerl"} : dispatch 2024-09-21T17:28:40.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: cephadm 2024-09-21T17:28:39.041084+0000 mgr.smithi050.baqqjh (mgr.14203) 340 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi050.rdmerl 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: cephadm 2024-09-21T17:28:39.041084+0000 mgr.smithi050.baqqjh (mgr.14203) 340 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi050.rdmerl 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: cephadm 2024-09-21T17:28:39.043368+0000 mgr.smithi050.baqqjh (mgr.14203) 341 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi170.olcxpc... 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: cephadm 2024-09-21T17:28:39.043368+0000 mgr.smithi050.baqqjh (mgr.14203) 341 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi170.olcxpc... 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: cephadm 2024-09-21T17:28:39.043549+0000 mgr.smithi050.baqqjh (mgr.14203) 342 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi170.olcxpc from smithi170 -- ports [2049, 9049] 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: cephadm 2024-09-21T17:28:39.043549+0000 mgr.smithi050.baqqjh (mgr.14203) 342 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi170.olcxpc from smithi170 -- ports [2049, 9049] 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: cluster 2024-09-21T17:28:39.232946+0000 mgr.smithi050.baqqjh (mgr.14203) 343 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: cluster 2024-09-21T17:28:39.232946+0000 mgr.smithi050.baqqjh (mgr.14203) 343 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: audit 2024-09-21T17:28:40.698011+0000 mon.smithi050 (mon.0) 939 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.olcxpc"} : dispatch 2024-09-21T17:28:40.855 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:40 smithi170 bash[24572]: audit 2024-09-21T17:28:40.698011+0000 mon.smithi050 (mon.0) 939 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.olcxpc"} : dispatch 2024-09-21T17:28:40.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: cephadm 2024-09-21T17:28:39.041084+0000 mgr.smithi050.baqqjh (mgr.14203) 340 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi050.rdmerl 2024-09-21T17:28:40.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: cephadm 2024-09-21T17:28:39.041084+0000 mgr.smithi050.baqqjh (mgr.14203) 340 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi050.rdmerl 2024-09-21T17:28:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: cephadm 2024-09-21T17:28:39.043368+0000 mgr.smithi050.baqqjh (mgr.14203) 341 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi170.olcxpc... 2024-09-21T17:28:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: cephadm 2024-09-21T17:28:39.043368+0000 mgr.smithi050.baqqjh (mgr.14203) 341 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi170.olcxpc... 2024-09-21T17:28:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: cephadm 2024-09-21T17:28:39.043549+0000 mgr.smithi050.baqqjh (mgr.14203) 342 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi170.olcxpc from smithi170 -- ports [2049, 9049] 2024-09-21T17:28:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: cephadm 2024-09-21T17:28:39.043549+0000 mgr.smithi050.baqqjh (mgr.14203) 342 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi170.olcxpc from smithi170 -- ports [2049, 9049] 2024-09-21T17:28:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: cluster 2024-09-21T17:28:39.232946+0000 mgr.smithi050.baqqjh (mgr.14203) 343 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: cluster 2024-09-21T17:28:39.232946+0000 mgr.smithi050.baqqjh (mgr.14203) 343 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: audit 2024-09-21T17:28:40.698011+0000 mon.smithi050 (mon.0) 939 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.olcxpc"} : dispatch 2024-09-21T17:28:40.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:40 smithi050 bash[19920]: audit 2024-09-21T17:28:40.698011+0000 mon.smithi050 (mon.0) 939 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.olcxpc"} : dispatch 2024-09-21T17:28:41.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:41 smithi050 bash[19920]: cephadm 2024-09-21T17:28:40.697358+0000 mgr.smithi050.baqqjh (mgr.14203) 344 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi170.olcxpc 2024-09-21T17:28:41.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:41 smithi050 bash[19920]: cephadm 2024-09-21T17:28:40.697358+0000 mgr.smithi050.baqqjh (mgr.14203) 344 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi170.olcxpc 2024-09-21T17:28:41.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:41 smithi050 bash[19920]: cephadm 2024-09-21T17:28:40.699463+0000 mgr.smithi050.baqqjh (mgr.14203) 345 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi170.hokigl... 2024-09-21T17:28:41.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:41 smithi050 bash[19920]: cephadm 2024-09-21T17:28:40.699463+0000 mgr.smithi050.baqqjh (mgr.14203) 345 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi170.hokigl... 2024-09-21T17:28:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:41 smithi050 bash[19920]: cephadm 2024-09-21T17:28:40.700028+0000 mgr.smithi050.baqqjh (mgr.14203) 346 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi170.hokigl from smithi170 -- ports [] 2024-09-21T17:28:41.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:41 smithi050 bash[19920]: cephadm 2024-09-21T17:28:40.700028+0000 mgr.smithi050.baqqjh (mgr.14203) 346 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi170.hokigl from smithi170 -- ports [] 2024-09-21T17:28:42.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:41 smithi170 bash[24572]: cephadm 2024-09-21T17:28:40.697358+0000 mgr.smithi050.baqqjh (mgr.14203) 344 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi170.olcxpc 2024-09-21T17:28:42.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:41 smithi170 bash[24572]: cephadm 2024-09-21T17:28:40.697358+0000 mgr.smithi050.baqqjh (mgr.14203) 344 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi170.olcxpc 2024-09-21T17:28:42.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:41 smithi170 bash[24572]: cephadm 2024-09-21T17:28:40.699463+0000 mgr.smithi050.baqqjh (mgr.14203) 345 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi170.hokigl... 2024-09-21T17:28:42.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:41 smithi170 bash[24572]: cephadm 2024-09-21T17:28:40.699463+0000 mgr.smithi050.baqqjh (mgr.14203) 345 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi170.hokigl... 2024-09-21T17:28:42.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:41 smithi170 bash[24572]: cephadm 2024-09-21T17:28:40.700028+0000 mgr.smithi050.baqqjh (mgr.14203) 346 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi170.hokigl from smithi170 -- ports [] 2024-09-21T17:28:42.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:41 smithi170 bash[24572]: cephadm 2024-09-21T17:28:40.700028+0000 mgr.smithi050.baqqjh (mgr.14203) 346 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi170.hokigl from smithi170 -- ports [] 2024-09-21T17:28:42.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:42 smithi170 bash[24572]: cluster 2024-09-21T17:28:41.234755+0000 mgr.smithi050.baqqjh (mgr.14203) 347 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:42.854 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:42 smithi170 bash[24572]: cluster 2024-09-21T17:28:41.234755+0000 mgr.smithi050.baqqjh (mgr.14203) 347 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:42.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:42 smithi050 bash[19920]: cluster 2024-09-21T17:28:41.234755+0000 mgr.smithi050.baqqjh (mgr.14203) 347 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:42.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:42 smithi050 bash[19920]: cluster 2024-09-21T17:28:41.234755+0000 mgr.smithi050.baqqjh (mgr.14203) 347 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:43.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:43 smithi170 systemd[1]: /etc/systemd/system/ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@.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-21T17:28:43.612 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:28:43.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:43 smithi050 bash[19920]: audit 2024-09-21T17:28:43.509142+0000 mon.smithi050 (mon.0) 940 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.hokigl"} : dispatch 2024-09-21T17:28:43.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:43 smithi050 bash[19920]: audit 2024-09-21T17:28:43.509142+0000 mon.smithi050 (mon.0) 940 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.hokigl"} : dispatch 2024-09-21T17:28:44.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:43 smithi170 bash[24572]: audit 2024-09-21T17:28:43.509142+0000 mon.smithi050 (mon.0) 940 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.hokigl"} : dispatch 2024-09-21T17:28:44.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:43 smithi170 bash[24572]: audit 2024-09-21T17:28:43.509142+0000 mon.smithi050 (mon.0) 940 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi170.hokigl"} : dispatch 2024-09-21T17:28:44.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: cluster 2024-09-21T17:28:43.235625+0000 mgr.smithi050.baqqjh (mgr.14203) 348 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:44.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: cluster 2024-09-21T17:28:43.235625+0000 mgr.smithi050.baqqjh (mgr.14203) 348 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:44.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: cephadm 2024-09-21T17:28:43.508517+0000 mgr.smithi050.baqqjh (mgr.14203) 349 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi170.hokigl 2024-09-21T17:28:44.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: cephadm 2024-09-21T17:28:43.508517+0000 mgr.smithi050.baqqjh (mgr.14203) 349 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi170.hokigl 2024-09-21T17:28:44.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.044772+0000 mon.smithi050 (mon.0) 941 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.044772+0000 mon.smithi050 (mon.0) 941 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.048247+0000 mon.smithi050 (mon.0) 942 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.048247+0000 mon.smithi050 (mon.0) 942 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.052242+0000 mon.smithi050 (mon.0) 943 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.052242+0000 mon.smithi050 (mon.0) 943 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.056743+0000 mon.smithi050 (mon.0) 944 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.056743+0000 mon.smithi050 (mon.0) 944 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.057149+0000 mon.smithi050 (mon.0) 945 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.057149+0000 mon.smithi050 (mon.0) 945 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.061184+0000 mon.smithi050 (mon.0) 946 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-21T17:28:44.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.061184+0000 mon.smithi050 (mon.0) 946 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-21T17:28:44.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.062298+0000 mon.smithi050 (mon.0) 947 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:44.983 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:44 smithi050 bash[19920]: audit 2024-09-21T17:28:44.062298+0000 mon.smithi050 (mon.0) 947 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:45.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: cluster 2024-09-21T17:28:43.235625+0000 mgr.smithi050.baqqjh (mgr.14203) 348 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: cluster 2024-09-21T17:28:43.235625+0000 mgr.smithi050.baqqjh (mgr.14203) 348 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: cephadm 2024-09-21T17:28:43.508517+0000 mgr.smithi050.baqqjh (mgr.14203) 349 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi170.hokigl 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: cephadm 2024-09-21T17:28:43.508517+0000 mgr.smithi050.baqqjh (mgr.14203) 349 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi170.hokigl 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.044772+0000 mon.smithi050 (mon.0) 941 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.044772+0000 mon.smithi050 (mon.0) 941 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.048247+0000 mon.smithi050 (mon.0) 942 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.048247+0000 mon.smithi050 (mon.0) 942 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.052242+0000 mon.smithi050 (mon.0) 943 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.052242+0000 mon.smithi050 (mon.0) 943 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.056743+0000 mon.smithi050 (mon.0) 944 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.056743+0000 mon.smithi050 (mon.0) 944 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.057149+0000 mon.smithi050 (mon.0) 945 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.057149+0000 mon.smithi050 (mon.0) 945 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-21T17:28:45.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.061184+0000 mon.smithi050 (mon.0) 946 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-21T17:28:45.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.061184+0000 mon.smithi050 (mon.0) 946 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-21T17:28:45.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.062298+0000 mon.smithi050 (mon.0) 947 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:45.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:44 smithi170 bash[24572]: audit 2024-09-21T17:28:44.062298+0000 mon.smithi050 (mon.0) 947 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:45.188 INFO:teuthology.orchestra.run.smithi050.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:alertmanager ?:9093,9094 1/1 23s ago 9m count:1 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-exporter ?:9926 2/2 23s ago 9m * 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:crash 2/2 23s ago 9m * 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:grafana ?:3000 1/1 23s ago 9m count:1 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:mgr 2/2 23s ago 9m count:2 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:mon 2/2 23s ago 7m smithi050:172.21.15.50=smithi050;smithi170:172.21.15.170=smithi170;count:2 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:node-exporter ?:9100 2/2 23s ago 9m * 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:osd.all-available-devices 8 23s ago 6m * 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:prometheus ?:9095 1/1 23s ago 9m count:1 2024-09-21T17:28:45.189 INFO:teuthology.orchestra.run.smithi050.stdout:rgw.foorgw ?:8800 2/2 23s ago 115s count:2 2024-09-21T17:28:45.931 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch host ls' 2024-09-21T17:28:46.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:45 smithi170 bash[24572]: cephadm 2024-09-21T17:28:43.978393+0000 mgr.smithi050.baqqjh (mgr.14203) 350 : cephadm [INF] Purge service nfs.foo 2024-09-21T17:28:46.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:45 smithi170 bash[24572]: cephadm 2024-09-21T17:28:43.978393+0000 mgr.smithi050.baqqjh (mgr.14203) 350 : cephadm [INF] Purge service nfs.foo 2024-09-21T17:28:46.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:45 smithi170 bash[24572]: cephadm 2024-09-21T17:28:43.978470+0000 mgr.smithi050.baqqjh (mgr.14203) 351 : cephadm [INF] Removing grace file for nfs.foo 2024-09-21T17:28:46.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:45 smithi170 bash[24572]: cephadm 2024-09-21T17:28:43.978470+0000 mgr.smithi050.baqqjh (mgr.14203) 351 : cephadm [INF] Removing grace file for nfs.foo 2024-09-21T17:28:46.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:45 smithi170 bash[24572]: cephadm 2024-09-21T17:28:44.048858+0000 mgr.smithi050.baqqjh (mgr.14203) 352 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-21T17:28:46.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:45 smithi170 bash[24572]: cephadm 2024-09-21T17:28:44.048858+0000 mgr.smithi050.baqqjh (mgr.14203) 352 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-21T17:28:46.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:45 smithi170 bash[24572]: audit 2024-09-21T17:28:45.584489+0000 mon.smithi050 (mon.0) 948 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:46.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:45 smithi170 bash[24572]: audit 2024-09-21T17:28:45.584489+0000 mon.smithi050 (mon.0) 948 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:46.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:45 smithi050 bash[19920]: cephadm 2024-09-21T17:28:43.978393+0000 mgr.smithi050.baqqjh (mgr.14203) 350 : cephadm [INF] Purge service nfs.foo 2024-09-21T17:28:46.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:45 smithi050 bash[19920]: cephadm 2024-09-21T17:28:43.978393+0000 mgr.smithi050.baqqjh (mgr.14203) 350 : cephadm [INF] Purge service nfs.foo 2024-09-21T17:28:46.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:45 smithi050 bash[19920]: cephadm 2024-09-21T17:28:43.978470+0000 mgr.smithi050.baqqjh (mgr.14203) 351 : cephadm [INF] Removing grace file for nfs.foo 2024-09-21T17:28:46.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:45 smithi050 bash[19920]: cephadm 2024-09-21T17:28:43.978470+0000 mgr.smithi050.baqqjh (mgr.14203) 351 : cephadm [INF] Removing grace file for nfs.foo 2024-09-21T17:28:46.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:45 smithi050 bash[19920]: cephadm 2024-09-21T17:28:44.048858+0000 mgr.smithi050.baqqjh (mgr.14203) 352 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-21T17:28:46.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:45 smithi050 bash[19920]: cephadm 2024-09-21T17:28:44.048858+0000 mgr.smithi050.baqqjh (mgr.14203) 352 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-21T17:28:46.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:45 smithi050 bash[19920]: audit 2024-09-21T17:28:45.584489+0000 mon.smithi050 (mon.0) 948 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:46.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:45 smithi050 bash[19920]: audit 2024-09-21T17:28:45.584489+0000 mon.smithi050 (mon.0) 948 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:28:47.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:46 smithi170 bash[24572]: audit 2024-09-21T17:28:45.180148+0000 mgr.smithi050.baqqjh (mgr.14203) 353 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:47.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:46 smithi170 bash[24572]: audit 2024-09-21T17:28:45.180148+0000 mgr.smithi050.baqqjh (mgr.14203) 353 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:47.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:46 smithi170 bash[24572]: cluster 2024-09-21T17:28:45.236647+0000 mgr.smithi050.baqqjh (mgr.14203) 354 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:47.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:46 smithi170 bash[24572]: cluster 2024-09-21T17:28:45.236647+0000 mgr.smithi050.baqqjh (mgr.14203) 354 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:47.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:46 smithi050 bash[19920]: audit 2024-09-21T17:28:45.180148+0000 mgr.smithi050.baqqjh (mgr.14203) 353 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:47.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:46 smithi050 bash[19920]: audit 2024-09-21T17:28:45.180148+0000 mgr.smithi050.baqqjh (mgr.14203) 353 : audit [DBG] from='client.14694 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:47.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:46 smithi050 bash[19920]: cluster 2024-09-21T17:28:45.236647+0000 mgr.smithi050.baqqjh (mgr.14203) 354 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:47.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:46 smithi050 bash[19920]: cluster 2024-09-21T17:28:45.236647+0000 mgr.smithi050.baqqjh (mgr.14203) 354 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:49.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:48 smithi170 bash[24572]: cluster 2024-09-21T17:28:47.238170+0000 mgr.smithi050.baqqjh (mgr.14203) 355 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:49.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:48 smithi170 bash[24572]: cluster 2024-09-21T17:28:47.238170+0000 mgr.smithi050.baqqjh (mgr.14203) 355 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:49.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:48 smithi050 bash[19920]: cluster 2024-09-21T17:28:47.238170+0000 mgr.smithi050.baqqjh (mgr.14203) 355 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:49.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:48 smithi050 bash[19920]: cluster 2024-09-21T17:28:47.238170+0000 mgr.smithi050.baqqjh (mgr.14203) 355 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:50.483 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:28:50.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: cluster 2024-09-21T17:28:49.239386+0000 mgr.smithi050.baqqjh (mgr.14203) 356 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:50.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: cluster 2024-09-21T17:28:49.239386+0000 mgr.smithi050.baqqjh (mgr.14203) 356 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:50.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: audit 2024-09-21T17:28:49.613925+0000 mon.smithi050 (mon.0) 949 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:50.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: audit 2024-09-21T17:28:49.613925+0000 mon.smithi050 (mon.0) 949 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:50.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: audit 2024-09-21T17:28:49.618877+0000 mon.smithi050 (mon.0) 950 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:50.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: audit 2024-09-21T17:28:49.618877+0000 mon.smithi050 (mon.0) 950 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:50.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: audit 2024-09-21T17:28:50.387301+0000 mon.smithi050 (mon.0) 951 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:50.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: audit 2024-09-21T17:28:50.387301+0000 mon.smithi050 (mon.0) 951 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:50.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: audit 2024-09-21T17:28:50.392583+0000 mon.smithi050 (mon.0) 952 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:50.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:50 smithi050 bash[19920]: audit 2024-09-21T17:28:50.392583+0000 mon.smithi050 (mon.0) 952 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: cluster 2024-09-21T17:28:49.239386+0000 mgr.smithi050.baqqjh (mgr.14203) 356 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:51.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: cluster 2024-09-21T17:28:49.239386+0000 mgr.smithi050.baqqjh (mgr.14203) 356 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:51.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: audit 2024-09-21T17:28:49.613925+0000 mon.smithi050 (mon.0) 949 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: audit 2024-09-21T17:28:49.613925+0000 mon.smithi050 (mon.0) 949 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: audit 2024-09-21T17:28:49.618877+0000 mon.smithi050 (mon.0) 950 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: audit 2024-09-21T17:28:49.618877+0000 mon.smithi050 (mon.0) 950 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: audit 2024-09-21T17:28:50.387301+0000 mon.smithi050 (mon.0) 951 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: audit 2024-09-21T17:28:50.387301+0000 mon.smithi050 (mon.0) 951 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: audit 2024-09-21T17:28:50.392583+0000 mon.smithi050 (mon.0) 952 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:50 smithi170 bash[24572]: audit 2024-09-21T17:28:50.392583+0000 mon.smithi050 (mon.0) 952 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:51 smithi050 bash[19920]: audit 2024-09-21T17:28:51.043723+0000 mon.smithi050 (mon.0) 953 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:28:51.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:51 smithi050 bash[19920]: audit 2024-09-21T17:28:51.043723+0000 mon.smithi050 (mon.0) 953 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:28:51.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:51 smithi050 bash[19920]: audit 2024-09-21T17:28:51.044629+0000 mon.smithi050 (mon.0) 954 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:28:51.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:51 smithi050 bash[19920]: audit 2024-09-21T17:28:51.044629+0000 mon.smithi050 (mon.0) 954 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:28:51.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:51 smithi050 bash[19920]: audit 2024-09-21T17:28:51.052299+0000 mon.smithi050 (mon.0) 955 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:51 smithi050 bash[19920]: audit 2024-09-21T17:28:51.052299+0000 mon.smithi050 (mon.0) 955 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:51.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:51 smithi050 bash[19920]: audit 2024-09-21T17:28:51.055678+0000 mon.smithi050 (mon.0) 956 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:28:51.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:51 smithi050 bash[19920]: audit 2024-09-21T17:28:51.055678+0000 mon.smithi050 (mon.0) 956 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:28:52.002 INFO:teuthology.orchestra.run.smithi050.stdout:HOST ADDR LABELS STATUS 2024-09-21T17:28:52.002 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 172.21.15.50 2024-09-21T17:28:52.002 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 172.21.15.170 2024-09-21T17:28:52.002 INFO:teuthology.orchestra.run.smithi050.stdout:2 hosts in cluster 2024-09-21T17:28:52.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:51 smithi170 bash[24572]: audit 2024-09-21T17:28:51.043723+0000 mon.smithi050 (mon.0) 953 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:28:52.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:51 smithi170 bash[24572]: audit 2024-09-21T17:28:51.043723+0000 mon.smithi050 (mon.0) 953 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:28:52.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:51 smithi170 bash[24572]: audit 2024-09-21T17:28:51.044629+0000 mon.smithi050 (mon.0) 954 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:28:52.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:51 smithi170 bash[24572]: audit 2024-09-21T17:28:51.044629+0000 mon.smithi050 (mon.0) 954 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:28:52.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:51 smithi170 bash[24572]: audit 2024-09-21T17:28:51.052299+0000 mon.smithi050 (mon.0) 955 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:52.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:51 smithi170 bash[24572]: audit 2024-09-21T17:28:51.052299+0000 mon.smithi050 (mon.0) 955 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:52.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:51 smithi170 bash[24572]: audit 2024-09-21T17:28:51.055678+0000 mon.smithi050 (mon.0) 956 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:28:52.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:51 smithi170 bash[24572]: audit 2024-09-21T17:28:51.055678+0000 mon.smithi050 (mon.0) 956 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:28:52.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:52 smithi050 bash[19920]: cephadm 2024-09-21T17:28:51.092806+0000 mgr.smithi050.baqqjh (mgr.14203) 357 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:28:52.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:52 smithi050 bash[19920]: cephadm 2024-09-21T17:28:51.092806+0000 mgr.smithi050.baqqjh (mgr.14203) 357 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:28:52.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:52 smithi050 bash[19920]: cluster 2024-09-21T17:28:51.241168+0000 mgr.smithi050.baqqjh (mgr.14203) 358 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:52.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:52 smithi050 bash[19920]: cluster 2024-09-21T17:28:51.241168+0000 mgr.smithi050.baqqjh (mgr.14203) 358 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:52.981 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:52 smithi050 bash[19920]: cephadm 2024-09-21T17:28:51.391963+0000 mgr.smithi050.baqqjh (mgr.14203) 359 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:28:52.982 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:52 smithi050 bash[19920]: cephadm 2024-09-21T17:28:51.391963+0000 mgr.smithi050.baqqjh (mgr.14203) 359 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:28:53.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:52 smithi170 bash[24572]: cephadm 2024-09-21T17:28:51.092806+0000 mgr.smithi050.baqqjh (mgr.14203) 357 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:28:53.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:52 smithi170 bash[24572]: cephadm 2024-09-21T17:28:51.092806+0000 mgr.smithi050.baqqjh (mgr.14203) 357 : cephadm [INF] Reconfiguring prometheus.smithi050 (dependencies changed)... 2024-09-21T17:28:53.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:52 smithi170 bash[24572]: cluster 2024-09-21T17:28:51.241168+0000 mgr.smithi050.baqqjh (mgr.14203) 358 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:53.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:52 smithi170 bash[24572]: cluster 2024-09-21T17:28:51.241168+0000 mgr.smithi050.baqqjh (mgr.14203) 358 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:53.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:52 smithi170 bash[24572]: cephadm 2024-09-21T17:28:51.391963+0000 mgr.smithi050.baqqjh (mgr.14203) 359 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:28:53.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:52 smithi170 bash[24572]: cephadm 2024-09-21T17:28:51.391963+0000 mgr.smithi050.baqqjh (mgr.14203) 359 : cephadm [INF] Reconfiguring daemon prometheus.smithi050 on smithi050 2024-09-21T17:28:53.307 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch device ls' 2024-09-21T17:28:53.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:53 smithi050 bash[19920]: audit 2024-09-21T17:28:52.003115+0000 mgr.smithi050.baqqjh (mgr.14203) 360 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:53.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:53 smithi050 bash[19920]: audit 2024-09-21T17:28:52.003115+0000 mgr.smithi050.baqqjh (mgr.14203) 360 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:54.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:53 smithi170 bash[24572]: audit 2024-09-21T17:28:52.003115+0000 mgr.smithi050.baqqjh (mgr.14203) 360 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:54.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:53 smithi170 bash[24572]: audit 2024-09-21T17:28:52.003115+0000 mgr.smithi050.baqqjh (mgr.14203) 360 : audit [DBG] from='client.14698 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:28:54.700 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:54 smithi050 bash[19920]: cluster 2024-09-21T17:28:53.241990+0000 mgr.smithi050.baqqjh (mgr.14203) 361 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:54.701 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:54 smithi050 bash[19920]: cluster 2024-09-21T17:28:53.241990+0000 mgr.smithi050.baqqjh (mgr.14203) 361 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:55.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:54 smithi170 bash[24572]: cluster 2024-09-21T17:28:53.241990+0000 mgr.smithi050.baqqjh (mgr.14203) 361 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:55.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:54 smithi170 bash[24572]: cluster 2024-09-21T17:28:53.241990+0000 mgr.smithi050.baqqjh (mgr.14203) 361 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:56.863 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:56 smithi050 bash[19920]: cluster 2024-09-21T17:28:55.243634+0000 mgr.smithi050.baqqjh (mgr.14203) 362 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:56.863 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:56 smithi050 bash[19920]: cluster 2024-09-21T17:28:55.243634+0000 mgr.smithi050.baqqjh (mgr.14203) 362 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:57.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:56 smithi170 bash[24572]: cluster 2024-09-21T17:28:55.243634+0000 mgr.smithi050.baqqjh (mgr.14203) 362 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:57.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:56 smithi170 bash[24572]: cluster 2024-09-21T17:28:55.243634+0000 mgr.smithi050.baqqjh (mgr.14203) 362 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:58.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:56.807841+0000 mon.smithi050 (mon.0) 957 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:58.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:56.807841+0000 mon.smithi050 (mon.0) 957 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:58.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:56.812956+0000 mon.smithi050 (mon.0) 958 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:56.812956+0000 mon.smithi050 (mon.0) 958 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:56.818433+0000 mon.smithi050 (mon.0) 959 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:56.818433+0000 mon.smithi050 (mon.0) 959 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:56.818957+0000 mgr.smithi050.baqqjh (mgr.14203) 363 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:56.818957+0000 mgr.smithi050.baqqjh (mgr.14203) 363 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:57.220374+0000 mon.smithi050 (mon.0) 960 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: audit 2024-09-21T17:28:57.220374+0000 mon.smithi050 (mon.0) 960 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: cluster 2024-09-21T17:28:57.244734+0000 mgr.smithi050.baqqjh (mgr.14203) 364 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:58.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:28:57 smithi170 bash[24572]: cluster 2024-09-21T17:28:57.244734+0000 mgr.smithi050.baqqjh (mgr.14203) 364 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:58.124 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:28:58.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:56.807841+0000 mon.smithi050 (mon.0) 957 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:58.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:56.807841+0000 mon.smithi050 (mon.0) 957 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:58.235 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:56.812956+0000 mon.smithi050 (mon.0) 958 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:56.812956+0000 mon.smithi050 (mon.0) 958 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:56.818433+0000 mon.smithi050 (mon.0) 959 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:56.818433+0000 mon.smithi050 (mon.0) 959 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:56.818957+0000 mgr.smithi050.baqqjh (mgr.14203) 363 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:56.818957+0000 mgr.smithi050.baqqjh (mgr.14203) 363 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:57.220374+0000 mon.smithi050 (mon.0) 960 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: audit 2024-09-21T17:28:57.220374+0000 mon.smithi050 (mon.0) 960 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: cluster 2024-09-21T17:28:57.244734+0000 mgr.smithi050.baqqjh (mgr.14203) 364 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:58.236 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:28:57 smithi050 bash[19920]: cluster 2024-09-21T17:28:57.244734+0000 mgr.smithi050.baqqjh (mgr.14203) 364 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:28:59.579 INFO:teuthology.orchestra.run.smithi050.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-21T17:28:59.579 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7513001F480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T17:28:59.579 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme1n1 ssd Linux_22529d1c3b616a045ef3 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:28:59.580 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme2n1 ssd Linux_16d4952100dbf8308b2e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:28:59.580 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme3n1 ssd Linux_90eaf7d672274c059129 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:28:59.580 INFO:teuthology.orchestra.run.smithi050.stdout:smithi050 /dev/nvme4n1 ssd Linux_394de47363a49daa9827 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:28:59.580 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB7476002R480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T17:28:59.580 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme1n1 ssd Linux_b38d836397281e448f07 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:28:59.580 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme2n1 ssd Linux_58cf1920b46c49c0939e 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:28:59.580 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme3n1 ssd Linux_378ab28caf8cdbeb7c75 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:28:59.580 INFO:teuthology.orchestra.run.smithi050.stdout:smithi170 /dev/nvme4n1 ssd Linux_f05538e2fd38847ccb68 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T17:29:00.310 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0ecbb435437226bc091a0c2d4549ba25bf724efe shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-21T17:29:00.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:00 smithi170 bash[24572]: cluster 2024-09-21T17:28:59.245447+0000 mgr.smithi050.baqqjh (mgr.14203) 365 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:00.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:00 smithi170 bash[24572]: cluster 2024-09-21T17:28:59.245447+0000 mgr.smithi050.baqqjh (mgr.14203) 365 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:00.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:00 smithi170 bash[24572]: audit 2024-09-21T17:28:59.573725+0000 mgr.smithi050.baqqjh (mgr.14203) 366 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:29:00.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:00 smithi170 bash[24572]: audit 2024-09-21T17:28:59.573725+0000 mgr.smithi050.baqqjh (mgr.14203) 366 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:29:00.730 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:00 smithi050 bash[19920]: cluster 2024-09-21T17:28:59.245447+0000 mgr.smithi050.baqqjh (mgr.14203) 365 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:00.730 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:00 smithi050 bash[19920]: cluster 2024-09-21T17:28:59.245447+0000 mgr.smithi050.baqqjh (mgr.14203) 365 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:00.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:00 smithi050 bash[19920]: audit 2024-09-21T17:28:59.573725+0000 mgr.smithi050.baqqjh (mgr.14203) 366 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:29:00.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:00 smithi050 bash[19920]: audit 2024-09-21T17:28:59.573725+0000 mgr.smithi050.baqqjh (mgr.14203) 366 : audit [DBG] from='client.14702 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:29:01.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:01 smithi170 bash[24572]: audit 2024-09-21T17:29:00.584292+0000 mon.smithi050 (mon.0) 961 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:29:01.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:01 smithi170 bash[24572]: audit 2024-09-21T17:29:00.584292+0000 mon.smithi050 (mon.0) 961 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:29:01.730 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:01 smithi050 bash[19920]: audit 2024-09-21T17:29:00.584292+0000 mon.smithi050 (mon.0) 961 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:29:01.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:01 smithi050 bash[19920]: audit 2024-09-21T17:29:00.584292+0000 mon.smithi050 (mon.0) 961 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T17:29:02.603 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:02 smithi170 bash[24572]: cluster 2024-09-21T17:29:01.247274+0000 mgr.smithi050.baqqjh (mgr.14203) 367 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:02.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:02 smithi170 bash[24572]: cluster 2024-09-21T17:29:01.247274+0000 mgr.smithi050.baqqjh (mgr.14203) 367 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:02.730 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:02 smithi050 bash[19920]: cluster 2024-09-21T17:29:01.247274+0000 mgr.smithi050.baqqjh (mgr.14203) 367 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:02.731 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:02 smithi050 bash[19920]: cluster 2024-09-21T17:29:01.247274+0000 mgr.smithi050.baqqjh (mgr.14203) 367 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:04.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:02.812623+0000 mon.smithi050 (mon.0) 962 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.104 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:02.812623+0000 mon.smithi050 (mon.0) 962 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:02.821272+0000 mon.smithi050 (mon.0) 963 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:02.821272+0000 mon.smithi050 (mon.0) 963 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: cluster 2024-09-21T17:29:03.247739+0000 mgr.smithi050.baqqjh (mgr.14203) 368 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: cluster 2024-09-21T17:29:03.247739+0000 mgr.smithi050.baqqjh (mgr.14203) 368 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.705100+0000 mon.smithi050 (mon.0) 964 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.705100+0000 mon.smithi050 (mon.0) 964 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.712243+0000 mon.smithi050 (mon.0) 965 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.712243+0000 mon.smithi050 (mon.0) 965 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.713170+0000 mon.smithi050 (mon.0) 966 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.713170+0000 mon.smithi050 (mon.0) 966 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.713802+0000 mon.smithi050 (mon.0) 967 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.713802+0000 mon.smithi050 (mon.0) 967 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.720107+0000 mon.smithi050 (mon.0) 968 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.105 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.720107+0000 mon.smithi050 (mon.0) 968 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.722567+0000 mon.smithi050 (mon.0) 969 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:29:04.106 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:03 smithi170 bash[24572]: audit 2024-09-21T17:29:03.722567+0000 mon.smithi050 (mon.0) 969 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:29:04.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:02.812623+0000 mon.smithi050 (mon.0) 962 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:02.812623+0000 mon.smithi050 (mon.0) 962 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.231 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:02.821272+0000 mon.smithi050 (mon.0) 963 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:02.821272+0000 mon.smithi050 (mon.0) 963 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: cluster 2024-09-21T17:29:03.247739+0000 mgr.smithi050.baqqjh (mgr.14203) 368 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: cluster 2024-09-21T17:29:03.247739+0000 mgr.smithi050.baqqjh (mgr.14203) 368 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.705100+0000 mon.smithi050 (mon.0) 964 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.705100+0000 mon.smithi050 (mon.0) 964 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.712243+0000 mon.smithi050 (mon.0) 965 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.712243+0000 mon.smithi050 (mon.0) 965 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.713170+0000 mon.smithi050 (mon.0) 966 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.713170+0000 mon.smithi050 (mon.0) 966 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.713802+0000 mon.smithi050 (mon.0) 967 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.713802+0000 mon.smithi050 (mon.0) 967 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.720107+0000 mon.smithi050 (mon.0) 968 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.232 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.720107+0000 mon.smithi050 (mon.0) 968 : audit [INF] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' 2024-09-21T17:29:04.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.722567+0000 mon.smithi050 (mon.0) 969 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:29:04.233 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:03 smithi050 bash[19920]: audit 2024-09-21T17:29:03.722567+0000 mon.smithi050 (mon.0) 969 : audit [DBG] from='mgr.14203 172.21.15.50:0/228323194' entity='mgr.smithi050.baqqjh' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T17:29:04.858 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/mon.smithi050/config 2024-09-21T17:29:06.480 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:06 smithi050 bash[19920]: cluster 2024-09-21T17:29:05.249279+0000 mgr.smithi050.baqqjh (mgr.14203) 369 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:06.481 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:06 smithi050 bash[19920]: cluster 2024-09-21T17:29:05.249279+0000 mgr.smithi050.baqqjh (mgr.14203) 369 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:06.490 INFO:teuthology.orchestra.run.smithi050.stdout:osd.all-available-devices 8 3s ago 6m * 2024-09-21T17:29:06.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:06 smithi170 bash[24572]: cluster 2024-09-21T17:29:05.249279+0000 mgr.smithi050.baqqjh (mgr.14203) 369 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:06.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:06 smithi170 bash[24572]: cluster 2024-09-21T17:29:05.249279+0000 mgr.smithi050.baqqjh (mgr.14203) 369 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 259 MiB used, 715 GiB / 715 GiB avail 2024-09-21T17:29:07.165 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-21T17:29:07.176 INFO:tasks.vip:Removing 10.0.15.50 (and any VIPs) on smithi050.front.sepia.ceph.com iface ens1f0... 2024-09-21T17:29:07.176 DEBUG:teuthology.orchestra.run.smithi050:> sudo ip addr del 10.0.15.50/16 dev ens1f0 2024-09-21T17:29:07.192 DEBUG:teuthology.orchestra.run.smithi050:> sudo ip addr del 10.0.31.50/16 dev ens1f0 2024-09-21T17:29:07.249 INFO:teuthology.orchestra.run.smithi050.stderr:RTNETLINK answers: Cannot assign requested address 2024-09-21T17:29:07.250 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-21T17:29:07.250 INFO:tasks.vip:Removing 10.0.15.170 (and any VIPs) on smithi170.front.sepia.ceph.com iface enp3s0f1... 2024-09-21T17:29:07.251 DEBUG:teuthology.orchestra.run.smithi170:> sudo ip addr del 10.0.15.170/16 dev enp3s0f1 2024-09-21T17:29:07.267 DEBUG:teuthology.orchestra.run.smithi170:> sudo ip addr del 10.0.31.50/16 dev enp3s0f1 2024-09-21T17:29:07.325 INFO:teuthology.orchestra.run.smithi170.stderr:RTNETLINK answers: Cannot assign requested address 2024-09-21T17:29:07.326 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-21T17:29:07.326 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-21T17:29:07.337 INFO:tasks.cephadm:Teardown begin 2024-09-21T17:29:07.338 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-21T17:29:07.352 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-21T17:29:07.380 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-21T17:29:07.381 DEBUG:teuthology.orchestra.run.smithi050:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-21T17:29:07.401 DEBUG:teuthology.orchestra.run.smithi170:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-21T17:29:07.429 INFO:tasks.cephadm:Stopping all daemons... 2024-09-21T17:29:07.429 INFO:tasks.cephadm.mon.smithi050:Stopping mon.smithi050... 2024-09-21T17:29:07.430 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi050 2024-09-21T17:29:07.454 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:07 smithi050 bash[19920]: audit 2024-09-21T17:29:06.462782+0000 mgr.smithi050.baqqjh (mgr.14203) 370 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:29:07.454 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:07 smithi050 bash[19920]: audit 2024-09-21T17:29:06.462782+0000 mgr.smithi050.baqqjh (mgr.14203) 370 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:29:07.600 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:07 smithi050 systemd[1]: Stopping Ceph mon.smithi050 for 58e4c4c0-783d-11ef-baf6-efdc52797490... 2024-09-21T17:29:07.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:07 smithi170 bash[24572]: audit 2024-09-21T17:29:06.462782+0000 mgr.smithi050.baqqjh (mgr.14203) 370 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:29:07.604 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:07 smithi170 bash[24572]: audit 2024-09-21T17:29:06.462782+0000 mgr.smithi050.baqqjh (mgr.14203) 370 : audit [DBG] from='client.14706 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T17:29:07.730 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:07 smithi050 bash[19920]: debug 2024-09-21T17:29:07.599+0000 7fb8be5c9640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi050 -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-21T17:29:07.730 INFO:journalctl@ceph.mon.smithi050.smithi050.stdout:Sep 21 17:29:07 smithi050 bash[19920]: debug 2024-09-21T17:29:07.599+0000 7fb8be5c9640 -1 mon.smithi050@0(leader) e2 *** Got Signal Terminated *** 2024-09-21T17:29:08.481 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi050.service' 2024-09-21T17:29:08.566 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-21T17:29:08.566 INFO:tasks.cephadm.mon.smithi050:Stopped mon.smithi050 2024-09-21T17:29:08.566 INFO:tasks.cephadm.mon.smithi170:Stopping mon.smithi170... 2024-09-21T17:29:08.566 DEBUG:teuthology.orchestra.run.smithi170:> sudo systemctl stop ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi170 2024-09-21T17:29:08.768 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:08 smithi170 systemd[1]: Stopping Ceph mon.smithi170 for 58e4c4c0-783d-11ef-baf6-efdc52797490... 2024-09-21T17:29:08.838 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:08 smithi170 bash[24572]: debug 2024-09-21T17:29:08.768+0000 7fe214dca640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi170 -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-21T17:29:08.838 INFO:journalctl@ceph.mon.smithi170.smithi170.stdout:Sep 21 17:29:08 smithi170 bash[24572]: debug 2024-09-21T17:29:08.768+0000 7fe214dca640 -1 mon.smithi170@1(peon) e2 *** Got Signal Terminated *** 2024-09-21T17:29:09.607 DEBUG:teuthology.orchestra.run.smithi170:> sudo pkill -f 'journalctl -f -n 0 -u ceph-58e4c4c0-783d-11ef-baf6-efdc52797490@mon.smithi170.service' 2024-09-21T17:29:09.650 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-21T17:29:09.650 INFO:tasks.cephadm.mon.smithi170:Stopped mon.smithi170 2024-09-21T17:29:09.650 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 --force --keep-logs 2024-09-21T17:29:09.838 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:30:06.675 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 --force --keep-logs 2024-09-21T17:30:06.858 INFO:teuthology.orchestra.run.smithi170.stdout:Deleting cluster with fsid: 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:31:02.769 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-21T17:31:02.784 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-21T17:31:02.796 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-21T17:31:02.797 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/crash to /home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046/remote/smithi050/crash 2024-09-21T17:31:02.798 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/crash -- . 2024-09-21T17:31:02.839 INFO:teuthology.orchestra.run.smithi050.stderr:tar: /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/crash: Cannot open: No such file or directory 2024-09-21T17:31:02.839 INFO:teuthology.orchestra.run.smithi050.stderr:tar: Error is not recoverable: exiting now 2024-09-21T17:31:02.841 DEBUG:teuthology.misc:Transferring archived files from smithi170:/var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/crash to /home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046/remote/smithi170/crash 2024-09-21T17:31:02.842 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/crash -- . 2024-09-21T17:31:02.852 INFO:teuthology.orchestra.run.smithi170.stderr:tar: /var/lib/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/crash: Cannot open: No such file or directory 2024-09-21T17:31:02.852 INFO:teuthology.orchestra.run.smithi170.stderr:tar: Error is not recoverable: exiting now 2024-09-21T17:31:02.853 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-21T17:31:02.853 DEBUG:teuthology.orchestra.run.smithi050:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/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-21T17:31:02.897 INFO:tasks.cephadm:Compressing logs... 2024-09-21T17:31:02.898 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:31:02.940 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:31:02.950 INFO:teuthology.orchestra.run.smithi050.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-21T17:31:02.954 INFO:teuthology.orchestra.run.smithi170.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-21T17:31:02.960 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.7.log 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ops-log-ceph-client.rgw.foorgw.smithi050.bgrjhn.log 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mon.smithi050.log 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ops-log-ceph-client.rgw.foorgw.smithi050.bgrjhn.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi050.log 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr: 76.7% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ops-log-ceph-client.rgw.foorgw.smithi050.bgrjhn.log.gz 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mon.smithi050.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.cephadm.log 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi050.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.3.log 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr: 94.0% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi050.log.gz 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.cephadm.log: -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.5.log 2024-09-21T17:31:02.966 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.1.log 2024-09-21T17:31:02.967 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.5.log: 84.6% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.cephadm.log.gz 2024-09-21T17:31:02.967 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.log 2024-09-21T17:31:02.967 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-volume.log 2024-09-21T17:31:02.967 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.1.log: /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.audit.log 2024-09-21T17:31:02.968 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-21T17:31:02.968 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi170.bpqqqq.log 2024-09-21T17:31:02.968 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.0.log 2024-09-21T17:31:02.968 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi170.bpqqqq.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mgr.smithi170.lejafv.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr: 65.4% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi170.bpqqqq.log.gz 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.2.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mgr.smithi170.lejafv.log: /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.6.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi170.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.cephadm.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi170.log: gzip 30.5% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi170.log.gz 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr: -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mon.smithi170.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.cephadm.log: 89.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr: 83.7% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.cephadm.log.gz 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-volume.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mon.smithi170.log: /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.audit.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.4.log 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr: 87.4%/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.audit.log: -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.log.gz 2024-09-21T17:31:02.969 INFO:teuthology.orchestra.run.smithi170.stderr: 91.7% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mgr.smithi170.lejafv.log.gz 2024-09-21T17:31:02.970 INFO:teuthology.orchestra.run.smithi170.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.4.log: 91.2% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.audit.log.gz 2024-09-21T17:31:02.971 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-volume.log: 87.6% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.log.gz 2024-09-21T17:31:02.971 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi050.bgrjhn.log 2024-09-21T17:31:02.971 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.audit.log: 91.0% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph.audit.log.gz 2024-09-21T17:31:02.972 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mgr.smithi050.baqqjh.log 2024-09-21T17:31:02.972 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi050.bgrjhn.log: 70.9% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi050.bgrjhn.log.gz 2024-09-21T17:31:02.978 INFO:teuthology.orchestra.run.smithi170.stderr: 90.9% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-volume.log.gz 2024-09-21T17:31:02.981 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mgr.smithi050.baqqjh.log: 91.3% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-volume.log.gz 2024-09-21T17:31:02.992 INFO:teuthology.orchestra.run.smithi050.stderr: 90.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-21T17:31:03.113 INFO:teuthology.orchestra.run.smithi170.stderr: 92.9% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mon.smithi170.log.gz 2024-09-21T17:31:03.137 INFO:teuthology.orchestra.run.smithi050.stderr: 89.4% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mgr.smithi050.baqqjh.log.gz 2024-09-21T17:31:03.268 INFO:teuthology.orchestra.run.smithi170.stderr: 93.4% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.2.log.gz 2024-09-21T17:31:03.271 INFO:teuthology.orchestra.run.smithi170.stderr: 93.6% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.4.log.gz 2024-09-21T17:31:03.277 INFO:teuthology.orchestra.run.smithi050.stderr: 93.5% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.5.log.gz 2024-09-21T17:31:03.286 INFO:teuthology.orchestra.run.smithi170.stderr: 93.4% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.6.log.gz 2024-09-21T17:31:03.297 INFO:teuthology.orchestra.run.smithi050.stderr: 93.5% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.7.log.gz 2024-09-21T17:31:03.381 INFO:teuthology.orchestra.run.smithi170.stderr: 93.6% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.0.log.gz 2024-09-21T17:31:03.382 INFO:teuthology.orchestra.run.smithi170.stderr: 2024-09-21T17:31:03.382 INFO:teuthology.orchestra.run.smithi170.stderr:real 0m0.438s 2024-09-21T17:31:03.383 INFO:teuthology.orchestra.run.smithi170.stderr:user 0m1.469s 2024-09-21T17:31:03.383 INFO:teuthology.orchestra.run.smithi170.stderr:sys 0m0.084s 2024-09-21T17:31:03.398 INFO:teuthology.orchestra.run.smithi050.stderr: 91.3% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-mon.smithi050.log.gz 2024-09-21T17:31:03.419 INFO:teuthology.orchestra.run.smithi050.stderr: 93.6% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.1.log.gz 2024-09-21T17:31:03.420 INFO:teuthology.orchestra.run.smithi050.stderr: 93.7% -- replaced with /var/log/ceph/58e4c4c0-783d-11ef-baf6-efdc52797490/ceph-osd.3.log.gz 2024-09-21T17:31:03.421 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-09-21T17:31:03.422 INFO:teuthology.orchestra.run.smithi050.stderr:real 0m0.479s 2024-09-21T17:31:03.422 INFO:teuthology.orchestra.run.smithi050.stderr:user 0m2.164s 2024-09-21T17:31:03.422 INFO:teuthology.orchestra.run.smithi050.stderr:sys 0m0.076s 2024-09-21T17:31:03.422 INFO:tasks.cephadm:Archiving logs... 2024-09-21T17:31:03.422 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046/remote/smithi050/log 2024-09-21T17:31:03.423 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-21T17:31:03.688 DEBUG:teuthology.misc:Transferring archived files from smithi170:/var/log/ceph to /home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046/remote/smithi170/log 2024-09-21T17:31:03.689 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-21T17:31:03.868 INFO:tasks.cephadm:Removing cluster... 2024-09-21T17:31:03.868 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 --force 2024-09-21T17:31:04.055 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:31:05.188 DEBUG:teuthology.orchestra.run.smithi170:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 58e4c4c0-783d-11ef-baf6-efdc52797490 --force 2024-09-21T17:31:05.371 INFO:teuthology.orchestra.run.smithi170.stdout:Deleting cluster with fsid: 58e4c4c0-783d-11ef-baf6-efdc52797490 2024-09-21T17:31:06.492 INFO:tasks.cephadm:Removing cephadm ... 2024-09-21T17:31:06.492 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-21T17:31:06.499 DEBUG:teuthology.orchestra.run.smithi170:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-21T17:31:06.504 INFO:tasks.cephadm:Teardown complete 2024-09-21T17:31:06.504 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-21T17:31:06.515 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_1... 2024-09-21T17:31:06.515 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_1 2024-09-21T17:31:06.831 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-21T17:31:06.832 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:06.833 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_2... 2024-09-21T17:31:06.833 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_2 2024-09-21T17:31:07.103 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-21T17:31:07.105 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:07.105 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_3... 2024-09-21T17:31:07.105 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_3 2024-09-21T17:31:07.375 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-21T17:31:07.377 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:07.377 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi050:/dev/vg_nvme/lv_4... 2024-09-21T17:31:07.377 DEBUG:teuthology.orchestra.run.smithi050:> sudo nvme disconnect -n lv_4 2024-09-21T17:31:07.664 INFO:teuthology.orchestra.run.smithi050.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-21T17:31:07.665 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:07.665 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-09-21T17:31:07.665 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/scratch_devs 2024-09-21T17:31:07.679 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_1... 2024-09-21T17:31:07.679 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_1 2024-09-21T17:31:07.964 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-21T17:31:07.965 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:07.966 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_2... 2024-09-21T17:31:07.966 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_2 2024-09-21T17:31:08.260 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-21T17:31:08.261 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:08.262 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_3... 2024-09-21T17:31:08.262 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_3 2024-09-21T17:31:08.540 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-21T17:31:08.542 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:08.542 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi170:/dev/vg_nvme/lv_4... 2024-09-21T17:31:08.542 DEBUG:teuthology.orchestra.run.smithi170:> sudo nvme disconnect -n lv_4 2024-09-21T17:31:08.824 INFO:teuthology.orchestra.run.smithi170.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-21T17:31:08.825 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:08.826 DEBUG:teuthology.orchestra.run.smithi170:> set -ex 2024-09-21T17:31:08.826 DEBUG:teuthology.orchestra.run.smithi170:> sudo dd of=/scratch_devs 2024-09-21T17:31:08.840 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-21T17:31:08.852 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-21T17:31:08.852 DEBUG:teuthology.orchestra.run.smithi050:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-21T17:31:08.855 DEBUG:teuthology.orchestra.run.smithi170:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-21T17:31:08.865 INFO:teuthology.orchestra.run.smithi050.stdout: remote refid st t when poll reach delay offset jitter 2024-09-21T17:31:08.865 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================== 2024-09-21T17:31:08.866 INFO:teuthology.orchestra.run.smithi050.stdout:*hv01.front.sepi 67.205.162.81 3 u 45 64 377 0.081 -0.459 2.415 2024-09-21T17:31:08.866 INFO:teuthology.orchestra.run.smithi050.stdout:+hv02.front.sepi 63.231.80.2 3 u 48 64 377 0.091 -2.546 1.779 2024-09-21T17:31:08.866 INFO:teuthology.orchestra.run.smithi050.stdout:+hv03.front.sepi 74.6.168.72 3 u 50 64 377 0.086 -0.606 2.339 2024-09-21T17:31:08.866 INFO:teuthology.orchestra.run.smithi050.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-21T17:31:08.900 INFO:teuthology.orchestra.run.smithi170.stdout: remote refid st t when poll reach delay offset jitter 2024-09-21T17:31:08.900 INFO:teuthology.orchestra.run.smithi170.stdout:============================================================================== 2024-09-21T17:31:08.900 INFO:teuthology.orchestra.run.smithi170.stdout:+hv01.front.sepi 67.205.162.81 3 u 42 64 377 0.099 +0.336 4.041 2024-09-21T17:31:08.900 INFO:teuthology.orchestra.run.smithi170.stdout:*hv02.front.sepi 63.231.80.2 3 u 46 64 377 0.098 -6.102 3.334 2024-09-21T17:31:08.900 INFO:teuthology.orchestra.run.smithi170.stdout:+hv03.front.sepi 74.6.168.72 3 u 42 64 377 0.088 -5.212 3.328 2024-09-21T17:31:08.900 INFO:teuthology.orchestra.run.smithi170.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-21T17:31:08.901 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-21T17:31:09.063 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-21T17:31:09.063 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-21T17:31:09.105 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-21T17:31:09.139 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-21T17:31:09.149 INFO:teuthology.task.internal:Duration was 1296.189204 seconds 2024-09-21T17:31:09.149 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-21T17:31:09.159 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-21T17:31:09.159 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-21T17:31:09.161 DEBUG:teuthology.orchestra.run.smithi170:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-21T17:31:09.201 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-21T17:31:09.201 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi050.front.sepia.ceph.com 2024-09-21T17:31:09.201 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:31:09.252 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi170.front.sepia.ceph.com 2024-09-21T17:31:09.252 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:31:09.263 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-21T17:31:09.263 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-21T17:31:09.296 DEBUG:teuthology.orchestra.run.smithi170:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-21T17:31:09.346 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-21T17:31:09.346 DEBUG:teuthology.orchestra.run.smithi050:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-21T17:31:09.348 DEBUG:teuthology.orchestra.run.smithi170:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-21T17:31:09.494 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-21T17:31:09.505 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-21T17:31:09.505 DEBUG:teuthology.orchestra.run.smithi050:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-21T17:31:09.518 DEBUG:teuthology.orchestra.run.smithi170:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-21T17:31:09.529 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-21T17:31:09.539 DEBUG:teuthology.orchestra.run.smithi050:> 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-21T17:31:09.564 DEBUG:teuthology.orchestra.run.smithi170:> 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-21T17:31:09.572 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = core 2024-09-21T17:31:09.581 INFO:teuthology.orchestra.run.smithi170.stdout:kernel.core_pattern = core 2024-09-21T17:31:09.608 DEBUG:teuthology.orchestra.run.smithi050:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-21T17:31:09.639 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:09.639 DEBUG:teuthology.orchestra.run.smithi170:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-21T17:31:09.655 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T17:31:09.655 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-21T17:31:09.665 INFO:teuthology.task.internal:Transferring archived files... 2024-09-21T17:31:09.666 DEBUG:teuthology.misc:Transferring archived files from smithi050:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046/remote/smithi050 2024-09-21T17:31:09.666 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-21T17:31:09.706 DEBUG:teuthology.misc:Transferring archived files from smithi170:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-09-21_16:57:11-orch:cephadm-wip-adk-testing-2024-09-21-1014-distro-default-smithi/7914046/remote/smithi170 2024-09-21T17:31:09.706 DEBUG:teuthology.orchestra.run.smithi170:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-21T17:31:09.728 INFO:teuthology.task.internal:Removing archive directory... 2024-09-21T17:31:09.728 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-21T17:31:09.748 DEBUG:teuthology.orchestra.run.smithi170:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-21T17:31:09.772 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-21T17:31:09.783 INFO:teuthology.task.internal:Not uploading archives. 2024-09-21T17:31:09.783 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-21T17:31:09.836 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-21T17:31:09.836 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-21T17:31:09.839 DEBUG:teuthology.orchestra.run.smithi170:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-21T17:31:09.842 INFO:teuthology.orchestra.run.smithi050.stdout: 658639 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 21 17:31 /home/ubuntu/cephtest 2024-09-21T17:31:09.844 INFO:teuthology.orchestra.run.smithi170.stdout: 658624 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 21 17:31 /home/ubuntu/cephtest 2024-09-21T17:31:09.845 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-21T17:31:09.871 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-21T17:31:09.904 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 1296.1892037391663 owner: scheduled_adking@teuthology success: true 2024-09-21T17:31:09.904 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-21T17:31:09.988 INFO:teuthology.run:pass